From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 32486 invoked by alias); 2 Feb 2011 12:24:23 -0000 Received: (qmail 29736 invoked by uid 22791); 2 Feb 2011 12:15:38 -0000 Received: from e28smtp04.in.ibm.com (HELO e28smtp04.in.ibm.com) (122.248.162.4) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Wed, 02 Feb 2011 12:15:38 +0000 Received: from d28relay05.in.ibm.com (d28relay05.in.ibm.com [9.184.220.62]) by e28smtp04.in.ibm.com (8.14.4/8.13.1) with ESMTP id p12CEov4009509 for ; Wed, 2 Feb 2011 17:44:50 +0530 Received: from d28av05.in.ibm.com (d28av05.in.ibm.com [9.184.220.67]) by d28relay05.in.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id p12CEj49671774 for ; Wed, 2 Feb 2011 17:44:45 +0530 Received: from d28av05.in.ibm.com (loopback [127.0.0.1]) by d28av05.in.ibm.com (8.14.4/8.13.1/NCO v10.0 AVout) with ESMTP id p12CEinp027252 for ; Wed, 2 Feb 2011 23:14:44 +1100 Received: from in.ibm.com ([9.124.35.71]) by d28av05.in.ibm.com (8.14.4/8.13.1/NCO v10.0 AVin) with ESMTP id p12CEfYA027134 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES128-SHA bits=128 verify=NO); Wed, 2 Feb 2011 23:14:42 +1100 Date: Wed, 02 Feb 2011 12:24:00 -0000 From: "K.Prasad" To: Mark Wielaard Cc: Roland McGrath , systemtap@sourceware.org, Stan Cox , dsmith@redhat.com Subject: Re: Failures with exelib.exp testcase (was Re: minutes 2010-08-19) Message-ID: <20110202121440.GB3524@in.ibm.com> Reply-To: prasad@linux.vnet.ibm.com References: <20110119120045.GA2431@in.ibm.com> <1898521794.32834.1295479440812.JavaMail.root@zmail01.collab.prod.int.phx2.redhat.com> <20110120011852.1C1041822E9@magilla.sf.frob.com> <1295521862.4118.5.camel@springer.wildebeest.org> <20110120185339.6FF851807D2@magilla.sf.frob.com> <1295651779.3049.15.camel@springer.wildebeest.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="1yeeQ81UyVL57Vl7" Content-Disposition: inline In-Reply-To: <1295651779.3049.15.camel@springer.wildebeest.org> User-Agent: Mutt/1.5.20 (2009-06-14) X-IsSubscribed: yes Mailing-List: contact systemtap-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Post: List-Help: , Sender: systemtap-owner@sourceware.org X-SW-Source: 2011-q1/txt/msg00192.txt.bz2 --1yeeQ81UyVL57Vl7 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-length: 3016 On Sat, Jan 22, 2011 at 12:16:19AM +0100, Mark Wielaard wrote: > On Thu, 2011-01-20 at 10:53 -0800, Roland McGrath wrote: > > > Aha. Thanks. I now remember we dealt with this somehow for the kernel > > > addresses: http://sourceware.org/bugzilla/show_bug.cgi?id=10206 > > > Although reading your explanation now I don't understand why that > > > actually worked, since we don't have any special code to resolve such > > > addresses in translate.cxx, we always just store the st_value as sym > > > address (possibly adjusted with dwfl_module_relocate_address). Is there > > > something special about powerpc user code symbols that make it different > > > from kernel code symbols? > > > > I'm no ppc64 expert, but I've just now looked at the symbol tables of a > > ppc64 kernel and a random ppc64 user executable. > > > > In the kernel, there is both an STT_FUNC symbol named ".foo" whose st_value > > is the actual code address, and an STT_NOTYPE symbol named "foo" whose > > st_value is the address in the .opd section (the function descriptor > > address). > > > > In the user executable, there is only one symbol for a function still left > > after the final link, an STT_FUNC symbol named "foo" whose st_value is the > > address in the .opd section. > > > > So I would surmise that what happens in systemtap in the kernel case is > > that it finds the ".foo" symbol and is happy with that, and ppc64 users > > just ignore the leading . when reading the output. In the user case, there > > is no symbol at all whose value is the code address, so there is no match. > > That explains why we have all these "." suppression stuff around in the > runtime and tapsets: > > #ifdef __powerpc__ > // Map ".sys_foo" to "sys_foo". > if (name[0] == '.') > name++; > #endif > > Strangely enough we have symbol table parsing code in both tapsets.cxx, > which handles the special case powerpc .odp section and the function > description setup, responsible for calculating the addresses to set > probes on, and totally separate symbol table parsing code in > translate.cxx, responsible for writing the lookup table we use at > runtime, that doesn't have any special case powerpc (except for that one > bit where it accepts symbols with STT_NOTYPE). > > It would be nice to merge these one day. Although the tapsets.cxx one > does exactly the opposite from what we want in translate.cxx: > > /* > * The .opd section contains function descriptors that can look > * just like function entry points. For example, there's a function > * descriptor called "do_exit" that links to the entry point ".do_exit". > * Reject all symbols in .opd. > */ > > Maybe this is a little too naive, but would it be as simple as the > attached? I don't actually have any powerpc machine to check. > > Cheers, > > Mark Hi, I haven't really gone through the patch yet but tested them on a ppc64 box and the tests still seem to fail (the output of systemtap.log of a partial testsuite run is attached). Thanks, K.Prasad --1yeeQ81UyVL57Vl7 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename="systemtap.log.mjw_patch" Content-Transfer-Encoding: quoted-printable Content-length: 1795252 Test Run By root on Wed Feb 2 22:19:01 2011 Native configuration is powerpc64-unknown-linux-gnu =3D=3D=3D systemtap tests =3D=3D=3D Schedule of variations: unix Running target unix Using /usr/share/dejagnu/baseboards/unix.exp as board description file for = target. Using /usr/share/dejagnu/config/unix.exp as generic interface file for targ= et. Using /home/prasadkr/systemtap/testsuite/config/unix.exp as tool-and-target= -specific interface file. Host: Linux llm64.in.ibm.com 2.6.32-71.el6.ppc64 #1 SMP Wed Sep 1 02:56:55 = EDT 2010 ppc64 ppc64 ppc64 GNU/Linux Snapshot: version 1.5/0.148 commit release-1.4-37-g55b377f + changes GCC: 4.4.4 [gcc (GCC) 4.4.4 20100726 (Red Hat 4.4.4-13)] Distro: Red Hat Enterprise Linux Server release 6.0 (Santiago) Running /home/prasadkr/systemtap/testsuite/systemtap/notest.exp ... testcase /home/prasadkr/systemtap/testsuite/systemtap/notest.exp completed = in 0 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.apps/mysql.exp ... UNTESTED: mysql sdt app testcase /home/prasadkr/systemtap/testsuite/systemtap.apps/mysql.exp comple= ted in 0 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.apps/postgres.exp ... UNTESTED: postgres sdt app testcase /home/prasadkr/systemtap/testsuite/systemtap.apps/postgres.exp com= pleted in 0 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.apps/tcl.exp ... UNTESTED: tcl sdt app testcase /home/prasadkr/systemtap/testsuite/systemtap.apps/tcl.exp complete= d in 0 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.apps/xulrunner.exp ... UNTESTED: xulrunner sdt app testcase /home/prasadkr/systemtap/testsuite/systemtap.apps/xulrunner.exp co= mpleted in 0 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/add.exp ... executing: stap -v /home/prasadkr/systemtap/testsuite/systemtap.base/add.stp spawn stap -v /home/prasadkr/systemtap/testsuite/systemtap.base/add.stp=0D Pass 1: parsed user script and 75 library script(s) using 38592virt/30656re= s/7872shr kb, in 140usr/0sys/313real ms.=0D Pass 2: analyzed script: 2 probe(s), 0 function(s), 0 embed(s), 3 global(s)= using 38976virt/31296res/8064shr kb, in 0usr/0sys/7real ms.=0D Pass 3: translated to C into "/tmp/stapd7xs2D/stap_fdff935bf8080ef11bfc768c= 6327ce11_862.c" using 39104virt/31680res/8384shr kb, in 0usr/0sys/20real ms= .=0D Pass 4: compiled C into "stap_fdff935bf8080ef11bfc768c6327ce11_862.ko" in 9= 60usr/110sys/2221real ms.=0D Pass 5: starting run.=0D systemtap starting probe=0D PASS: systemtap.base/add.stp startup PASS: systemtap.base/add.stp load generation systemtap ending probe=0D systemtap test success=0D Pass 5: run completed in 0usr/20sys/356real ms.=0D FAIL: systemtap.base/add.stp shutdown (eof) testcase /home/prasadkr/systemtap/testsuite/systemtap.base/add.exp complete= d in 3 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/alias-condition.e= xp ... executing: stap -v /home/prasadkr/systemtap/testsuite/systemtap.base/alias-= condition.stp spawn stap -v /home/prasadkr/systemtap/testsuite/systemtap.base/alias-condi= tion.stp=0D Pass 1: parsed user script and 75 library script(s) using 38592virt/30720re= s/7872shr kb, in 130usr/0sys/295real ms.=0D Pass 2: analyzed script: 4 probe(s), 1 function(s), 0 embed(s), 1 global(s)= using 38976virt/31360res/8064shr kb, in 0usr/0sys/6real ms.=0D Pass 3: translated to C into "/tmp/stapGhDFoF/stap_0111868c88df1215a9c44ddb= 59c1c98e_1103.c" using 39104virt/31744res/8384shr kb, in 10usr/0sys/1real m= s.=0D Pass 4: compiled C into "stap_0111868c88df1215a9c44ddb59c1c98e_1103.ko" in = 980usr/110sys/2258real ms.=0D Pass 5: starting run.=0D systemtap starting probe=0D PASS: systemtap.base/alias-condition.stp startup PASS: systemtap.base/alias-condition.stp load generation systemtap ending probe=0D systemtap test success=0D Pass 5: run completed in 0usr/10sys/352real ms.=0D FAIL: systemtap.base/alias-condition.stp shutdown (eof) testcase /home/prasadkr/systemtap/testsuite/systemtap.base/alias-condition.= exp completed in 3 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/alias_tapset.exp = ... running stap -p2 -I /home/prasadkr/systemtap/testsuite/systemtap.base/alias= _tapset /home/prasadkr/systemtap/testsuite/systemtap.base/alias_tapset.stp spawn stap -p2 -I /home/prasadkr/systemtap/testsuite/systemtap.base/alias_t= apset /home/prasadkr/systemtap/testsuite/systemtap.base/alias_tapset.stp=0D # globals=0D _reads:long=0D # probes=0D never /* <- tapset_test.foo =3D never <- tapset_test.foo */=0D kernel.function("SyS_read@fs/read_write.c:372").call /* pc=3D_stext+0x1b171= 0 */ /* <- syscall.read =3D kernel.function("sys_read").call <- syscall.rea= d */=0D timer.s(5) /* <- timer.s(5) */=0D PASS: alias_tapset testcase /home/prasadkr/systemtap/testsuite/systemtap.base/alias_tapset.exp= completed in 1 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/alternatives.exp = ... starting stap -u -p2 -e { probe kernel.function("vfs_write") { ret =3D $z; } } spawn stap -u -p2 -e=20 probe kernel.function("vfs_write") { ret =3D $z; } =0D semantic error: unable to find local 'z' near pc 0xc0000000001b10e0 in vfs_= write(fs/read_write.c) (alternatives: $file $buf $count $pos $ret): identif= ier '$z' at :2:48=0D source: probe kernel.function("vfs_write") { ret =3D $z; }=0D ^=0D semantic error: unresolved type : identifier 'ret' at :2:42=0D source: probe kernel.function("vfs_write") { ret =3D $z; }=0D ^=0D Pass 2: analysis failed. Try again with another '--vp 01' option.=0D ile $buf $count $pos $ret): identifier '$z' at :2:48=0D source: probe kernel.function("vfs_write") { ret =3D $z; }=0D ^=0D semantic error: unresolved type : identifier 'ret' at :2:42=0D source: probe kernel.function("vfs_write") { ret =3D $z; }=0D ^=0D Pass 2: analysis failed. Try again with another '--vp 01' option.=0D EOF wait results: 5881 exp6 0 1 PASS: LOCAL1 starting stap -u -p2 -e { probe kernel.function("vfs_write") { f_pos =3D $file->f_po; } } spawn stap -u -p2 -e=20 probe kernel.function("vfs_write") { f_pos =3D $file->f_po; } =0D semantic error: unable to find member 'f_po' for struct file (alternatives:= f_u f_path f_op f_lock f_count f_flags f_mode f_pos f_owner f_cred f_ra f_= version f_security private_data f_ep_links f_mapping): operator '->' at :2:55=0D source: probe kernel.function("vfs_write") { f_pos =3D $file->f= _po; }=0D ^=0D semantic error: unresolved type : identifier 'f_pos' at :2:42=0D source: probe kernel.function("vfs_write") { f_pos =3D $file->f= _po; }=0D ^=0D Pass 2: analysis failed. Try again with another '--vp 01' option.=0D _u f_path f_op f_lock f_count f_flags f_mode f_pos f_owner f_cred f_ra f_ve= rsion f_security private_data f_ep_links f_mapping): operator '->' at :2:55=0D source: probe kernel.function("vfs_write") { f_pos =3D $file->f= _po; }=0D ^=0D semantic error: unresolved type : identifier 'f_pos' at :2:42=0D source: probe kernel.function("vfs_write") { f_pos =3D $file->f= _po; }=0D ^=0D Pass 2: analysis failed. Try again with another '--vp 01' option.=0D EOF wait results: 5885 exp6 0 1 PASS: STRUCT1 testcase /home/prasadkr/systemtap/testsuite/systemtap.base/alternatives.exp= completed in 2 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/arith.exp ... spawn stap -DMAXNESTING=3D5 /home/prasadkr/systemtap/testsuite/systemtap.ba= se/arith.stp=0D test 1 [+] pass=0D test 2 [+] pass=0D test 3 [-] pass=0D test 4 [=3D=3D] pass=0D test 5 [!=3D] pass=0D test 6 [=3D=3D s] pass=0D test 7 [<=3D s] pass=0D test 8 [> s] pass=0D test 9 [<] pass=0D test 10 [<] pass=0D test 11 [*] pass=0D test 12 [*] pass=0D test 13 [/] pass=0D test 14 [%] pass=0D test 15 [/] pass=0D test 16 [%] pass=0D test 17 [/] pass=0D test 18 [%] pass=0D test 19 [/] pass=0D test 20 [%] pass=0D test 21 [%] pass=0D test 22 [&] pass=0D test 23 [|] pass=0D test 24 [^] pass=0D test 25 [&&] pass=0D test 26 [||] pass=0D test 27 [<<] pass=0D test 28 [<<] pass=0D test 29 [<<] pass=0D test 30 [<<] pass=0D test 31 [<<] pass=0D test 32 [>>] pass=0D test 33 [>>] pass=0D test 34 [>>] pass=0D test 35 [>>] pass=0D test 36 [--i] pass=0D test 37 [++i] pass=0D test 38 [i--] pass=0D test 39 [i++] pass=0D test 40 [+=3D] pass=0D test 41 [after +=3D] pass=0D test 42 [/=3D] pass=0D test 43 [after /=3D] pass=0D test 44 [.=3D] pass=0D test 45 [after .=3D] pass=0D passes: 45 failures: 0=0D PASS: arith testcase /home/prasadkr/systemtap/testsuite/systemtap.base/arith.exp comple= ted in 3 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/arith_limits.exp = ... spawn stap -DMAXNESTING=3D5 /home/prasadkr/systemtap/testsuite/systemtap.ba= se/arith_limits.stp=0D test 0 [string lmax] pass=0D test 1 [hex lmax] pass=0D test 2 [string lmin] pass=0D test 3 [hex lmin] pass=0D test 4 [lmax/-1] pass=0D test 5 [lmin/-1] pass=0D test 6 [lmax +1] pass=0D test 7 [lmin -1] pass=0D test 8 [string llmax] pass=0D test 9 [hex llmax] pass=0D test 10 [string llmin] pass=0D test 11 [hex llmin] pass=0D test 12 [llmax/-1] pass=0D test 13 [llmax*-1] pass=0D test 14 [llmin/-1] pass=0D test 15 [llmin*-1] pass=0D test 16 [llmax +1] pass=0D test 17 [llmin -1] pass=0D test 18 [llmax%1] pass=0D test 19 [llmin%1] pass=0D test 20 [0%1 ] pass=0D test 21 [0%lmax] pass=0D test 22 [1%lmax] pass=0D test 23 [0%lmin] pass=0D test 24 [1%lmin] pass=0D passes: 25 failures: 0=0D PASS: arith_limits testcase /home/prasadkr/systemtap/testsuite/systemtap.base/arith_limits.exp= completed in 3 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/array_size.exp ... executing: stap -v -DMAXMAPENTRIES=3D1 /home/prasadkr/systemtap/testsuite/s= ystemtap.base/array_size.stp spawn stap -v -DMAXMAPENTRIES=3D1 /home/prasadkr/systemtap/testsuite/system= tap.base/array_size.stp=0D Pass 1: parsed user script and 75 library script(s) using 38592virt/30720re= s/7872shr kb, in 130usr/0sys/298real ms.=0D Pass 2: analyzed script: 4 probe(s), 0 function(s), 0 embed(s), 1 global(s)= using 39104virt/31424res/8064shr kb, in 10usr/0sys/7real ms.=0D Pass 3: translated to C into "/tmp/stapgEOcGe/stap_52cdd45f79f5cf8b046aaf84= e74fc76b_1119.c" using 39104virt/31744res/8384shr kb, in 0usr/0sys/1real ms= .=0D Pass 4: compiled C into "stap_52cdd45f79f5cf8b046aaf84e74fc76b_1119.ko" in = 1040usr/110sys/2379real ms.=0D Pass 5: starting run.=0D systemtap starting probe=0D PASS: systemtap.base/array_size.stp startup PASS: systemtap.base/array_size.stp load generation systemtap ending probe=0D systemtap test success=0D Pass 5: run completed in 0usr/10sys/328real ms.=0D FAIL: systemtap.base/array_size.stp shutdown (eof) testcase /home/prasadkr/systemtap/testsuite/systemtap.base/array_size.exp c= ompleted in 3 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/array_string.exp = ... executing: stap -v -DMAXSTRINGLEN=3D512 -e { global str global str_array[1] probe begin { str =3D " 0:123456789+123456789+123456789+123456789+123456789+123456789 = 1:123456789+123456789+123456789+123456789+123456789+123456789 2:123456789+= 123456789+123456789+123456789+123456789+123456789 3:123456789+123456789+12= 3456789+123456789+123456789+123456789 4:123456789+123456789+123456789+1234= 56789+123456789+123456789 5:123456789+123456789+123456789+123456789+123456= 789+123456789 6:123456789+123456789+123456789+123456789+123456789+12345678= 9 7:123456789+123456789+123456789+123456789+123456789+123456789"=09 str_array[0] =3D str printf("systemtap starting probe\n") } probe end { printf("systemtap ending probe\n") if (strlen(str) < 500) { printf("string str is too short: %d\n", strlen(str)) printf("%s\n", str) } if (strlen(str) =3D=3D strlen(str_array[0])) { printf("string lengths match\n") } else { printf("string lengths *don't* match\n") printf("str: %d\n", strlen(str)) printf("str_array[0]: %d\n", strlen(str_array[0])) } if (str_array[0] =3D=3D str) { printf("strings match\n") } else { printf("strings *don't* match!\n") printf("str: %s\n", str) printf("str_array[0]: %s\n", str_array[0]) } } } spawn stap -v -DMAXSTRINGLEN=3D512 -e=20 global str global str_array[1] probe begin { str =3D " 0:123456789+123456789+123456789+123456789+123456789+123456789 = 1:123456789+123456789+123456789+123456789+123456789+123456789 2:123456789+= 123456789+123456789+123456789+123456789+123456789 3:123456789+123456789+12= 3456789+123456789+123456789+123456789 4:123456789+123456789+123456789+1234= 56789+123456789+123456789 5:123456789+123456789+123456789+123456789+123456= 789+123456789 6:123456789+123456789+123456789+123456789+123456789+12345678= 9 7:123456789+123456789+123456789+123456789+123456789+123456789"=09 str_array[0] =3D str printf("systemtap starting probe\n") } probe end { printf("systemtap ending probe\n") if (strlen(str) < 500) { printf("string str is too short: %d\n", strlen(str)) printf("%s\n", str) } if (strlen(str) =3D=3D strlen(str_array[0])) { printf("string lengths match\n") } else { printf("string lengths *don't* match\n") printf("str: %d\n", strlen(str)) printf("str_array[0]: %d\n", strlen(str_array[0])) } if (str_array[0] =3D=3D str) { printf("strings match\n") } else { printf("strings *don't* match!\n") printf("str: %s\n", str) printf("str_array[0]: %s\n", str_array[0]) } } =0D Pass 1: parsed user script and 75 library script(s) using 38528virt/30720re= s/7872shr kb, in 130usr/0sys/297real ms.=0D Pass 2: analyzed script: 2 probe(s), 1 function(s), 0 embed(s), 2 global(s)= using 39104virt/31424res/8064shr kb, in 10usr/0sys/6real ms.=0D Pass 3: translated to C into "/tmp/stapw5lGk3/stap_e5c80bdce460b02b16534329= c17e45a0_1910.c" using 39104virt/31744res/8384shr kb, in 0usr/0sys/2real ms= .=0D Pass 4: compiled C into "stap_e5c80bdce460b02b16534329c17e45a0_1910.ko" in = 1050usr/120sys/2395real ms.=0D Pass 5: starting run.=0D systemtap starting probe=0D PASS: ARRAY_STRING startup PASS: ARRAY_STRING load generation systemtap ending probe=0D string lengths match=0D strings match=0D Pass 5: run completed in 0usr/10sys/352real ms.=0D PASS: ARRAY_STRING shutdown and output metric: ARRAY_STRING 130 0 297 10 0 6 0 0 2 1050 120 2395 0 10 352 testcase /home/prasadkr/systemtap/testsuite/systemtap.base/array_string.exp= completed in 4 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/atomic.exp ... executing: stap -v -e { probe begin { print("systemtap starting probe\n") exit() } probe end { print("systemtap ending probe\n") printf("%d\n", atomic_long_read(0)) } } spawn stap -v -e=20 probe begin { print("systemtap starting probe\n") exit() } probe end { print("systemtap ending probe\n") printf("%d\n", atomic_long_read(0)) } =0D Pass 1: parsed user script and 75 library script(s) using 38528virt/30592re= s/7872shr kb, in 140usr/0sys/317real ms.=0D Pass 2: analyzed script: 2 probe(s), 2 function(s), 0 embed(s), 0 global(s)= using 39104virt/31296res/8064shr kb, in 10usr/0sys/7real ms.=0D Pass 3: translated to C into "/tmp/stapX625re/stap_ea061f1716129c66d7a18cff= 90192d6f_1281.c" using 39104virt/31680res/8384shr kb, in 0usr/0sys/0real ms= .=0D Pass 4: compiled C into "stap_ea061f1716129c66d7a18cff90192d6f_1281.ko" in = 1010usr/120sys/2319real ms.=0D Pass 5: starting run.=0D systemtap starting probe=0D ERROR: kernel read fault at 0x(null) (a) near identifier 'atomic_long_read'= at /usr/local/share/systemtap/tapset/atomic.stp:21:10=0D WARNING: Number of errors: 1, skipped probes: 0=0D systemtap ending probe=0D Pass 5: run completed in 0usr/10sys/353real ms.=0D Pass 5: run failed. Try again with another '--vp 00001' option.=0D PASS: atomic1 received expected error executing: stap -v -e { probe begin { print("systemtap starting probe\n") exit() } probe end { print("systemtap ending probe\n") printf("%d\n", atomic_long_read(-1)) } } spawn stap -v -e=20 probe begin { print("systemtap starting probe\n") exit() } probe end { print("systemtap ending probe\n") printf("%d\n", atomic_long_read(-1)) } =0D Pass 1: parsed user script and 75 library script(s) using 38528virt/30592re= s/7872shr kb, in 140usr/0sys/310real ms.=0D Pass 2: analyzed script: 2 probe(s), 2 function(s), 0 embed(s), 0 global(s)= using 39104virt/31296res/8064shr kb, in 0usr/0sys/6real ms.=0D Pass 3: translated to C into "/tmp/stapC7lzJl/stap_e6f312325da571c48f5fed70= 9b2d6d1d_1282.c" using 39104virt/31680res/8384shr kb, in 0usr/0sys/1real ms= .=0D Pass 4: compiled C into "stap_e6f312325da571c48f5fed709b2d6d1d_1282.ko" in = 990usr/110sys/2304real ms.=0D Pass 5: starting run.=0D systemtap starting probe=0D ERROR: kernel read fault at 0xffffffffffffffff (a) near identifier 'atomic_= long_read' at /usr/local/share/systemtap/tapset/atomic.stp:21:10=0D WARNING: Number of errors: 1, skipped probes: 0=0D systemtap ending probe=0D Pass 5: run completed in 10usr/10sys/367real ms.=0D Pass 5: run failed. Try again with another '--vp 00001' option.=0D PASS: atomic2 received expected error executing: stap -v -e { probe begin { print("systemtap starting probe\n") exit() } probe end { print("systemtap ending probe\n") printf("%d\n", atomic_long_read(3)) } } spawn stap -v -e=20 probe begin { print("systemtap starting probe\n") exit() } probe end { print("systemtap ending probe\n") printf("%d\n", atomic_long_read(3)) } =0D Pass 1: parsed user script and 75 library script(s) using 38528virt/30592re= s/7872shr kb, in 140usr/0sys/313real ms.=0D Pass 2: analyzed script: 2 probe(s), 2 function(s), 0 embed(s), 0 global(s)= using 39104virt/31296res/8064shr kb, in 0usr/0sys/6real ms.=0D Pass 3: translated to C into "/tmp/stapKbG8Gu/stap_1dbca024be68500c2941ffb0= 924e2d81_1281.c" using 39104virt/31680res/8384shr kb, in 0usr/0sys/1real ms= .=0D Pass 4: compiled C into "stap_1dbca024be68500c2941ffb0924e2d81_1281.ko" in = 980usr/110sys/2234real ms.=0D Pass 5: starting run.=0D systemtap starting probe=0D ERROR: kernel read fault at 0x0000000000000003 (a) near identifier 'atomic_= long_read' at /usr/local/share/systemtap/tapset/atomic.stp:21:10=0D WARNING: Number of errors: 1, skipped probes: 0=0D systemtap ending probe=0D Pass 5: run completed in 0usr/10sys/342real ms.=0D Pass 5: run failed. Try again with another '--vp 00001' option.=0D PASS: atomic3 received expected error executing: stap -v -ge { %{ #include #ifdef ATOMIC_LONG_INIT struct { ulong barrier1; atomic_long_t a; ulong barrier2; } stp_atomic_struct =3D { ULONG_MAX, ATOMIC_LONG_INIT(5), ULONG_MAX }; #else struct { ulong barrier1; long a; ulong barrier2; } stp_atomic_struct =3D { ULONG_MAX, 5, ULONG_MAX }; #endif %} function get_atomic_long_addr:long() %{ THIS->__retvalue =3D (long)&stp_atomic_struct.a; %} probe begin { print("systemtap starting probe\n") exit() } probe end { print("systemtap ending probe\n") printf("%d\n", atomic_long_read(get_atomic_long_addr() + 0)) } } spawn stap -v -ge=20 %{ #include #ifdef ATOMIC_LONG_INIT struct { ulong barrier1; atomic_long_t a; ulong barrier2; } stp_atomic_struct =3D { ULONG_MAX, ATOMIC_LONG_INIT(5), ULONG_MAX }; #else struct { ulong barrier1; long a; ulong barrier2; } stp_atomic_struct =3D { ULONG_MAX, 5, ULONG_MAX }; #endif %} function get_atomic_long_addr:long() %{ THIS->__retvalue =3D (long)&stp_atomic_struct.a; %} probe begin { print("systemtap starting probe\n") exit() } probe end { print("systemtap ending probe\n") printf("%d\n", atomic_long_read(get_atomic_long_addr() + 0)) } =0D Pass 1: parsed user script and 75 library script(s) using 38592virt/30720re= s/7872shr kb, in 140usr/0sys/295real ms.=0D Pass 2: analyzed script: 2 probe(s), 3 function(s), 1 embed(s), 0 global(s)= using 38976virt/31360res/8064shr kb, in 0usr/0sys/6real ms.=0D Pass 3: translated to C into "/tmp/stapAdCG7u/stap_31fe13d158122921390beda7= e4f8f48e_1790.c" using 39104virt/31744res/8384shr kb, in 0usr/0sys/0real ms= .=0D Pass 4: compiled C into "stap_31fe13d158122921390beda7e4f8f48e_1790.ko" in = 1010usr/110sys/2318real ms.=0D Pass 5: starting run.=0D systemtap starting probe=0D systemtap ending probe=0D 5=0D Pass 5: run completed in 0usr/10sys/356real ms.=0D PASS: atomic4 didn't error executing: stap -v -e { probe begin { print("systemtap starting probe\n") exit() } probe end { print("systemtap ending probe\n") printf("%d\n", atomic_read(0)) } } spawn stap -v -e=20 probe begin { print("systemtap starting probe\n") exit() } probe end { print("systemtap ending probe\n") printf("%d\n", atomic_read(0)) } =0D Pass 1: parsed user script and 75 library script(s) using 38528virt/30656re= s/7872shr kb, in 140usr/0sys/313real ms.=0D Pass 2: analyzed script: 2 probe(s), 2 function(s), 0 embed(s), 0 global(s)= using 39104virt/31360res/8064shr kb, in 0usr/0sys/6real ms.=0D Pass 3: translated to C into "/tmp/stapDxcwBA/stap_8af23f2009d448d83491e83b= 5dc7b400_1225.c" using 39104virt/31744res/8384shr kb, in 0usr/0sys/0real ms= .=0D Pass 4: compiled C into "stap_8af23f2009d448d83491e83b5dc7b400_1225.ko" in = 1000usr/110sys/2300real ms.=0D Pass 5: starting run.=0D systemtap starting probe=0D ERROR: kernel read fault at 0x(null) (a) near identifier 'atomic_read' at /= usr/local/share/systemtap/tapset/atomic.stp:9:10=0D WARNING: Number of errors: 1, skipped probes: 0=0D systemtap ending probe=0D Pass 5: run completed in 0usr/10sys/358real ms.=0D Pass 5: run failed. Try again with another '--vp 00001' option.=0D PASS: atomic5 received expected error executing: stap -v -e { probe begin { print("systemtap starting probe\n") exit() } probe end { print("systemtap ending probe\n") printf("%d\n", atomic_read(-1)) } } spawn stap -v -e=20 probe begin { print("systemtap starting probe\n") exit() } probe end { print("systemtap ending probe\n") printf("%d\n", atomic_read(-1)) } =0D Pass 1: parsed user script and 75 library script(s) using 38528virt/30592re= s/7872shr kb, in 140usr/0sys/314real ms.=0D Pass 2: analyzed script: 2 probe(s), 2 function(s), 0 embed(s), 0 global(s)= using 39104virt/31296res/8064shr kb, in 0usr/0sys/6real ms.=0D Pass 3: translated to C into "/tmp/stapGDjxRD/stap_034eddae35b4f38fcc94e278= 65ec5eca_1226.c" using 39104virt/31680res/8384shr kb, in 0usr/0sys/0real ms= .=0D Pass 4: compiled C into "stap_034eddae35b4f38fcc94e27865ec5eca_1226.ko" in = 970usr/110sys/2213real ms.=0D Pass 5: starting run.=0D systemtap starting probe=0D ERROR: kernel read fault at 0xffffffffffffffff (a) near identifier 'atomic_= read' at /usr/local/share/systemtap/tapset/atomic.stp:9:10=0D WARNING: Number of errors: 1, skipped probes: 0=0D systemtap ending probe=0D Pass 5: run completed in 0usr/10sys/343real ms.=0D Pass 5: run failed. Try again with another '--vp 00001' option.=0D PASS: atomic6 received expected error executing: stap -v -e { probe begin { print("systemtap starting probe\n") exit() } probe end { print("systemtap ending probe\n") printf("%d\n", atomic_read(3)) } } spawn stap -v -e=20 probe begin { print("systemtap starting probe\n") exit() } probe end { print("systemtap ending probe\n") printf("%d\n", atomic_read(3)) } =0D Pass 1: parsed user script and 75 library script(s) using 38528virt/30656re= s/7872shr kb, in 130usr/0sys/295real ms.=0D Pass 2: analyzed script: 2 probe(s), 2 function(s), 0 embed(s), 0 global(s)= using 39104virt/31360res/8064shr kb, in 0usr/0sys/6real ms.=0D Pass 3: translated to C into "/tmp/stapG6IkJC/stap_ebe95203a9b2327b476866b3= 5bb1af27_1225.c" using 39104virt/31744res/8384shr kb, in 0usr/0sys/0real ms= .=0D Pass 4: compiled C into "stap_ebe95203a9b2327b476866b35bb1af27_1225.ko" in = 980usr/110sys/2294real ms.=0D Pass 5: starting run.=0D systemtap starting probe=0D ERROR: kernel read fault at 0x0000000000000003 (a) near identifier 'atomic_= read' at /usr/local/share/systemtap/tapset/atomic.stp:9:10=0D WARNING: Number of errors: 1, skipped probes: 0=0D systemtap ending probe=0D Pass 5: run completed in 0usr/10sys/351real ms.=0D Pass 5: run failed. Try again with another '--vp 00001' option.=0D PASS: atomic7 received expected error executing: stap -v -ge { %{ #include struct { ulong barrier1; atomic_t a; ulong barrier2; } stp_atomic_struct =3D { ULONG_MAX, ATOMIC_INIT(5), ULONG_MAX }; %} function get_atomic_addr:long() %{ THIS->__retvalue =3D (long)&stp_atomic_struct.a; %} probe begin { print("systemtap starting probe\n") exit() } probe end { print("systemtap ending probe\n") printf("%d\n", atomic_read(get_atomic_addr() + 0)) } } spawn stap -v -ge=20 %{ #include struct { ulong barrier1; atomic_t a; ulong barrier2; } stp_atomic_struct =3D { ULONG_MAX, ATOMIC_INIT(5), ULONG_MAX }; %} function get_atomic_addr:long() %{ THIS->__retvalue =3D (long)&stp_atomic_struct.a; %} probe begin { print("systemtap starting probe\n") exit() } probe end { print("systemtap ending probe\n") printf("%d\n", atomic_read(get_atomic_addr() + 0)) } =0D Pass 1: parsed user script and 75 library script(s) using 38528virt/30592re= s/7872shr kb, in 140usr/0sys/314real ms.=0D Pass 2: analyzed script: 2 probe(s), 3 function(s), 1 embed(s), 0 global(s)= using 39104virt/31296res/8064shr kb, in 0usr/0sys/7real ms.=0D Pass 3: translated to C into "/tmp/stap0XPjAI/stap_e0f9730df9686f5af7237ee7= 34ac3806_1533.c" using 39104virt/31680res/8384shr kb, in 0usr/0sys/1real ms= .=0D Pass 4: compiled C into "stap_e0f9730df9686f5af7237ee734ac3806_1533.ko" in = 980usr/110sys/2250real ms.=0D Pass 5: starting run.=0D systemtap starting probe=0D systemtap ending probe=0D 5=0D Pass 5: run completed in 0usr/10sys/353real ms.=0D PASS: atomic8 didn't error testcase /home/prasadkr/systemtap/testsuite/systemtap.base/atomic.exp compl= eted in 24 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/backtrace.exp ... spawn stap /home/prasadkr/systemtap/testsuite/systemtap.base/backtrace.stp= =0D begin=0D Systemtap probe: begin=0D timer.ms(100)=0D Systemtap probe: timer.ms(100)=0D end=0D Systemtap probe: end=0D KFAIL: backtrace (1 0) (PRMS: 6961) spawn stap /home/prasadkr/systemtap/testsuite/systemtap.base/backtrace.stp = -d kernel=0D begin=0D Systemtap probe: begin=0D timer.ms(100)=0D Systemtap probe: timer.ms(100)=0D end=0D Systemtap probe: end=0D KFAIL: backtrace-unwindsyms (1 0) (PRMS: 6961) testcase /home/prasadkr/systemtap/testsuite/systemtap.base/backtrace.exp co= mpleted in 14 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/badkprobe.exp ... spawn stap -g -e=20 probe $1 { k++ } global k probe timer.ms(100) { exit() } probe end { println("cleanup ok") } kernel.statement(-1).absolute=0D WARNING: probe kernel.statement(0xffffffffffffffff).absolute (address 0xfff= fffffffffffff) registration error (rc -22)=0D cleanup ok=0D PASS: bad kprobe registration: kernel.statement(-1).absolute spawn stap -g -e=20 probe $1 { k++ } global k probe timer.ms(100) { exit() } probe end { println("cleanup ok") } kprobe.statement(-1).absolute=0D WARNING: probe kprobe.statement(0xffffffffffffffff).absolute (address 0xfff= fffffffffffff) registration error (rc -22)=0D cleanup ok=0D PASS: bad kprobe registration: kprobe.statement(-1).absolute spawn stap -g -e=20 probe $1 { k++ } global k probe timer.ms(100) { exit() } probe end { println("cleanup ok") } kprobe.function("no_such_function")=0D WARNING: probe kprobe.function("no_such_function") (address 0x0) registrati= on error (rc -22)=0D cleanup ok=0D PASS: bad kprobe registration: kprobe.function("no_such_function") spawn stap -g -e=20 probe $1 { k++ } global k probe timer.ms(100) { exit() } probe end { println("cleanup ok") } kprobe.function("no_such_function").return=0D WARNING: probe kprobe.function("no_such_function").return (address 0x0) reg= istration error (rc -22)=0D cleanup ok=0D PASS: bad kprobe registration: kprobe.function("no_such_function").return spawn stap -g -w -e=20 probe $1 { k++ } global k probe timer.ms(100) { exit() } probe end { println("cleanup ok") } kernel.statement(-1).absolute ?=0D cleanup ok=0D PASS: bad optional kprobe registration: kernel.statement(-1).absolute spawn stap -g -w -e=20 probe $1 { k++ } global k probe timer.ms(100) { exit() } probe end { println("cleanup ok") } kprobe.statement(-1).absolute ?=0D cleanup ok=0D PASS: bad optional kprobe registration: kprobe.statement(-1).absolute spawn stap -g -w -e=20 probe $1 { k++ } global k probe timer.ms(100) { exit() } probe end { println("cleanup ok") } kprobe.function("no_such_function") ?=0D cleanup ok=0D PASS: bad optional kprobe registration: kprobe.function("no_such_function") spawn stap -g -w -e=20 probe $1 { k++ } global k probe timer.ms(100) { exit() } probe end { println("cleanup ok") } kprobe.function("no_such_function").return ?=0D cleanup ok=0D PASS: bad optional kprobe registration: kprobe.function("no_such_function")= .return testcase /home/prasadkr/systemtap/testsuite/systemtap.base/badkprobe.exp co= mpleted in 25 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/be_order.exp ... executing: stap -v /home/prasadkr/systemtap/testsuite/systemtap.base/be_ord= er.stp spawn stap -v /home/prasadkr/systemtap/testsuite/systemtap.base/be_order.st= p=0D Pass 1: parsed user script and 75 library script(s) using 38656virt/30656re= s/7872shr kb, in 260usr/0sys/264real ms.=0D Pass 2: analyzed script: 14 probe(s), 0 function(s), 0 embed(s), 2 global(s= ) using 39040virt/31360res/8064shr kb, in 10usr/0sys/6real ms.=0D Pass 3: translated to C into "/tmp/stapXuwukp/stap_4c5c4a5cfa7255bd0e7e4434= 4d64c418_1669.c" using 39040virt/31680res/8384shr kb, in 0usr/0sys/2real ms= .=0D Pass 4: compiled C into "stap_4c5c4a5cfa7255bd0e7e44344d64c418_1669.ko" in = 1720usr/200sys/1934real ms.=0D Pass 5: starting run.=0D systemtap starting probe=0D PASS: systemtap.base/be_order.stp startup PASS: systemtap.base/be_order.stp load generation systemtap ending probe=0D systemtap test success=0D systemtap test success=0D Pass 5: run completed in 0usr/30sys/324real ms.=0D FAIL: systemtap.base/be_order.stp shutdown (eof) testcase /home/prasadkr/systemtap/testsuite/systemtap.base/be_order.exp com= pleted in 2 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/beginenderror.exp= ... spawn stap /home/prasadkr/systemtap/testsuite/systemtap.base/beginenderror.= stp=0D ERROR: division by 0 near operator '/' at /home/prasadkr/systemtap/testsuit= e/systemtap.base/beginenderror.stp:1:46=0D ok begin=0D ERROR: division by 0 near operator '/' at /home/prasadkr/systemtap/testsuit= e/systemtap.base/beginenderror.stp:5:39=0D ERROR: division by 0 near operator '/' at /home/prasadkr/systemtap/testsuit= e/systemtap.base/beginenderror.stp:5:39=0D WARNING: Number of errors: 3, skipped probes: 0=0D ok error=0D ok error(10)=0D Pass 5: run failed. Try again with another '--vp 00001' option.=0D PASS: beginenderror (4 3 0) testcase /home/prasadkr/systemtap/testsuite/systemtap.base/beginenderror.ex= p completed in 3 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/bench.exp ... spawn stap -tu /home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp= =0D gs=3D""=0D gnn[1]=3D0x1=0D gss["foo"]=3D"bar"=0D ----- probe hit report: =0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:12:19),= hits: 1, cycles: 49min/49avg/49max, from: begin from: repeat from: test.nu= ll=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:12:19),= hits: 1, cycles: 55min/55avg/55max, from: begin from: repeat from: test.nu= ll=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:12:19),= hits: 1, cycles: 49min/49avg/49max, from: begin from: repeat from: test.nu= ll=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:12:19),= hits: 1, cycles: 49min/49avg/49max, from: begin from: repeat from: test.nu= ll=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:12:19),= hits: 1, cycles: 48min/48avg/48max, from: begin from: repeat from: test.nu= ll=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:12:19),= hits: 1, cycles: 49min/49avg/49max, from: begin from: repeat from: test.nu= ll=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:12:19),= hits: 1, cycles: 49min/49avg/49max, from: begin from: repeat from: test.nu= ll=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:12:19),= hits: 1, cycles: 49min/49avg/49max, from: begin from: repeat from: test.nu= ll=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:12:19),= hits: 1, cycles: 48min/48avg/48max, from: begin from: repeat from: test.nu= ll=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:12:19),= hits: 1, cycles: 49min/49avg/49max, from: begin from: repeat from: test.nu= ll=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:12:19),= hits: 1, cycles: 49min/49avg/49max, from: begin from: repeat from: test.nu= ll=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:12:19),= hits: 1, cycles: 48min/48avg/48max, from: begin from: repeat from: test.nu= ll=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:12:19),= hits: 1, cycles: 49min/49avg/49max, from: begin from: repeat from: test.nu= ll=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:12:19),= hits: 1, cycles: 49min/49avg/49max, from: begin from: repeat from: test.nu= ll=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:12:19),= hits: 1, cycles: 49min/49avg/49max, from: begin from: repeat from: test.nu= ll=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:12:19),= hits: 1, cycles: 49min/49avg/49max, from: begin from: repeat from: test.nu= ll=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:12:19),= hits: 1, cycles: 49min/49avg/49max, from: begin from: repeat from: test.nu= ll=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:12:19),= hits: 1, cycles: 49min/49avg/49max, from: begin from: repeat from: test.nu= ll=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:12:19),= hits: 1, cycles: 56min/56avg/56max, from: begin from: repeat from: test.nu= ll=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:12:19),= hits: 1, cycles: 48min/48avg/48max, from: begin from: repeat from: test.nu= ll=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:12:19),= hits: 1, cycles: 48min/48avg/48max, from: begin from: repeat from: test.nu= ll=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:12:19),= hits: 1, cycles: 49min/49avg/49max, from: begin from: repeat from: test.nu= ll=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:12:19),= hits: 1, cycles: 48min/48avg/48max, from: begin from: repeat from: test.nu= ll=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:12:19),= hits: 1, cycles: 49min/49avg/49max, from: begin from: repeat from: test.nu= ll=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:12:19),= hits: 1, cycles: 49min/49avg/49max, from: begin from: repeat from: test.nu= ll=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:12:19),= hits: 1, cycles: 49min/49avg/49max, from: begin from: repeat from: test.nu= ll=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:12:19),= hits: 1, cycles: 49min/49avg/49max, from: begin from: repeat from: test.nu= ll=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:12:19),= hits: 1, cycles: 49min/49avg/49max, from: begin from: repeat from: test.nu= ll=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:12:19),= hits: 1, cycles: 49min/49avg/49max, from: begin from: repeat from: test.nu= ll=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:12:19),= hits: 1, cycles: 48min/48avg/48max, from: begin from: repeat from: test.nu= ll=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:12:19),= hits: 1, cycles: 49min/49avg/49max, from: begin from: repeat from: test.nu= ll=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:12:19),= hits: 1, cycles: 48min/48avg/48max, from: begin from: repeat from: test.nu= ll=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:12:19),= hits: 1, cycles: 57min/57avg/57max, from: begin from: repeat from: test.nu= ll=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:12:19),= hits: 1, cycles: 57min/57avg/57max, from: begin from: repeat from: test.nu= ll=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:12:19),= hits: 1, cycles: 49min/49avg/49max, from: begin from: repeat from: test.nu= ll=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:12:19),= hits: 1, cycles: 48min/48avg/48max, from: begin from: repeat from: test.nu= ll=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:12:19),= hits: 1, cycles: 49min/49avg/49max, from: begin from: repeat from: test.nu= ll=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:12:19),= hits: 1, cycles: 49min/49avg/49max, from: begin from: repeat from: test.nu= ll=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:12:19),= hits: 1, cycles: 50min/50avg/50max, from: begin from: repeat from: test.nu= ll=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:12:19),= hits: 1, cycles: 49min/49avg/49max, from: begin from: repeat from: test.nu= ll=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:13:23),= hits: 1, cycles: 63min/63avg/63max, from: begin from: repeat from: test.in= tassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:13:23),= hits: 1, cycles: 56min/56avg/56max, from: begin from: repeat from: test.in= tassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:13:23),= hits: 1, cycles: 57min/57avg/57max, from: begin from: repeat from: test.in= tassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:13:23),= hits: 1, cycles: 57min/57avg/57max, from: begin from: repeat from: test.in= tassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:13:23),= hits: 1, cycles: 58min/58avg/58max, from: begin from: repeat from: test.in= tassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:13:23),= hits: 1, cycles: 57min/57avg/57max, from: begin from: repeat from: test.in= tassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:13:23),= hits: 1, cycles: 56min/56avg/56max, from: begin from: repeat from: test.in= tassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:13:23),= hits: 1, cycles: 54min/54avg/54max, from: begin from: repeat from: test.in= tassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:13:23),= hits: 1, cycles: 57min/57avg/57max, from: begin from: repeat from: test.in= tassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:13:23),= hits: 1, cycles: 56min/56avg/56max, from: begin from: repeat from: test.in= tassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:13:23),= hits: 1, cycles: 57min/57avg/57max, from: begin from: repeat from: test.in= tassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:13:23),= hits: 1, cycles: 57min/57avg/57max, from: begin from: repeat from: test.in= tassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:13:23),= hits: 1, cycles: 56min/56avg/56max, from: begin from: repeat from: test.in= tassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:13:23),= hits: 1, cycles: 64min/64avg/64max, from: begin from: repeat from: test.in= tassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:13:23),= hits: 1, cycles: 63min/63avg/63max, from: begin from: repeat from: test.in= tassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:13:23),= hits: 1, cycles: 57min/57avg/57max, from: begin from: repeat from: test.in= tassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:13:23),= hits: 1, cycles: 56min/56avg/56max, from: begin from: repeat from: test.in= tassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:13:23),= hits: 1, cycles: 62min/62avg/62max, from: begin from: repeat from: test.in= tassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:13:23),= hits: 1, cycles: 55min/55avg/55max, from: begin from: repeat from: test.in= tassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:13:23),= hits: 1, cycles: 55min/55avg/55max, from: begin from: repeat from: test.in= tassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:13:23),= hits: 1, cycles: 57min/57avg/57max, from: begin from: repeat from: test.in= tassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:13:23),= hits: 1, cycles: 57min/57avg/57max, from: begin from: repeat from: test.in= tassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:13:23),= hits: 1, cycles: 57min/57avg/57max, from: begin from: repeat from: test.in= tassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:13:23),= hits: 1, cycles: 57min/57avg/57max, from: begin from: repeat from: test.in= tassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:13:23),= hits: 1, cycles: 58min/58avg/58max, from: begin from: repeat from: test.in= tassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:13:23),= hits: 1, cycles: 63min/63avg/63max, from: begin from: repeat from: test.in= tassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:13:23),= hits: 1, cycles: 57min/57avg/57max, from: begin from: repeat from: test.in= tassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:13:23),= hits: 1, cycles: 56min/56avg/56max, from: begin from: repeat from: test.in= tassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:13:23),= hits: 1, cycles: 57min/57avg/57max, from: begin from: repeat from: test.in= tassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:13:23),= hits: 1, cycles: 57min/57avg/57max, from: begin from: repeat from: test.in= tassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:13:23),= hits: 1, cycles: 57min/57avg/57max, from: begin from: repeat from: test.in= tassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:13:23),= hits: 1, cycles: 55min/55avg/55max, from: begin from: repeat from: test.in= tassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:13:23),= hits: 1, cycles: 57min/57avg/57max, from: begin from: repeat from: test.in= tassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:13:23),= hits: 1, cycles: 57min/57avg/57max, from: begin from: repeat from: test.in= tassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:13:23),= hits: 1, cycles: 55min/55avg/55max, from: begin from: repeat from: test.in= tassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:13:23),= hits: 1, cycles: 62min/62avg/62max, from: begin from: repeat from: test.in= tassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:13:23),= hits: 1, cycles: 57min/57avg/57max, from: begin from: repeat from: test.in= tassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:13:23),= hits: 1, cycles: 57min/57avg/57max, from: begin from: repeat from: test.in= tassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:13:23),= hits: 1, cycles: 57min/57avg/57max, from: begin from: repeat from: test.in= tassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:13:23),= hits: 1, cycles: 56min/56avg/56max, from: begin from: repeat from: test.in= tassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:14:24),= hits: 1, cycles: 55min/55avg/55max, from: begin from: repeat from: test.gi= ntassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:14:24),= hits: 1, cycles: 57min/57avg/57max, from: begin from: repeat from: test.gi= ntassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:14:24),= hits: 1, cycles: 55min/55avg/55max, from: begin from: repeat from: test.gi= ntassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:14:24),= hits: 1, cycles: 64min/64avg/64max, from: begin from: repeat from: test.gi= ntassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:14:24),= hits: 1, cycles: 62min/62avg/62max, from: begin from: repeat from: test.gi= ntassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:14:24),= hits: 1, cycles: 57min/57avg/57max, from: begin from: repeat from: test.gi= ntassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:14:24),= hits: 1, cycles: 57min/57avg/57max, from: begin from: repeat from: test.gi= ntassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:14:24),= hits: 1, cycles: 58min/58avg/58max, from: begin from: repeat from: test.gi= ntassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:14:24),= hits: 1, cycles: 54min/54avg/54max, from: begin from: repeat from: test.gi= ntassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:14:24),= hits: 1, cycles: 98min/98avg/98max, from: begin from: repeat from: test.gi= ntassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:14:24),= hits: 1, cycles: 62min/62avg/62max, from: begin from: repeat from: test.gi= ntassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:14:24),= hits: 1, cycles: 62min/62avg/62max, from: begin from: repeat from: test.gi= ntassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:14:24),= hits: 1, cycles: 56min/56avg/56max, from: begin from: repeat from: test.gi= ntassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:14:24),= hits: 1, cycles: 55min/55avg/55max, from: begin from: repeat from: test.gi= ntassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:14:24),= hits: 1, cycles: 62min/62avg/62max, from: begin from: repeat from: test.gi= ntassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:14:24),= hits: 1, cycles: 57min/57avg/57max, from: begin from: repeat from: test.gi= ntassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:14:24),= hits: 1, cycles: 55min/55avg/55max, from: begin from: repeat from: test.gi= ntassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:14:24),= hits: 1, cycles: 54min/54avg/54max, from: begin from: repeat from: test.gi= ntassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:14:24),= hits: 1, cycles: 56min/56avg/56max, from: begin from: repeat from: test.gi= ntassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:14:24),= hits: 1, cycles: 55min/55avg/55max, from: begin from: repeat from: test.gi= ntassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:14:24),= hits: 1, cycles: 55min/55avg/55max, from: begin from: repeat from: test.gi= ntassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:14:24),= hits: 1, cycles: 54min/54avg/54max, from: begin from: repeat from: test.gi= ntassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:14:24),= hits: 1, cycles: 54min/54avg/54max, from: begin from: repeat from: test.gi= ntassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:14:24),= hits: 1, cycles: 57min/57avg/57max, from: begin from: repeat from: test.gi= ntassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:14:24),= hits: 1, cycles: 56min/56avg/56max, from: begin from: repeat from: test.gi= ntassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:14:24),= hits: 1, cycles: 57min/57avg/57max, from: begin from: repeat from: test.gi= ntassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:14:24),= hits: 1, cycles: 55min/55avg/55max, from: begin from: repeat from: test.gi= ntassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:14:24),= hits: 1, cycles: 55min/55avg/55max, from: begin from: repeat from: test.gi= ntassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:14:24),= hits: 1, cycles: 54min/54avg/54max, from: begin from: repeat from: test.gi= ntassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:14:24),= hits: 1, cycles: 56min/56avg/56max, from: begin from: repeat from: test.gi= ntassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:14:24),= hits: 1, cycles: 57min/57avg/57max, from: begin from: repeat from: test.gi= ntassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:14:24),= hits: 1, cycles: 57min/57avg/57max, from: begin from: repeat from: test.gi= ntassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:14:24),= hits: 1, cycles: 57min/57avg/57max, from: begin from: repeat from: test.gi= ntassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:14:24),= hits: 1, cycles: 56min/56avg/56max, from: begin from: repeat from: test.gi= ntassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:14:24),= hits: 1, cycles: 54min/54avg/54max, from: begin from: repeat from: test.gi= ntassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:14:24),= hits: 1, cycles: 62min/62avg/62max, from: begin from: repeat from: test.gi= ntassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:14:24),= hits: 1, cycles: 57min/57avg/57max, from: begin from: repeat from: test.gi= ntassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:14:24),= hits: 1, cycles: 58min/58avg/58max, from: begin from: repeat from: test.gi= ntassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:14:24),= hits: 1, cycles: 56min/56avg/56max, from: begin from: repeat from: test.gi= ntassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:14:24),= hits: 1, cycles: 57min/57avg/57max, from: begin from: repeat from: test.gi= ntassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:15:22),= hits: 1, cycles: 57min/57avg/57max, from: begin from: repeat from: test.in= tincr=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:15:22),= hits: 1, cycles: 54min/54avg/54max, from: begin from: repeat from: test.in= tincr=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:15:22),= hits: 1, cycles: 56min/56avg/56max, from: begin from: repeat from: test.in= tincr=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:15:22),= hits: 1, cycles: 55min/55avg/55max, from: begin from: repeat from: test.in= tincr=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:15:22),= hits: 1, cycles: 98min/98avg/98max, from: begin from: repeat from: test.in= tincr=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:15:22),= hits: 1, cycles: 57min/57avg/57max, from: begin from: repeat from: test.in= tincr=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:15:22),= hits: 1, cycles: 57min/57avg/57max, from: begin from: repeat from: test.in= tincr=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:15:22),= hits: 1, cycles: 57min/57avg/57max, from: begin from: repeat from: test.in= tincr=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:15:22),= hits: 1, cycles: 57min/57avg/57max, from: begin from: repeat from: test.in= tincr=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:15:22),= hits: 1, cycles: 55min/55avg/55max, from: begin from: repeat from: test.in= tincr=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:15:22),= hits: 1, cycles: 56min/56avg/56max, from: begin from: repeat from: test.in= tincr=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:15:22),= hits: 1, cycles: 56min/56avg/56max, from: begin from: repeat from: test.in= tincr=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:15:22),= hits: 1, cycles: 54min/54avg/54max, from: begin from: repeat from: test.in= tincr=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:15:22),= hits: 1, cycles: 57min/57avg/57max, from: begin from: repeat from: test.in= tincr=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:15:22),= hits: 1, cycles: 55min/55avg/55max, from: begin from: repeat from: test.in= tincr=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:15:22),= hits: 1, cycles: 54min/54avg/54max, from: begin from: repeat from: test.in= tincr=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:15:22),= hits: 1, cycles: 57min/57avg/57max, from: begin from: repeat from: test.in= tincr=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:15:22),= hits: 1, cycles: 56min/56avg/56max, from: begin from: repeat from: test.in= tincr=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:15:22),= hits: 1, cycles: 55min/55avg/55max, from: begin from: repeat from: test.in= tincr=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:15:22),= hits: 1, cycles: 56min/56avg/56max, from: begin from: repeat from: test.in= tincr=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:15:22),= hits: 1, cycles: 55min/55avg/55max, from: begin from: repeat from: test.in= tincr=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:15:22),= hits: 1, cycles: 57min/57avg/57max, from: begin from: repeat from: test.in= tincr=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:15:22),= hits: 1, cycles: 56min/56avg/56max, from: begin from: repeat from: test.in= tincr=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:15:22),= hits: 1, cycles: 57min/57avg/57max, from: begin from: repeat from: test.in= tincr=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:15:22),= hits: 1, cycles: 56min/56avg/56max, from: begin from: repeat from: test.in= tincr=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:15:22),= hits: 1, cycles: 54min/54avg/54max, from: begin from: repeat from: test.in= tincr=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:15:22),= hits: 1, cycles: 56min/56avg/56max, from: begin from: repeat from: test.in= tincr=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:15:22),= hits: 1, cycles: 57min/57avg/57max, from: begin from: repeat from: test.in= tincr=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:15:22),= hits: 1, cycles: 55min/55avg/55max, from: begin from: repeat from: test.in= tincr=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:15:22),= hits: 1, cycles: 56min/56avg/56max, from: begin from: repeat from: test.in= tincr=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:15:22),= hits: 1, cycles: 54min/54avg/54max, from: begin from: repeat from: test.in= tincr=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:15:22),= hits: 1, cycles: 57min/57avg/57max, from: begin from: repeat from: test.in= tincr=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:15:22),= hits: 1, cycles: 54min/54avg/54max, from: begin from: repeat from: test.in= tincr=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:15:22),= hits: 1, cycles: 55min/55avg/55max, from: begin from: repeat from: test.in= tincr=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:15:22),= hits: 1, cycles: 57min/57avg/57max, from: begin from: repeat from: test.in= tincr=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:15:22),= hits: 1, cycles: 55min/55avg/55max, from: begin from: repeat from: test.in= tincr=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:15:22),= hits: 1, cycles: 76min/76avg/76max, from: begin from: repeat from: test.in= tincr=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:15:22),= hits: 1, cycles: 57min/57avg/57max, from: begin from: repeat from: test.in= tincr=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:15:22),= hits: 1, cycles: 55min/55avg/55max, from: begin from: repeat from: test.in= tincr=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:15:22),= hits: 1, cycles: 57min/57avg/57max, from: begin from: repeat from: test.in= tincr=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:16:23),= hits: 1, cycles: 62min/62avg/62max, from: begin from: repeat from: test.gi= ntincr=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:16:23),= hits: 1, cycles: 55min/55avg/55max, from: begin from: repeat from: test.gi= ntincr=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:16:23),= hits: 1, cycles: 55min/55avg/55max, from: begin from: repeat from: test.gi= ntincr=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:16:23),= hits: 1, cycles: 56min/56avg/56max, from: begin from: repeat from: test.gi= ntincr=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:16:23),= hits: 1, cycles: 56min/56avg/56max, from: begin from: repeat from: test.gi= ntincr=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:16:23),= hits: 1, cycles: 56min/56avg/56max, from: begin from: repeat from: test.gi= ntincr=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:16:23),= hits: 1, cycles: 54min/54avg/54max, from: begin from: repeat from: test.gi= ntincr=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:16:23),= hits: 1, cycles: 57min/57avg/57max, from: begin from: repeat from: test.gi= ntincr=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:16:23),= hits: 1, cycles: 55min/55avg/55max, from: begin from: repeat from: test.gi= ntincr=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:16:23),= hits: 1, cycles: 54min/54avg/54max, from: begin from: repeat from: test.gi= ntincr=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:16:23),= hits: 1, cycles: 55min/55avg/55max, from: begin from: repeat from: test.gi= ntincr=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:16:23),= hits: 1, cycles: 56min/56avg/56max, from: begin from: repeat from: test.gi= ntincr=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:16:23),= hits: 1, cycles: 56min/56avg/56max, from: begin from: repeat from: test.gi= ntincr=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:16:23),= hits: 1, cycles: 55min/55avg/55max, from: begin from: repeat from: test.gi= ntincr=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:16:23),= hits: 1, cycles: 54min/54avg/54max, from: begin from: repeat from: test.gi= ntincr=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:16:23),= hits: 1, cycles: 55min/55avg/55max, from: begin from: repeat from: test.gi= ntincr=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:16:23),= hits: 1, cycles: 54min/54avg/54max, from: begin from: repeat from: test.gi= ntincr=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:16:23),= hits: 1, cycles: 56min/56avg/56max, from: begin from: repeat from: test.gi= ntincr=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:16:23),= hits: 1, cycles: 62min/62avg/62max, from: begin from: repeat from: test.gi= ntincr=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:16:23),= hits: 1, cycles: 57min/57avg/57max, from: begin from: repeat from: test.gi= ntincr=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:16:23),= hits: 1, cycles: 57min/57avg/57max, from: begin from: repeat from: test.gi= ntincr=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:16:23),= hits: 1, cycles: 57min/57avg/57max, from: begin from: repeat from: test.gi= ntincr=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:16:23),= hits: 1, cycles: 55min/55avg/55max, from: begin from: repeat from: test.gi= ntincr=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:16:23),= hits: 1, cycles: 55min/55avg/55max, from: begin from: repeat from: test.gi= ntincr=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:16:23),= hits: 1, cycles: 57min/57avg/57max, from: begin from: repeat from: test.gi= ntincr=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:16:23),= hits: 1, cycles: 55min/55avg/55max, from: begin from: repeat from: test.gi= ntincr=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:16:23),= hits: 1, cycles: 54min/54avg/54max, from: begin from: repeat from: test.gi= ntincr=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:16:23),= hits: 1, cycles: 57min/57avg/57max, from: begin from: repeat from: test.gi= ntincr=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:16:23),= hits: 1, cycles: 58min/58avg/58max, from: begin from: repeat from: test.gi= ntincr=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:16:23),= hits: 1, cycles: 57min/57avg/57max, from: begin from: repeat from: test.gi= ntincr=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:16:23),= hits: 1, cycles: 55min/55avg/55max, from: begin from: repeat from: test.gi= ntincr=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:16:23),= hits: 1, cycles: 54min/54avg/54max, from: begin from: repeat from: test.gi= ntincr=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:16:23),= hits: 1, cycles: 54min/54avg/54max, from: begin from: repeat from: test.gi= ntincr=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:16:23),= hits: 1, cycles: 57min/57avg/57max, from: begin from: repeat from: test.gi= ntincr=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:16:23),= hits: 1, cycles: 58min/58avg/58max, from: begin from: repeat from: test.gi= ntincr=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:16:23),= hits: 1, cycles: 57min/57avg/57max, from: begin from: repeat from: test.gi= ntincr=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:16:23),= hits: 1, cycles: 57min/57avg/57max, from: begin from: repeat from: test.gi= ntincr=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:16:23),= hits: 1, cycles: 56min/56avg/56max, from: begin from: repeat from: test.gi= ntincr=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:16:23),= hits: 1, cycles: 55min/55avg/55max, from: begin from: repeat from: test.gi= ntincr=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:16:23),= hits: 1, cycles: 54min/54avg/54max, from: begin from: repeat from: test.gi= ntincr=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:18:23),= hits: 1, cycles: 62min/62avg/62max, from: begin from: repeat from: test.st= rassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:18:23),= hits: 1, cycles: 63min/63avg/63max, from: begin from: repeat from: test.st= rassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:18:23),= hits: 1, cycles: 62min/62avg/62max, from: begin from: repeat from: test.st= rassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:18:23),= hits: 1, cycles: 62min/62avg/62max, from: begin from: repeat from: test.st= rassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:18:23),= hits: 1, cycles: 62min/62avg/62max, from: begin from: repeat from: test.st= rassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:18:23),= hits: 1, cycles: 63min/63avg/63max, from: begin from: repeat from: test.st= rassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:18:23),= hits: 1, cycles: 63min/63avg/63max, from: begin from: repeat from: test.st= rassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:18:23),= hits: 1, cycles: 64min/64avg/64max, from: begin from: repeat from: test.st= rassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:18:23),= hits: 1, cycles: 63min/63avg/63max, from: begin from: repeat from: test.st= rassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:18:23),= hits: 1, cycles: 62min/62avg/62max, from: begin from: repeat from: test.st= rassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:18:23),= hits: 1, cycles: 62min/62avg/62max, from: begin from: repeat from: test.st= rassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:18:23),= hits: 1, cycles: 63min/63avg/63max, from: begin from: repeat from: test.st= rassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:18:23),= hits: 1, cycles: 63min/63avg/63max, from: begin from: repeat from: test.st= rassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:18:23),= hits: 1, cycles: 64min/64avg/64max, from: begin from: repeat from: test.st= rassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:18:23),= hits: 1, cycles: 62min/62avg/62max, from: begin from: repeat from: test.st= rassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:18:23),= hits: 1, cycles: 62min/62avg/62max, from: begin from: repeat from: test.st= rassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:18:23),= hits: 1, cycles: 63min/63avg/63max, from: begin from: repeat from: test.st= rassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:18:23),= hits: 1, cycles: 62min/62avg/62max, from: begin from: repeat from: test.st= rassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:18:23),= hits: 1, cycles: 62min/62avg/62max, from: begin from: repeat from: test.st= rassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:18:23),= hits: 1, cycles: 62min/62avg/62max, from: begin from: repeat from: test.st= rassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:18:23),= hits: 1, cycles: 63min/63avg/63max, from: begin from: repeat from: test.st= rassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:18:23),= hits: 1, cycles: 63min/63avg/63max, from: begin from: repeat from: test.st= rassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:18:23),= hits: 1, cycles: 63min/63avg/63max, from: begin from: repeat from: test.st= rassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:18:23),= hits: 1, cycles: 62min/62avg/62max, from: begin from: repeat from: test.st= rassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:18:23),= hits: 1, cycles: 62min/62avg/62max, from: begin from: repeat from: test.st= rassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:18:23),= hits: 1, cycles: 63min/63avg/63max, from: begin from: repeat from: test.st= rassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:18:23),= hits: 1, cycles: 63min/63avg/63max, from: begin from: repeat from: test.st= rassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:18:23),= hits: 1, cycles: 62min/62avg/62max, from: begin from: repeat from: test.st= rassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:18:23),= hits: 1, cycles: 62min/62avg/62max, from: begin from: repeat from: test.st= rassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:18:23),= hits: 1, cycles: 62min/62avg/62max, from: begin from: repeat from: test.st= rassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:18:23),= hits: 1, cycles: 124min/124avg/124max, from: begin from: repeat from: test= .strassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:18:23),= hits: 1, cycles: 77min/77avg/77max, from: begin from: repeat from: test.st= rassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:18:23),= hits: 1, cycles: 62min/62avg/62max, from: begin from: repeat from: test.st= rassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:18:23),= hits: 1, cycles: 63min/63avg/63max, from: begin from: repeat from: test.st= rassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:18:23),= hits: 1, cycles: 62min/62avg/62max, from: begin from: repeat from: test.st= rassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:18:23),= hits: 1, cycles: 63min/63avg/63max, from: begin from: repeat from: test.st= rassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:18:23),= hits: 1, cycles: 62min/62avg/62max, from: begin from: repeat from: test.st= rassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:18:23),= hits: 1, cycles: 63min/63avg/63max, from: begin from: repeat from: test.st= rassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:18:23),= hits: 1, cycles: 62min/62avg/62max, from: begin from: repeat from: test.st= rassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:18:23),= hits: 1, cycles: 62min/62avg/62max, from: begin from: repeat from: test.st= rassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:19:24),= hits: 1, cycles: 63min/63avg/63max, from: begin from: repeat from: test.gs= trassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:19:24),= hits: 1, cycles: 62min/62avg/62max, from: begin from: repeat from: test.gs= trassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:19:24),= hits: 1, cycles: 62min/62avg/62max, from: begin from: repeat from: test.gs= trassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:19:24),= hits: 1, cycles: 63min/63avg/63max, from: begin from: repeat from: test.gs= trassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:19:24),= hits: 1, cycles: 63min/63avg/63max, from: begin from: repeat from: test.gs= trassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:19:24),= hits: 1, cycles: 62min/62avg/62max, from: begin from: repeat from: test.gs= trassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:19:24),= hits: 1, cycles: 64min/64avg/64max, from: begin from: repeat from: test.gs= trassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:19:24),= hits: 1, cycles: 63min/63avg/63max, from: begin from: repeat from: test.gs= trassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:19:24),= hits: 1, cycles: 63min/63avg/63max, from: begin from: repeat from: test.gs= trassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:19:24),= hits: 1, cycles: 62min/62avg/62max, from: begin from: repeat from: test.gs= trassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:19:24),= hits: 1, cycles: 62min/62avg/62max, from: begin from: repeat from: test.gs= trassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:19:24),= hits: 1, cycles: 63min/63avg/63max, from: begin from: repeat from: test.gs= trassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:19:24),= hits: 1, cycles: 63min/63avg/63max, from: begin from: repeat from: test.gs= trassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:19:24),= hits: 1, cycles: 63min/63avg/63max, from: begin from: repeat from: test.gs= trassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:19:24),= hits: 1, cycles: 62min/62avg/62max, from: begin from: repeat from: test.gs= trassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:19:24),= hits: 1, cycles: 62min/62avg/62max, from: begin from: repeat from: test.gs= trassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:19:24),= hits: 1, cycles: 63min/63avg/63max, from: begin from: repeat from: test.gs= trassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:19:24),= hits: 1, cycles: 63min/63avg/63max, from: begin from: repeat from: test.gs= trassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:19:24),= hits: 1, cycles: 64min/64avg/64max, from: begin from: repeat from: test.gs= trassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:19:24),= hits: 1, cycles: 70min/70avg/70max, from: begin from: repeat from: test.gs= trassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:19:24),= hits: 1, cycles: 63min/63avg/63max, from: begin from: repeat from: test.gs= trassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:19:24),= hits: 1, cycles: 64min/64avg/64max, from: begin from: repeat from: test.gs= trassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:19:24),= hits: 1, cycles: 63min/63avg/63max, from: begin from: repeat from: test.gs= trassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:19:24),= hits: 1, cycles: 62min/62avg/62max, from: begin from: repeat from: test.gs= trassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:19:24),= hits: 1, cycles: 63min/63avg/63max, from: begin from: repeat from: test.gs= trassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:19:24),= hits: 1, cycles: 62min/62avg/62max, from: begin from: repeat from: test.gs= trassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:19:24),= hits: 1, cycles: 63min/63avg/63max, from: begin from: repeat from: test.gs= trassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:19:24),= hits: 1, cycles: 64min/64avg/64max, from: begin from: repeat from: test.gs= trassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:19:24),= hits: 1, cycles: 63min/63avg/63max, from: begin from: repeat from: test.gs= trassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:19:24),= hits: 1, cycles: 64min/64avg/64max, from: begin from: repeat from: test.gs= trassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:19:24),= hits: 1, cycles: 62min/62avg/62max, from: begin from: repeat from: test.gs= trassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:19:24),= hits: 1, cycles: 63min/63avg/63max, from: begin from: repeat from: test.gs= trassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:19:24),= hits: 1, cycles: 62min/62avg/62max, from: begin from: repeat from: test.gs= trassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:19:24),= hits: 1, cycles: 63min/63avg/63max, from: begin from: repeat from: test.gs= trassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:19:24),= hits: 1, cycles: 63min/63avg/63max, from: begin from: repeat from: test.gs= trassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:19:24),= hits: 1, cycles: 62min/62avg/62max, from: begin from: repeat from: test.gs= trassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:19:24),= hits: 1, cycles: 62min/62avg/62max, from: begin from: repeat from: test.gs= trassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:19:24),= hits: 1, cycles: 62min/62avg/62max, from: begin from: repeat from: test.gs= trassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:19:24),= hits: 1, cycles: 63min/63avg/63max, from: begin from: repeat from: test.gs= trassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:19:24),= hits: 1, cycles: 63min/63avg/63max, from: begin from: repeat from: test.gs= trassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:21:22),= hits: 1, cycles: 84min/84avg/84max, from: begin from: repeat from: test.fo= rloop=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:21:22),= hits: 1, cycles: 83min/83avg/83max, from: begin from: repeat from: test.fo= rloop=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:21:22),= hits: 1, cycles: 84min/84avg/84max, from: begin from: repeat from: test.fo= rloop=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:21:22),= hits: 1, cycles: 90min/90avg/90max, from: begin from: repeat from: test.fo= rloop=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:21:22),= hits: 1, cycles: 84min/84avg/84max, from: begin from: repeat from: test.fo= rloop=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:21:22),= hits: 1, cycles: 84min/84avg/84max, from: begin from: repeat from: test.fo= rloop=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:21:22),= hits: 1, cycles: 84min/84avg/84max, from: begin from: repeat from: test.fo= rloop=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:21:22),= hits: 1, cycles: 84min/84avg/84max, from: begin from: repeat from: test.fo= rloop=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:21:22),= hits: 1, cycles: 84min/84avg/84max, from: begin from: repeat from: test.fo= rloop=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:21:22),= hits: 1, cycles: 90min/90avg/90max, from: begin from: repeat from: test.fo= rloop=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:21:22),= hits: 1, cycles: 84min/84avg/84max, from: begin from: repeat from: test.fo= rloop=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:21:22),= hits: 1, cycles: 84min/84avg/84max, from: begin from: repeat from: test.fo= rloop=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:21:22),= hits: 1, cycles: 84min/84avg/84max, from: begin from: repeat from: test.fo= rloop=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:21:22),= hits: 1, cycles: 84min/84avg/84max, from: begin from: repeat from: test.fo= rloop=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:21:22),= hits: 1, cycles: 84min/84avg/84max, from: begin from: repeat from: test.fo= rloop=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:21:22),= hits: 1, cycles: 84min/84avg/84max, from: begin from: repeat from: test.fo= rloop=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:21:22),= hits: 1, cycles: 81min/81avg/81max, from: begin from: repeat from: test.fo= rloop=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:21:22),= hits: 1, cycles: 84min/84avg/84max, from: begin from: repeat from: test.fo= rloop=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:21:22),= hits: 1, cycles: 84min/84avg/84max, from: begin from: repeat from: test.fo= rloop=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:21:22),= hits: 1, cycles: 82min/82avg/82max, from: begin from: repeat from: test.fo= rloop=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:21:22),= hits: 1, cycles: 104min/104avg/104max, from: begin from: repeat from: test= .forloop=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:21:22),= hits: 1, cycles: 84min/84avg/84max, from: begin from: repeat from: test.fo= rloop=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:21:22),= hits: 1, cycles: 84min/84avg/84max, from: begin from: repeat from: test.fo= rloop=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:21:22),= hits: 1, cycles: 81min/81avg/81max, from: begin from: repeat from: test.fo= rloop=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:21:22),= hits: 1, cycles: 84min/84avg/84max, from: begin from: repeat from: test.fo= rloop=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:21:22),= hits: 1, cycles: 84min/84avg/84max, from: begin from: repeat from: test.fo= rloop=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:21:22),= hits: 1, cycles: 84min/84avg/84max, from: begin from: repeat from: test.fo= rloop=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:21:22),= hits: 1, cycles: 84min/84avg/84max, from: begin from: repeat from: test.fo= rloop=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:21:22),= hits: 1, cycles: 84min/84avg/84max, from: begin from: repeat from: test.fo= rloop=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:21:22),= hits: 1, cycles: 82min/82avg/82max, from: begin from: repeat from: test.fo= rloop=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:21:22),= hits: 1, cycles: 82min/82avg/82max, from: begin from: repeat from: test.fo= rloop=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:21:22),= hits: 1, cycles: 84min/84avg/84max, from: begin from: repeat from: test.fo= rloop=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:21:22),= hits: 1, cycles: 84min/84avg/84max, from: begin from: repeat from: test.fo= rloop=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:21:22),= hits: 1, cycles: 82min/82avg/82max, from: begin from: repeat from: test.fo= rloop=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:21:22),= hits: 1, cycles: 84min/84avg/84max, from: begin from: repeat from: test.fo= rloop=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:21:22),= hits: 1, cycles: 83min/83avg/83max, from: begin from: repeat from: test.fo= rloop=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:21:22),= hits: 1, cycles: 90min/90avg/90max, from: begin from: repeat from: test.fo= rloop=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:21:22),= hits: 1, cycles: 82min/82avg/82max, from: begin from: repeat from: test.fo= rloop=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:21:22),= hits: 1, cycles: 84min/84avg/84max, from: begin from: repeat from: test.fo= rloop=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:21:22),= hits: 1, cycles: 84min/84avg/84max, from: begin from: repeat from: test.fo= rloop=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:22:21),= hits: 1, cycles: 57min/57avg/57max, from: begin from: repeat from: test.if= gint=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:22:21),= hits: 1, cycles: 57min/57avg/57max, from: begin from: repeat from: test.if= gint=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:22:21),= hits: 1, cycles: 57min/57avg/57max, from: begin from: repeat from: test.if= gint=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:22:21),= hits: 1, cycles: 54min/54avg/54max, from: begin from: repeat from: test.if= gint=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:22:21),= hits: 1, cycles: 54min/54avg/54max, from: begin from: repeat from: test.if= gint=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:22:21),= hits: 1, cycles: 55min/55avg/55max, from: begin from: repeat from: test.if= gint=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:22:21),= hits: 1, cycles: 57min/57avg/57max, from: begin from: repeat from: test.if= gint=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:22:21),= hits: 1, cycles: 58min/58avg/58max, from: begin from: repeat from: test.if= gint=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:22:21),= hits: 1, cycles: 54min/54avg/54max, from: begin from: repeat from: test.if= gint=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:22:21),= hits: 1, cycles: 54min/54avg/54max, from: begin from: repeat from: test.if= gint=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:22:21),= hits: 1, cycles: 55min/55avg/55max, from: begin from: repeat from: test.if= gint=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:22:21),= hits: 1, cycles: 57min/57avg/57max, from: begin from: repeat from: test.if= gint=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:22:21),= hits: 1, cycles: 56min/56avg/56max, from: begin from: repeat from: test.if= gint=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:22:21),= hits: 1, cycles: 57min/57avg/57max, from: begin from: repeat from: test.if= gint=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:22:21),= hits: 1, cycles: 56min/56avg/56max, from: begin from: repeat from: test.if= gint=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:22:21),= hits: 1, cycles: 55min/55avg/55max, from: begin from: repeat from: test.if= gint=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:22:21),= hits: 1, cycles: 68min/68avg/68max, from: begin from: repeat from: test.if= gint=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:22:21),= hits: 1, cycles: 57min/57avg/57max, from: begin from: repeat from: test.if= gint=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:22:21),= hits: 1, cycles: 57min/57avg/57max, from: begin from: repeat from: test.if= gint=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:22:21),= hits: 1, cycles: 55min/55avg/55max, from: begin from: repeat from: test.if= gint=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:22:21),= hits: 1, cycles: 55min/55avg/55max, from: begin from: repeat from: test.if= gint=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:22:21),= hits: 1, cycles: 55min/55avg/55max, from: begin from: repeat from: test.if= gint=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:22:21),= hits: 1, cycles: 56min/56avg/56max, from: begin from: repeat from: test.if= gint=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:22:21),= hits: 1, cycles: 57min/57avg/57max, from: begin from: repeat from: test.if= gint=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:22:21),= hits: 1, cycles: 55min/55avg/55max, from: begin from: repeat from: test.if= gint=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:22:21),= hits: 1, cycles: 57min/57avg/57max, from: begin from: repeat from: test.if= gint=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:22:21),= hits: 1, cycles: 57min/57avg/57max, from: begin from: repeat from: test.if= gint=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:22:21),= hits: 1, cycles: 54min/54avg/54max, from: begin from: repeat from: test.if= gint=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:22:21),= hits: 1, cycles: 54min/54avg/54max, from: begin from: repeat from: test.if= gint=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:22:21),= hits: 1, cycles: 55min/55avg/55max, from: begin from: repeat from: test.if= gint=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:22:21),= hits: 1, cycles: 57min/57avg/57max, from: begin from: repeat from: test.if= gint=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:22:21),= hits: 1, cycles: 57min/57avg/57max, from: begin from: repeat from: test.if= gint=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:22:21),= hits: 1, cycles: 63min/63avg/63max, from: begin from: repeat from: test.if= gint=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:22:21),= hits: 1, cycles: 62min/62avg/62max, from: begin from: repeat from: test.if= gint=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:22:21),= hits: 1, cycles: 55min/55avg/55max, from: begin from: repeat from: test.if= gint=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:22:21),= hits: 1, cycles: 57min/57avg/57max, from: begin from: repeat from: test.if= gint=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:22:21),= hits: 1, cycles: 56min/56avg/56max, from: begin from: repeat from: test.if= gint=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:22:21),= hits: 1, cycles: 55min/55avg/55max, from: begin from: repeat from: test.if= gint=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:22:21),= hits: 1, cycles: 55min/55avg/55max, from: begin from: repeat from: test.if= gint=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:22:21),= hits: 1, cycles: 55min/55avg/55max, from: begin from: repeat from: test.if= gint=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:23:19),= hits: 1, cycles: 56min/56avg/56max, from: begin from: repeat from: test.ne= xt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:23:19),= hits: 1, cycles: 56min/56avg/56max, from: begin from: repeat from: test.ne= xt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:23:19),= hits: 1, cycles: 55min/55avg/55max, from: begin from: repeat from: test.ne= xt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:23:19),= hits: 1, cycles: 57min/57avg/57max, from: begin from: repeat from: test.ne= xt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:23:19),= hits: 1, cycles: 57min/57avg/57max, from: begin from: repeat from: test.ne= xt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:23:19),= hits: 1, cycles: 55min/55avg/55max, from: begin from: repeat from: test.ne= xt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:23:19),= hits: 1, cycles: 54min/54avg/54max, from: begin from: repeat from: test.ne= xt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:23:19),= hits: 1, cycles: 55min/55avg/55max, from: begin from: repeat from: test.ne= xt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:23:19),= hits: 1, cycles: 57min/57avg/57max, from: begin from: repeat from: test.ne= xt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:23:19),= hits: 1, cycles: 57min/57avg/57max, from: begin from: repeat from: test.ne= xt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:23:19),= hits: 1, cycles: 116min/116avg/116max, from: begin from: repeat from: test= .next=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:23:19),= hits: 1, cycles: 62min/62avg/62max, from: begin from: repeat from: test.ne= xt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:23:19),= hits: 1, cycles: 57min/57avg/57max, from: begin from: repeat from: test.ne= xt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:23:19),= hits: 1, cycles: 57min/57avg/57max, from: begin from: repeat from: test.ne= xt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:23:19),= hits: 1, cycles: 57min/57avg/57max, from: begin from: repeat from: test.ne= xt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:23:19),= hits: 1, cycles: 57min/57avg/57max, from: begin from: repeat from: test.ne= xt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:23:19),= hits: 1, cycles: 62min/62avg/62max, from: begin from: repeat from: test.ne= xt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:23:19),= hits: 1, cycles: 55min/55avg/55max, from: begin from: repeat from: test.ne= xt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:23:19),= hits: 1, cycles: 57min/57avg/57max, from: begin from: repeat from: test.ne= xt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:23:19),= hits: 1, cycles: 55min/55avg/55max, from: begin from: repeat from: test.ne= xt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:23:19),= hits: 1, cycles: 57min/57avg/57max, from: begin from: repeat from: test.ne= xt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:23:19),= hits: 1, cycles: 57min/57avg/57max, from: begin from: repeat from: test.ne= xt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:23:19),= hits: 1, cycles: 62min/62avg/62max, from: begin from: repeat from: test.ne= xt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:23:19),= hits: 1, cycles: 62min/62avg/62max, from: begin from: repeat from: test.ne= xt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:23:19),= hits: 1, cycles: 63min/63avg/63max, from: begin from: repeat from: test.ne= xt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:23:19),= hits: 1, cycles: 56min/56avg/56max, from: begin from: repeat from: test.ne= xt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:23:19),= hits: 1, cycles: 56min/56avg/56max, from: begin from: repeat from: test.ne= xt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:23:19),= hits: 1, cycles: 57min/57avg/57max, from: begin from: repeat from: test.ne= xt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:23:19),= hits: 1, cycles: 56min/56avg/56max, from: begin from: repeat from: test.ne= xt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:23:19),= hits: 1, cycles: 63min/63avg/63max, from: begin from: repeat from: test.ne= xt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:23:19),= hits: 1, cycles: 57min/57avg/57max, from: begin from: repeat from: test.ne= xt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:23:19),= hits: 1, cycles: 56min/56avg/56max, from: begin from: repeat from: test.ne= xt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:23:19),= hits: 1, cycles: 54min/54avg/54max, from: begin from: repeat from: test.ne= xt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:23:19),= hits: 1, cycles: 56min/56avg/56max, from: begin from: repeat from: test.ne= xt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:23:19),= hits: 1, cycles: 63min/63avg/63max, from: begin from: repeat from: test.ne= xt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:23:19),= hits: 1, cycles: 57min/57avg/57max, from: begin from: repeat from: test.ne= xt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:23:19),= hits: 1, cycles: 57min/57avg/57max, from: begin from: repeat from: test.ne= xt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:23:19),= hits: 1, cycles: 63min/63avg/63max, from: begin from: repeat from: test.ne= xt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:23:19),= hits: 1, cycles: 55min/55avg/55max, from: begin from: repeat from: test.ne= xt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:23:19),= hits: 1, cycles: 56min/56avg/56max, from: begin from: repeat from: test.ne= xt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:25:24),= hits: 1, cycles: 57min/57avg/57max, from: begin from: repeat from: test.st= ataccum=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:25:24),= hits: 1, cycles: 57min/57avg/57max, from: begin from: repeat from: test.st= ataccum=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:25:24),= hits: 1, cycles: 56min/56avg/56max, from: begin from: repeat from: test.st= ataccum=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:25:24),= hits: 1, cycles: 63min/63avg/63max, from: begin from: repeat from: test.st= ataccum=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:25:24),= hits: 1, cycles: 64min/64avg/64max, from: begin from: repeat from: test.st= ataccum=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:25:24),= hits: 1, cycles: 89min/89avg/89max, from: begin from: repeat from: test.st= ataccum=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:25:24),= hits: 1, cycles: 64min/64avg/64max, from: begin from: repeat from: test.st= ataccum=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:25:24),= hits: 1, cycles: 62min/62avg/62max, from: begin from: repeat from: test.st= ataccum=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:25:24),= hits: 1, cycles: 63min/63avg/63max, from: begin from: repeat from: test.st= ataccum=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:25:24),= hits: 1, cycles: 63min/63avg/63max, from: begin from: repeat from: test.st= ataccum=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:25:24),= hits: 1, cycles: 55min/55avg/55max, from: begin from: repeat from: test.st= ataccum=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:25:24),= hits: 1, cycles: 63min/63avg/63max, from: begin from: repeat from: test.st= ataccum=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:25:24),= hits: 1, cycles: 57min/57avg/57max, from: begin from: repeat from: test.st= ataccum=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:25:24),= hits: 1, cycles: 63min/63avg/63max, from: begin from: repeat from: test.st= ataccum=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:25:24),= hits: 1, cycles: 63min/63avg/63max, from: begin from: repeat from: test.st= ataccum=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:25:24),= hits: 1, cycles: 62min/62avg/62max, from: begin from: repeat from: test.st= ataccum=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:25:24),= hits: 1, cycles: 64min/64avg/64max, from: begin from: repeat from: test.st= ataccum=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:25:24),= hits: 1, cycles: 62min/62avg/62max, from: begin from: repeat from: test.st= ataccum=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:25:24),= hits: 1, cycles: 63min/63avg/63max, from: begin from: repeat from: test.st= ataccum=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:25:24),= hits: 1, cycles: 63min/63avg/63max, from: begin from: repeat from: test.st= ataccum=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:25:24),= hits: 1, cycles: 62min/62avg/62max, from: begin from: repeat from: test.st= ataccum=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:25:24),= hits: 1, cycles: 57min/57avg/57max, from: begin from: repeat from: test.st= ataccum=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:25:24),= hits: 1, cycles: 64min/64avg/64max, from: begin from: repeat from: test.st= ataccum=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:25:24),= hits: 1, cycles: 62min/62avg/62max, from: begin from: repeat from: test.st= ataccum=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:25:24),= hits: 1, cycles: 64min/64avg/64max, from: begin from: repeat from: test.st= ataccum=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:25:24),= hits: 1, cycles: 62min/62avg/62max, from: begin from: repeat from: test.st= ataccum=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:25:24),= hits: 1, cycles: 63min/63avg/63max, from: begin from: repeat from: test.st= ataccum=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:25:24),= hits: 1, cycles: 62min/62avg/62max, from: begin from: repeat from: test.st= ataccum=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:25:24),= hits: 1, cycles: 54min/54avg/54max, from: begin from: repeat from: test.st= ataccum=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:25:24),= hits: 1, cycles: 63min/63avg/63max, from: begin from: repeat from: test.st= ataccum=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:25:24),= hits: 1, cycles: 62min/62avg/62max, from: begin from: repeat from: test.st= ataccum=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:25:24),= hits: 1, cycles: 62min/62avg/62max, from: begin from: repeat from: test.st= ataccum=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:25:24),= hits: 1, cycles: 62min/62avg/62max, from: begin from: repeat from: test.st= ataccum=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:25:24),= hits: 1, cycles: 63min/63avg/63max, from: begin from: repeat from: test.st= ataccum=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:25:24),= hits: 1, cycles: 57min/57avg/57max, from: begin from: repeat from: test.st= ataccum=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:25:24),= hits: 1, cycles: 63min/63avg/63max, from: begin from: repeat from: test.st= ataccum=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:25:24),= hits: 1, cycles: 62min/62avg/62max, from: begin from: repeat from: test.st= ataccum=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:25:24),= hits: 1, cycles: 62min/62avg/62max, from: begin from: repeat from: test.st= ataccum=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:25:24),= hits: 1, cycles: 54min/54avg/54max, from: begin from: repeat from: test.st= ataccum=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:25:24),= hits: 1, cycles: 62min/62avg/62max, from: begin from: repeat from: test.st= ataccum=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:26:24),= hits: 1, cycles: 223min/223avg/223max, from: begin from: repeat from: test= .statcount=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:26:24),= hits: 1, cycles: 117min/117avg/117max, from: begin from: repeat from: test= .statcount=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:26:24),= hits: 1, cycles: 111min/111avg/111max, from: begin from: repeat from: test= .statcount=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:26:24),= hits: 1, cycles: 112min/112avg/112max, from: begin from: repeat from: test= .statcount=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:26:24),= hits: 1, cycles: 112min/112avg/112max, from: begin from: repeat from: test= .statcount=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:26:24),= hits: 1, cycles: 112min/112avg/112max, from: begin from: repeat from: test= .statcount=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:26:24),= hits: 1, cycles: 111min/111avg/111max, from: begin from: repeat from: test= .statcount=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:26:24),= hits: 1, cycles: 112min/112avg/112max, from: begin from: repeat from: test= .statcount=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:26:24),= hits: 1, cycles: 112min/112avg/112max, from: begin from: repeat from: test= .statcount=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:26:24),= hits: 1, cycles: 111min/111avg/111max, from: begin from: repeat from: test= .statcount=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:26:24),= hits: 1, cycles: 112min/112avg/112max, from: begin from: repeat from: test= .statcount=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:26:24),= hits: 1, cycles: 111min/111avg/111max, from: begin from: repeat from: test= .statcount=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:26:24),= hits: 1, cycles: 111min/111avg/111max, from: begin from: repeat from: test= .statcount=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:26:24),= hits: 1, cycles: 112min/112avg/112max, from: begin from: repeat from: test= .statcount=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:26:24),= hits: 1, cycles: 111min/111avg/111max, from: begin from: repeat from: test= .statcount=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:26:24),= hits: 1, cycles: 111min/111avg/111max, from: begin from: repeat from: test= .statcount=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:26:24),= hits: 1, cycles: 111min/111avg/111max, from: begin from: repeat from: test= .statcount=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:26:24),= hits: 1, cycles: 111min/111avg/111max, from: begin from: repeat from: test= .statcount=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:26:24),= hits: 1, cycles: 112min/112avg/112max, from: begin from: repeat from: test= .statcount=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:26:24),= hits: 1, cycles: 112min/112avg/112max, from: begin from: repeat from: test= .statcount=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:26:24),= hits: 1, cycles: 111min/111avg/111max, from: begin from: repeat from: test= .statcount=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:26:24),= hits: 1, cycles: 111min/111avg/111max, from: begin from: repeat from: test= .statcount=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:26:24),= hits: 1, cycles: 111min/111avg/111max, from: begin from: repeat from: test= .statcount=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:26:24),= hits: 1, cycles: 112min/112avg/112max, from: begin from: repeat from: test= .statcount=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:26:24),= hits: 1, cycles: 112min/112avg/112max, from: begin from: repeat from: test= .statcount=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:26:24),= hits: 1, cycles: 111min/111avg/111max, from: begin from: repeat from: test= .statcount=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:26:24),= hits: 1, cycles: 111min/111avg/111max, from: begin from: repeat from: test= .statcount=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:26:24),= hits: 1, cycles: 111min/111avg/111max, from: begin from: repeat from: test= .statcount=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:26:24),= hits: 1, cycles: 112min/112avg/112max, from: begin from: repeat from: test= .statcount=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:26:24),= hits: 1, cycles: 112min/112avg/112max, from: begin from: repeat from: test= .statcount=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:26:24),= hits: 1, cycles: 112min/112avg/112max, from: begin from: repeat from: test= .statcount=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:26:24),= hits: 1, cycles: 111min/111avg/111max, from: begin from: repeat from: test= .statcount=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:26:24),= hits: 1, cycles: 112min/112avg/112max, from: begin from: repeat from: test= .statcount=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:26:24),= hits: 1, cycles: 112min/112avg/112max, from: begin from: repeat from: test= .statcount=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:26:24),= hits: 1, cycles: 111min/111avg/111max, from: begin from: repeat from: test= .statcount=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:26:24),= hits: 1, cycles: 112min/112avg/112max, from: begin from: repeat from: test= .statcount=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:26:24),= hits: 1, cycles: 147min/147avg/147max, from: begin from: repeat from: test= .statcount=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:26:24),= hits: 1, cycles: 112min/112avg/112max, from: begin from: repeat from: test= .statcount=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:26:24),= hits: 1, cycles: 111min/111avg/111max, from: begin from: repeat from: test= .statcount=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:26:24),= hits: 1, cycles: 112min/112avg/112max, from: begin from: repeat from: test= .statcount=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:28:25),= hits: 1, cycles: 62min/62avg/62max, from: begin from: repeat from: test.nn= arrassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:28:25),= hits: 1, cycles: 54min/54avg/54max, from: begin from: repeat from: test.nn= arrassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:28:25),= hits: 1, cycles: 58min/58avg/58max, from: begin from: repeat from: test.nn= arrassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:28:25),= hits: 1, cycles: 64min/64avg/64max, from: begin from: repeat from: test.nn= arrassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:28:25),= hits: 1, cycles: 63min/63avg/63max, from: begin from: repeat from: test.nn= arrassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:28:25),= hits: 1, cycles: 56min/56avg/56max, from: begin from: repeat from: test.nn= arrassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:28:25),= hits: 1, cycles: 63min/63avg/63max, from: begin from: repeat from: test.nn= arrassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:28:25),= hits: 1, cycles: 55min/55avg/55max, from: begin from: repeat from: test.nn= arrassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:28:25),= hits: 1, cycles: 63min/63avg/63max, from: begin from: repeat from: test.nn= arrassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:28:25),= hits: 1, cycles: 62min/62avg/62max, from: begin from: repeat from: test.nn= arrassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:28:25),= hits: 1, cycles: 54min/54avg/54max, from: begin from: repeat from: test.nn= arrassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:28:25),= hits: 1, cycles: 57min/57avg/57max, from: begin from: repeat from: test.nn= arrassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:28:25),= hits: 1, cycles: 57min/57avg/57max, from: begin from: repeat from: test.nn= arrassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:28:25),= hits: 1, cycles: 62min/62avg/62max, from: begin from: repeat from: test.nn= arrassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:28:25),= hits: 1, cycles: 63min/63avg/63max, from: begin from: repeat from: test.nn= arrassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:28:25),= hits: 1, cycles: 56min/56avg/56max, from: begin from: repeat from: test.nn= arrassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:28:25),= hits: 1, cycles: 62min/62avg/62max, from: begin from: repeat from: test.nn= arrassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:28:25),= hits: 1, cycles: 55min/55avg/55max, from: begin from: repeat from: test.nn= arrassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:28:25),= hits: 1, cycles: 57min/57avg/57max, from: begin from: repeat from: test.nn= arrassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:28:25),= hits: 1, cycles: 62min/62avg/62max, from: begin from: repeat from: test.nn= arrassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:28:25),= hits: 1, cycles: 63min/63avg/63max, from: begin from: repeat from: test.nn= arrassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:28:25),= hits: 1, cycles: 55min/55avg/55max, from: begin from: repeat from: test.nn= arrassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:28:25),= hits: 1, cycles: 64min/64avg/64max, from: begin from: repeat from: test.nn= arrassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:28:25),= hits: 1, cycles: 54min/54avg/54max, from: begin from: repeat from: test.nn= arrassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:28:25),= hits: 1, cycles: 63min/63avg/63max, from: begin from: repeat from: test.nn= arrassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:28:25),= hits: 1, cycles: 63min/63avg/63max, from: begin from: repeat from: test.nn= arrassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:28:25),= hits: 1, cycles: 57min/57avg/57max, from: begin from: repeat from: test.nn= arrassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:28:25),= hits: 1, cycles: 62min/62avg/62max, from: begin from: repeat from: test.nn= arrassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:28:25),= hits: 1, cycles: 64min/64avg/64max, from: begin from: repeat from: test.nn= arrassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:28:25),= hits: 1, cycles: 55min/55avg/55max, from: begin from: repeat from: test.nn= arrassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:28:25),= hits: 1, cycles: 62min/62avg/62max, from: begin from: repeat from: test.nn= arrassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:28:25),= hits: 1, cycles: 118min/118avg/118max, from: begin from: repeat from: test= .nnarrassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:28:25),= hits: 1, cycles: 62min/62avg/62max, from: begin from: repeat from: test.nn= arrassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:28:25),= hits: 1, cycles: 63min/63avg/63max, from: begin from: repeat from: test.nn= arrassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:28:25),= hits: 1, cycles: 57min/57avg/57max, from: begin from: repeat from: test.nn= arrassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:28:25),= hits: 1, cycles: 63min/63avg/63max, from: begin from: repeat from: test.nn= arrassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:28:25),= hits: 1, cycles: 63min/63avg/63max, from: begin from: repeat from: test.nn= arrassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:28:25),= hits: 1, cycles: 62min/62avg/62max, from: begin from: repeat from: test.nn= arrassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:28:25),= hits: 1, cycles: 63min/63avg/63max, from: begin from: repeat from: test.nn= arrassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:28:25),= hits: 1, cycles: 55min/55avg/55max, from: begin from: repeat from: test.nn= arrassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:29:25),= hits: 1, cycles: 252min/252avg/252max, from: begin from: repeat from: test= .ssarrassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:29:25),= hits: 1, cycles: 125min/125avg/125max, from: begin from: repeat from: test= .ssarrassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:29:25),= hits: 1, cycles: 117min/117avg/117max, from: begin from: repeat from: test= .ssarrassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:29:25),= hits: 1, cycles: 120min/120avg/120max, from: begin from: repeat from: test= .ssarrassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:29:25),= hits: 1, cycles: 120min/120avg/120max, from: begin from: repeat from: test= .ssarrassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:29:25),= hits: 1, cycles: 120min/120avg/120max, from: begin from: repeat from: test= .ssarrassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:29:25),= hits: 1, cycles: 120min/120avg/120max, from: begin from: repeat from: test= .ssarrassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:29:25),= hits: 1, cycles: 119min/119avg/119max, from: begin from: repeat from: test= .ssarrassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:29:25),= hits: 1, cycles: 111min/111avg/111max, from: begin from: repeat from: test= .ssarrassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:29:25),= hits: 1, cycles: 117min/117avg/117max, from: begin from: repeat from: test= .ssarrassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:29:25),= hits: 1, cycles: 120min/120avg/120max, from: begin from: repeat from: test= .ssarrassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:29:25),= hits: 1, cycles: 117min/117avg/117max, from: begin from: repeat from: test= .ssarrassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:29:25),= hits: 1, cycles: 117min/117avg/117max, from: begin from: repeat from: test= .ssarrassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:29:25),= hits: 1, cycles: 117min/117avg/117max, from: begin from: repeat from: test= .ssarrassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:29:25),= hits: 1, cycles: 117min/117avg/117max, from: begin from: repeat from: test= .ssarrassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:29:25),= hits: 1, cycles: 117min/117avg/117max, from: begin from: repeat from: test= .ssarrassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:29:25),= hits: 1, cycles: 117min/117avg/117max, from: begin from: repeat from: test= .ssarrassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:29:25),= hits: 1, cycles: 119min/119avg/119max, from: begin from: repeat from: test= .ssarrassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:29:25),= hits: 1, cycles: 119min/119avg/119max, from: begin from: repeat from: test= .ssarrassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:29:25),= hits: 1, cycles: 117min/117avg/117max, from: begin from: repeat from: test= .ssarrassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:29:25),= hits: 1, cycles: 117min/117avg/117max, from: begin from: repeat from: test= .ssarrassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:29:25),= hits: 1, cycles: 117min/117avg/117max, from: begin from: repeat from: test= .ssarrassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:29:25),= hits: 1, cycles: 117min/117avg/117max, from: begin from: repeat from: test= .ssarrassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:29:25),= hits: 1, cycles: 117min/117avg/117max, from: begin from: repeat from: test= .ssarrassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:29:25),= hits: 1, cycles: 111min/111avg/111max, from: begin from: repeat from: test= .ssarrassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:29:25),= hits: 1, cycles: 117min/117avg/117max, from: begin from: repeat from: test= .ssarrassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:29:25),= hits: 1, cycles: 120min/120avg/120max, from: begin from: repeat from: test= .ssarrassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:29:25),= hits: 1, cycles: 120min/120avg/120max, from: begin from: repeat from: test= .ssarrassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:29:25),= hits: 1, cycles: 120min/120avg/120max, from: begin from: repeat from: test= .ssarrassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:29:25),= hits: 1, cycles: 119min/119avg/119max, from: begin from: repeat from: test= .ssarrassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:29:25),= hits: 1, cycles: 120min/120avg/120max, from: begin from: repeat from: test= .ssarrassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:29:25),= hits: 1, cycles: 120min/120avg/120max, from: begin from: repeat from: test= .ssarrassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:29:25),= hits: 1, cycles: 119min/119avg/119max, from: begin from: repeat from: test= .ssarrassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:29:25),= hits: 1, cycles: 117min/117avg/117max, from: begin from: repeat from: test= .ssarrassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:29:25),= hits: 1, cycles: 119min/119avg/119max, from: begin from: repeat from: test= .ssarrassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:29:25),= hits: 1, cycles: 119min/119avg/119max, from: begin from: repeat from: test= .ssarrassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:29:25),= hits: 1, cycles: 120min/120avg/120max, from: begin from: repeat from: test= .ssarrassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:29:25),= hits: 1, cycles: 119min/119avg/119max, from: begin from: repeat from: test= .ssarrassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:29:25),= hits: 1, cycles: 119min/119avg/119max, from: begin from: repeat from: test= .ssarrassmt=0D begin, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:29:25),= hits: 1, cycles: 120min/120avg/120max, from: begin from: repeat from: test= .ssarrassmt=0D begin(9999), (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:3= 1:1), hits: 1, cycles: 79min/79avg/79max, from: begin(9999)=0D end, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:19:81), h= its: 1, cycles: 709min/709avg/709max, from: end=0D end, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:28:86), h= its: 1, cycles: 613min/613avg/613max, from: end=0D end, (/home/prasadkr/systemtap/testsuite/systemtap.base/bench.stp:29:86), h= its: 1, cycles: 516min/516avg/516max, from: end=0D FAIL: bench (1) testcase /home/prasadkr/systemtap/testsuite/systemtap.base/bench.exp comple= ted in 3 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/bitfield.exp ... executing: stap -v -g /home/prasadkr/systemtap/testsuite/systemtap.base/bit= field.stp spawn stap -v -g /home/prasadkr/systemtap/testsuite/systemtap.base/bitfield= .stp=0D Pass 1: parsed user script and 75 library script(s) using 38592virt/30720re= s/7872shr kb, in 240usr/0sys/257real ms.=0D Pass 2: analyzed script: 1 probe(s), 9 function(s), 1 embed(s), 0 global(s)= using 197376virt/149120res/71040shr kb, in 1150usr/10sys/1158real ms.=0D Pass 3: translated to C into "/tmp/stapYyeICS/stap_900ef74a7e93fbb855d61197= a3c25c45_4426.c" using 197376virt/149248res/71168shr kb, in 0usr/0sys/1real= ms.=0D Pass 4: compiled C into "stap_900ef74a7e93fbb855d61197a3c25c45_4426.ko" in = 1870usr/200sys/2185real ms.=0D Pass 5: starting run.=0D systemtap starting probe=0D systemtap ending probe=0D systemtap test success=0D PASS: systemtap.base/bitfield.stp startup PASS: systemtap.base/bitfield.stp load generation PASS: systemtap.base/bitfield.stp shutdown and output Pass 5: run completed in 10usr/30sys/354real ms.=0D metric: systemtap.base/bitfield.stp 240 0 257 1150 10 1158 0 0 1 1870 200 = 2185 10 30 354 testcase /home/prasadkr/systemtap/testsuite/systemtap.base/bitfield.exp com= pleted in 4 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/buildid.exp ... Executing on host: gcc -g -c -o /home/prasadkr/systemtap/testsuite/buildi= d.o /home/prasadkr/systemtap/testsuite/systemtap.base/buildid.c (timeout= =3D 300) spawn -ignore SIGHUP gcc -g -c -o /home/prasadkr/systemtap/testsuite/buildi= d.o /home/prasadkr/systemtap/testsuite/systemtap.base/buildid.c=0D PASS: buildid.o Executing on host: ld buildid.o -r -o buildid.ro (timeout =3D 300) spawn -ignore SIGHUP ld buildid.o -r -o buildid.ro=0D PASS: buildid.ro Executing on host: gcc buildid.ro -lm -o /home/prasadkr/systemtap/test= suite/buildid.x (timeout =3D 300) spawn -ignore SIGHUP gcc buildid.ro -lm -o /home/prasadkr/systemtap/testsui= te/buildid.x=0D PASS: /home/prasadkr/systemtap/testsuite/buildid.x spawn staprun -u /home/prasadkr/systemtap/testsuite/bid.ko -c /home/prasadk= r/systemtap/testsuite/buildid.x=0D x=3D1=0D PASS: nonshared build id ok (1) Executing on host: gcc buildid2.ro -lm -o /home/prasadkr/systemtap/tes= tsuite/buildid.x (timeout =3D 300) spawn -ignore SIGHUP gcc buildid2.ro -lm -o /home/prasadkr/systemtap/testsu= ite/buildid.x=0D PASS: /home/prasadkr/systemtap/testsuite/buildid.x spawn staprun -u /home/prasadkr/systemtap/testsuite/bid.ko -c /home/prasadk= r/systemtap/testsuite/buildid.x=0D ERROR: Build-id mismatch: "buildid.x" vs. "buildid.x" byte 0 (0x7c vs 0xf6)= rc 0 0=0D PASS: nonshared build id !ok (1) Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.base/bu= ildid.c -DNO_MAIN -shared -g -lm -o libbid.so (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.base/= buildid.c -DNO_MAIN -shared -g -lm -o libbid.so=0D PASS: libbid.so Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.base/bu= ildid.c -DONLY_MAIN -Wl,-rpath,/home/prasadkr/systemtap/testsuite -L/home/= prasadkr/systemtap/testsuite -lbid -lm -o /home/prasadkr/systemtap/tests= uite/buildid.x (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.base/= buildid.c -DONLY_MAIN -Wl,-rpath,/home/prasadkr/systemtap/testsuite -L/home= /prasadkr/systemtap/testsuite -lbid -lm -o /home/prasadkr/systemtap/testsui= te/buildid.x=0D PASS: /home/prasadkr/systemtap/testsuite/buildid.x spawn staprun -u /home/prasadkr/systemtap/testsuite/bid.ko -c /home/prasadk= r/systemtap/testsuite/buildid.x=0D x=3D1=0D PASS: shared build id ok (1) spawn staprun -u /home/prasadkr/systemtap/testsuite/bid.ko -c /home/prasadk= r/systemtap/testsuite/buildid.x=0D ERROR: Build-id mismatch: "libbid.so" vs. "libbid.so" byte 0 (0x3c vs 0x00)= rc 0 0=0D x=3D1=0D PASS: shared build id !ok (1) testcase /home/prasadkr/systemtap/testsuite/systemtap.base/buildid.exp comp= leted in 9 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/bz10078.exp ... PASS: bz10078 compile starting /home/prasadkr/systemtap/testsuite/systemtap.base/bz10078.stp spawn1 stap -p4 /home/prasadkr/systemtap/testsuite/systemtap.base/bz10078.s= tp spawn stap -p4 /home/prasadkr/systemtap/testsuite/systemtap.base/bz10078.st= p=0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/7f/stap_7fd82d3bcd= ec90079479c8098cf19303_2075.ko=0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/7f/stap_7fd82d3bcd= ec90079479c8098cf19303_2075.ko=0D wait results: 13002 exp8 0 0 PASS: bz10078 -p4 spawn stap /home/prasadkr/systemtap/testsuite/systemtap.base/bz10078.stp -c= ./bz10078=0D 1,2=0D mkpoint2 returns=0D mkpoint1 returns=0D PASS: bz10078 -p5 testcase /home/prasadkr/systemtap/testsuite/systemtap.base/bz10078.exp comp= leted in 4 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/bz5274.exp ... PASS: ./bz5274 compile PASS: ./bz5274 longjmp to a uretprobed function PASS: ./bz5274 longjmp to a non-uretprobed function testcase /home/prasadkr/systemtap/testsuite/systemtap.base/bz5274.exp compl= eted in 9 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/bz6850.exp ... PASS: bz6850 compile starting /home/prasadkr/systemtap/testsuite/systemtap.base/bz6850.stp spawn1 stap -p4 /home/prasadkr/systemtap/testsuite/systemtap.base/bz6850.stp spawn stap -p4 /home/prasadkr/systemtap/testsuite/systemtap.base/bz6850.stp= =0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/4b/stap_4b7b757c82= a26f966d05677b24cd39b3_4114.ko=0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/4b/stap_4b7b757c82= a26f966d05677b24cd39b3_4114.ko=0D wait results: 14401 exp8 0 0 PASS: bz6850 -p4 spawn stap /home/prasadkr/systemtap/testsuite/systemtap.base/bz6850.stp -c = ./bz6850=0D main called=0D fork_and_exec1 called=0D fork_and_exec2 called=0D fork1 called=0D fork2 called=0D fork2 returns=0D fork1 returns=0D fork_and_exec2 returns=0D fork_and_exec1 returns=0D PASS: bz6850 -p5 testcase /home/prasadkr/systemtap/testsuite/systemtap.base/bz6850.exp compl= eted in 4 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/cache.exp ... spawn stap -v -p4 -e probe begin { println(1) }=0D Pass 1: parsed user script and 75 library script(s) using 38272virt/30400re= s/7808shr kb, in 260usr/0sys/263real ms.=0D Pass 2: analyzed script: 1 probe(s), 0 function(s), 0 embed(s), 0 global(s)= using 38848virt/31104res/8000shr kb, in 10usr/0sys/6real ms.=0D Pass 3: translated to C into "/tmp/stapXI1KT2/stap_71396afb4d6c7cbafe277a9d= 01804021_607.c" using 38848virt/31424res/8320shr kb, in 0usr/0sys/0real ms.= =0D /home/prasadkr/systemtap/testsuite/.cache_test-root/cache/71/stap_71396afb4= d6c7cbafe277a9d01804021_607.ko=0D Pass 4: compiled C into "stap_71396afb4d6c7cbafe277a9d01804021_607.ko" in 4= 460usr/420sys/4898real ms.=0D PASS: BASIC1 wasn't cached spawn stap -v -p4 -e probe begin { println(1) }=0D Pass 1: parsed user script and 75 library script(s) using 38272virt/30400re= s/7808shr kb, in 260usr/0sys/264real ms.=0D Pass 2: analyzed script: 1 probe(s), 0 function(s), 0 embed(s), 0 global(s)= using 38848virt/31104res/8000shr kb, in 10usr/0sys/6real ms.=0D /home/prasadkr/systemtap/testsuite/.cache_test-root/cache/71/stap_71396afb4= d6c7cbafe277a9d01804021_607.ko=0D Pass 3: using cached /home/prasadkr/systemtap/testsuite/.cache_test-root/ca= che/71/stap_71396afb4d6c7cbafe277a9d01804021_607.c=0D Pass 4: using cached /home/prasadkr/systemtap/testsuite/.cache_test-root/ca= che/71/stap_71396afb4d6c7cbafe277a9d01804021_607.ko=0D PASS: BASIC2 was cached spawn stap -v -p4 -e probe begin { println(1) } -DFOO=3D1=0D Pass 1: parsed user script and 75 library script(s) using 38400virt/30464re= s/7808shr kb, in 240usr/0sys/245real ms.=0D Pass 2: analyzed script: 1 probe(s), 0 function(s), 0 embed(s), 0 global(s)= using 38784virt/31104res/8000shr kb, in 0usr/0sys/5real ms.=0D Pass 3: translated to C into "/tmp/stapZbRPJB/stap_6f3f8eba47e19575bd1abf47= 3076bad7_612.c" using 38912virt/31488res/8320shr kb, in 0usr/0sys/0real ms.= =0D /home/prasadkr/systemtap/testsuite/.cache_test-root/cache/6f/stap_6f3f8eba4= 7e19575bd1abf473076bad7_612.ko=0D Pass 4: compiled C into "stap_6f3f8eba47e19575bd1abf473076bad7_612.ko" in 1= 570usr/200sys/1793real ms.=0D PASS: OPTION1 wasn't cached spawn stap -v -p4 -e probe begin { println(1) } -DFOO=3D1=0D Pass 1: parsed user script and 75 library script(s) using 38400virt/30464re= s/7808shr kb, in 240usr/0sys/245real ms.=0D Pass 2: analyzed script: 1 probe(s), 0 function(s), 0 embed(s), 0 global(s)= using 38784virt/31104res/8000shr kb, in 0usr/0sys/5real ms.=0D /home/prasadkr/systemtap/testsuite/.cache_test-root/cache/6f/stap_6f3f8eba4= 7e19575bd1abf473076bad7_612.ko=0D Pass 3: using cached /home/prasadkr/systemtap/testsuite/.cache_test-root/ca= che/6f/stap_6f3f8eba47e19575bd1abf473076bad7_612.c=0D Pass 4: using cached /home/prasadkr/systemtap/testsuite/.cache_test-root/ca= che/6f/stap_6f3f8eba47e19575bd1abf473076bad7_612.ko=0D PASS: OPTION2 was cached spawn stap -v -p4 -e probe begin { println(1) } -b=0D Pass 1: parsed user script and 75 library script(s) using 38272virt/30464re= s/7808shr kb, in 240usr/0sys/245real ms.=0D Pass 2: analyzed script: 1 probe(s), 0 function(s), 0 embed(s), 0 global(s)= using 38848virt/31168res/8000shr kb, in 0usr/0sys/5real ms.=0D Pass 3: translated to C into "/tmp/stapaa6rt4/stap_a52d62ec5d786d25638c4faa= 0ebb5281_607.c" using 38848virt/31488res/8320shr kb, in 0usr/0sys/0real ms.= =0D /home/prasadkr/systemtap/testsuite/.cache_test-root/cache/a5/stap_a52d62ec5= d786d25638c4faa0ebb5281_607.ko=0D Pass 4: compiled C into "stap_a52d62ec5d786d25638c4faa0ebb5281_607.ko" in 1= 630usr/200sys/1842real ms.=0D PASS: BULK1 wasn't cached spawn stap -v -p4 -e probe begin { println(1) } -b=0D Pass 1: parsed user script and 75 library script(s) using 38272virt/30400re= s/7808shr kb, in 240usr/0sys/247real ms.=0D Pass 2: analyzed script: 1 probe(s), 0 function(s), 0 embed(s), 0 global(s)= using 38848virt/31104res/8000shr kb, in 0usr/0sys/5real ms.=0D /home/prasadkr/systemtap/testsuite/.cache_test-root/cache/a5/stap_a52d62ec5= d786d25638c4faa0ebb5281_607.ko=0D Pass 3: using cached /home/prasadkr/systemtap/testsuite/.cache_test-root/ca= che/a5/stap_a52d62ec5d786d25638c4faa0ebb5281_607.c=0D Pass 4: using cached /home/prasadkr/systemtap/testsuite/.cache_test-root/ca= che/a5/stap_a52d62ec5d786d25638c4faa0ebb5281_607.ko=0D PASS: BULK2 was cached spawn stap -v -p4 -e probe begin { println(1) } -t=0D Pass 1: parsed user script and 75 library script(s) using 38272virt/30400re= s/7808shr kb, in 240usr/0sys/247real ms.=0D Pass 2: analyzed script: 1 probe(s), 0 function(s), 0 embed(s), 0 global(s)= using 38848virt/31104res/8000shr kb, in 0usr/0sys/5real ms.=0D Pass 3: translated to C into "/tmp/stapFs1cmu/stap_8fd17f0caf36f77afc1a1ad0= b31a04f8_607.c" using 38848virt/31424res/8320shr kb, in 0usr/0sys/0real ms.= =0D /home/prasadkr/systemtap/testsuite/.cache_test-root/cache/8f/stap_8fd17f0ca= f36f77afc1a1ad0b31a04f8_607.ko=0D Pass 4: compiled C into "stap_8fd17f0caf36f77afc1a1ad0b31a04f8_607.ko" in 1= 670usr/200sys/1874real ms.=0D PASS: TIMING1 wasn't cached spawn stap -v -p4 -e probe begin { println(1) } -t=0D Pass 1: parsed user script and 75 library script(s) using 38272virt/30400re= s/7808shr kb, in 250usr/0sys/245real ms.=0D Pass 2: analyzed script: 1 probe(s), 0 function(s), 0 embed(s), 0 global(s)= using 38848virt/31104res/8000shr kb, in 0usr/0sys/5real ms.=0D /home/prasadkr/systemtap/testsuite/.cache_test-root/cache/8f/stap_8fd17f0ca= f36f77afc1a1ad0b31a04f8_607.ko=0D Pass 3: using cached /home/prasadkr/systemtap/testsuite/.cache_test-root/ca= che/8f/stap_8fd17f0caf36f77afc1a1ad0b31a04f8_607.c=0D Pass 4: using cached /home/prasadkr/systemtap/testsuite/.cache_test-root/ca= che/8f/stap_8fd17f0caf36f77afc1a1ad0b31a04f8_607.ko=0D PASS: TIMING2 was cached spawn stap -v -p4 -e probe begin { println(1) } -R /home/prasadkr/systemtap= /testsuite/.cache_test_runtime=0D Pass 1: parsed user script and 75 library script(s) using 38272virt/30400re= s/7808shr kb, in 250usr/0sys/262real ms.=0D Pass 2: analyzed script: 1 probe(s), 0 function(s), 0 embed(s), 0 global(s)= using 38848virt/31104res/8000shr kb, in 10usr/0sys/5real ms.=0D Pass 3: translated to C into "/tmp/staphlTH57/stap_2bb5471c12fcaafcdfbf5e46= c4a6f7b3_627.c" using 38848virt/31424res/8320shr kb, in 0usr/0sys/0real ms.= =0D /home/prasadkr/systemtap/testsuite/.cache_test-root/cache/2b/stap_2bb5471c1= 2fcaafcdfbf5e46c4a6f7b3_627.ko=0D Pass 4: compiled C into "stap_2bb5471c12fcaafcdfbf5e46c4a6f7b3_627.ko" in 4= 360usr/410sys/4789real ms.=0D PASS: RUNTIME1 wasn't cached spawn stap -v -p4 -e probe begin { println(1) } -R /home/prasadkr/systemtap= /testsuite/.cache_test_runtime=0D Pass 1: parsed user script and 75 library script(s) using 38272virt/30464re= s/7808shr kb, in 250usr/0sys/246real ms.=0D Pass 2: analyzed script: 1 probe(s), 0 function(s), 0 embed(s), 0 global(s)= using 38848virt/31168res/8000shr kb, in 0usr/0sys/5real ms.=0D /home/prasadkr/systemtap/testsuite/.cache_test-root/cache/2b/stap_2bb5471c1= 2fcaafcdfbf5e46c4a6f7b3_627.ko=0D Pass 3: using cached /home/prasadkr/systemtap/testsuite/.cache_test-root/ca= che/2b/stap_2bb5471c12fcaafcdfbf5e46c4a6f7b3_627.c=0D Pass 4: using cached /home/prasadkr/systemtap/testsuite/.cache_test-root/ca= che/2b/stap_2bb5471c12fcaafcdfbf5e46c4a6f7b3_627.ko=0D PASS: RUNTIME2 was cached spawn stap -v -p4 -e probe begin { println(1) }=0D Warning: failed to create systemtap data directory ("/dev/null"): Not a dir= ectory, disabling cache support.=0D Pass 1: parsed user script and 75 library script(s) using 38272virt/30400re= s/7808shr kb, in 250usr/0sys/262real ms.=0D Pass 2: analyzed script: 1 probe(s), 0 function(s), 0 embed(s), 0 global(s)= using 38848virt/31104res/8000shr kb, in 0usr/0sys/5real ms.=0D Pass 3: translated to C into "/tmp/stappFrPyE/stap_16188.c" using 38848virt= /31296res/8192shr kb, in 10usr/0sys/0real ms.=0D stap_16188.ko=0D Pass 4: compiled C into "stap_16188.ko" in 4460usr/410sys/4899real ms.=0D PASS: DISABLED1 wasn't cached spawn stap -v -p4 -e probe begin { println(1) }=0D Warning: failed to create systemtap data directory ("/dev/null"): Not a dir= ectory, disabling cache support.=0D Pass 1: parsed user script and 75 library script(s) using 38272virt/30400re= s/7808shr kb, in 260usr/0sys/263real ms.=0D Pass 2: analyzed script: 1 probe(s), 0 function(s), 0 embed(s), 0 global(s)= using 38848virt/31104res/8000shr kb, in 0usr/0sys/5real ms.=0D Pass 3: translated to C into "/tmp/stapdeBzT9/stap_16508.c" using 38848virt= /31296res/8192shr kb, in 0usr/0sys/0real ms.=0D stap_16508.ko=0D Pass 4: compiled C into "stap_16508.ko" in 4370usr/410sys/4791real ms.=0D PASS: DISABLED2 wasn't cached spawn stap -v -p4 -e probe begin { println(1) } -m modnam=0D Pass 1: parsed user script and 75 library script(s) using 38336virt/30400re= s/7808shr kb, in 240usr/0sys/246real ms.=0D Pass 2: analyzed script: 1 probe(s), 0 function(s), 0 embed(s), 0 global(s)= using 38912virt/31104res/8000shr kb, in 0usr/0sys/5real ms.=0D Pass 3: translated to C into "/tmp/stap9zffMl/modnam.c" using 38912virt/313= 60res/8192shr kb, in 0usr/0sys/0real ms.=0D modnam.ko=0D Pass 4: compiled C into "modnam.ko" in 1580usr/200sys/1787real ms.=0D PASS: MODNAM1 wasn't cached spawn stap -v -p4 -e probe begin { println(1) } -m modnam=0D Pass 1: parsed user script and 75 library script(s) using 38336virt/30400re= s/7808shr kb, in 270usr/0sys/264real ms.=0D Pass 2: analyzed script: 1 probe(s), 0 function(s), 0 embed(s), 0 global(s)= using 38912virt/31104res/8000shr kb, in 0usr/0sys/5real ms.=0D Pass 3: translated to C into "/tmp/stapvEV5lu/modnam.c" using 38912virt/313= 60res/8192shr kb, in 0usr/0sys/0real ms.=0D modnam.ko=0D Pass 4: compiled C into "modnam.ko" in 1610usr/200sys/1829real ms.=0D PASS: MODNAM2 wasn't cached spawn stap -v -p4 -e probe XbeginX { }=0D Pass 1: parsed user script and 75 library script(s) using 38272virt/30464re= s/7808shr kb, in 260usr/0sys/264real ms.=0D semantic error: probe point mismatch at position 0 (alternatives: __nfs __s= cheduler __signal __tcpmib __vm _linuxmib _signal _sunrpc _syscall _vfs beg= in begin(number) end end(number) error error(number) generic ioblock iobloc= k_trace ioscheduler ioscheduler_trace ipmib irq_handler kernel kprobe kproc= ess linuxmib module(string) nd_syscall netdev never nfs nfsd perf process p= rocess(number) process(string) procfs procfs(string) scheduler scsi signal = socket softirq stap staprun sunrpc syscall tcp tcpmib timer tty udp vfs vm = workqueue): identifier 'XbeginX' at :1:7 while resolving probe point= XbeginX=0D source: probe XbeginX { }=0D ^=0D Pass 2: analyzed script: 0 probe(s), 0 function(s), 0 embed(s), 0 global(s)= using 38848virt/31168res/8000shr kb, in 10usr/0sys/6real ms.=0D Pass 2: analysis failed. Try again with another '--vp 01' option.=0D PASS: ERROR1 wasn't cached spawn stap -v -p4 -e probe XbeginX { }=0D Pass 1: parsed user script and 75 library script(s) using 38272virt/30464re= s/7808shr kb, in 270usr/0sys/262real ms.=0D semantic error: probe point mismatch at position 0 (alternatives: __nfs __s= cheduler __signal __tcpmib __vm _linuxmib _signal _sunrpc _syscall _vfs beg= in begin(number) end end(number) error error(number) generic ioblock iobloc= k_trace ioscheduler ioscheduler_trace ipmib irq_handler kernel kprobe kproc= ess linuxmib module(string) nd_syscall netdev never nfs nfsd perf process p= rocess(number) process(string) procfs procfs(string) scheduler scsi signal = socket softirq stap staprun sunrpc syscall tcp tcpmib timer tty udp vfs vm = workqueue): identifier 'XbeginX' at :1:7 while resolving probe point= XbeginX=0D source: probe XbeginX { }=0D ^=0D Pass 2: analyzed script: 0 probe(s), 0 function(s), 0 embed(s), 0 global(s)= using 38848virt/31168res/8000shr kb, in 0usr/0sys/6real ms.=0D Pass 2: analysis failed. Try again with another '--vp 01' option.=0D PASS: ERROR2 wasn't cached spawn stap -v -p4 -e probe begin, end { println(2) }=0D Pass 1: parsed user script and 75 library script(s) using 38272virt/30400re= s/7808shr kb, in 250usr/0sys/245real ms.=0D Pass 2: analyzed script: 2 probe(s), 0 function(s), 0 embed(s), 0 global(s)= using 38848virt/31104res/8000shr kb, in 0usr/0sys/5real ms.=0D Pass 3: translated to C into "/tmp/stapCWUPKi/stap_a6159b89c1ab3d4a6151d9b2= b6332ee3_645.c" using 38848virt/31424res/8320shr kb, in 0usr/0sys/0real ms.= =0D /home/prasadkr/systemtap/testsuite/.cache_test-root/cache/a6/stap_a6159b89c= 1ab3d4a6151d9b2b6332ee3_645.ko=0D Pass 4: compiled C into "stap_a6159b89c1ab3d4a6151d9b2b6332ee3_645.ko" in 1= 620usr/200sys/1836real ms.=0D PASS: BASIC3 wasn't cached spawn stap -v -p4 -e probe begin, end { println(2) }=0D Pass 1: parsed user script and 75 library script(s) using 38272virt/30400re= s/7808shr kb, in 270usr/0sys/264real ms.=0D Pass 2: analyzed script: 2 probe(s), 0 function(s), 0 embed(s), 0 global(s)= using 38848virt/31104res/8000shr kb, in 0usr/0sys/5real ms.=0D /home/prasadkr/systemtap/testsuite/.cache_test-root/cache/a6/stap_a6159b89c= 1ab3d4a6151d9b2b6332ee3_645.ko=0D Pass 3: using cached /home/prasadkr/systemtap/testsuite/.cache_test-root/ca= che/a6/stap_a6159b89c1ab3d4a6151d9b2b6332ee3_645.c=0D Pass 4: using cached /home/prasadkr/systemtap/testsuite/.cache_test-root/ca= che/a6/stap_a6159b89c1ab3d4a6151d9b2b6332ee3_645.ko=0D PASS: BASIC4 was cached testcase /home/prasadkr/systemtap/testsuite/systemtap.base/cache.exp comple= ted in 37 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/cast.exp ... executing: stap /home/prasadkr/systemtap/testsuite/systemtap.base/cast.stp = -g PASS: systemtap.base/cast.stp testcase /home/prasadkr/systemtap/testsuite/systemtap.base/cast.exp complet= ed in 4 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/cmd_parse.exp ... spawn stap -c echo "hello world" -we probe begin {}=0D hello world=0D PASS: cmd_parse1 spawn stap -c echo "hello "\"world\" -we probe begin {}=0D hello "world"=0D PASS: cmd_parse2 spawn stap -c sh -c '(a=3D"hello world"; echo $a)' -we probe begin {}=0D hello world=0D PASS: cmd_parse3 spawn stap -c sh -c '(a=3D"hello "\"world\"; echo $a)' -we probe begin {}=0D hello "world"=0D PASS: cmd_parse4 spawn stap -c sh -c '(a=3D"hello "world; echo $a)' -we probe begin {}=0D hello world=0D PASS: cmd_parse5 spawn stap -c bash -c '((a=3D42+7)); echo "The answer is $a"' -we probe beg= in {}=0D The answer is 49=0D PASS: cmd_parse6 spawn stap -c sh -c '(echo "Hello World" 1>&2) > /dev/null' -we probe begin= {}=0D Hello World=0D PASS: cmd_parse7 spawn stap -l vm.*=0D vm.brk=0D vm.kfree=0D vm.kmalloc=0D vm.kmalloc_node=0D vm.kmem_cache_alloc=0D vm.kmem_cache_alloc_node=0D vm.kmem_cache_free=0D vm.mmap=0D vm.munmap=0D vm.oom_kill=0D vm.pagefault=0D vm.write_shared=0D PASS: cmd_parse8 spawn stap -e probe begin { printf("%d %s\n", argc, argv[$1]) exit() } 1=0D 1 1=0D PASS: cmd_parse9 spawn stap -e probe begin { printf("%d %s\n", argc, argv[$1]) exit() } 5 a = b c d=0D 5 d=0D PASS: cmd_parse10 spawn stap -e probe begin { printf("%d %s\n", argc, argv[$1]) exit() } 10 a= b c d=0D 5 =0D PASS: cmd_parse11 spawn stap -e probe begin { printf("%d %s\n", argc, argv[0]) exit() }=0D 0 =0D PASS: cmd_parse12 spawn stap -L syscall.a*=0D syscall.accept flags:long flags_str:string name:string sockfd:long addr_uad= dr:long addrlen_uaddr:long argstr:string $fd:long int $upeer_sockaddr:long = int $upeer_addrlen:long int $flags:long int=0D syscall.access name:string pathname:string mode:long mode_str:string argstr= :string $filename:long int $mode:long int=0D syscall.acct name:string filename:string argstr:string $name:long int=0D syscall.add_key name:string type_uaddr:long description_uaddr:long payload_= uaddr:long plen:long ringid:long argstr:string $_type:long int $_descriptio= n:long int $_payload:long int $plen:long int $ringid:long int=0D syscall.adjtimex name:string argstr:string $txc_p:long int=0D syscall.alarm name:string seconds:long argstr:string $seconds:long int=0D PASS: cmd_parse13 spawn sh -c stap -v -v --vp 01020 -h 2>&1=0D SystemTap translator/driver (version 1.5/0.148 commit release-1.4-37-g55b37= 7f + changes)=0D Copyright (C) 2005-2011 Red Hat, Inc. and others=0D This is free software; see the source for copying conditions.=0D enabled features: LIBRPM LIBSQLITE3 TR1_UNORDERED_MAP=0D =0D Usage: stap [options] FILE Run script in file.=0D or: stap [options] - Run script on stdin.=0D or: stap [options] -e SCRIPT Run given script.=0D or: stap [options] -l PROBE List matching probes.=0D or: stap [options] -L PROBE List matching probes and local variables= .=0D =0D Options:=0D -- end of translator options, script options follow=0D -h --help show help=0D -V show version=0D -p NUM stop after pass NUM 1-5, instead of 5=0D (parse, elaborate, translate, compile, run)=0D -v add verbosity to all passes=0D --vp {N}+ add per-pass verbosity [23242]=0D -k keep temporary directory=0D -u unoptimized translation=0D -w suppress warnings=0D -W turn warnings into errors=0D -g guru mode=0D -P prologue-searching for function probes=0D -b bulk (percpu file) mode=0D -s NUM buffer size in megabytes, instead of 0=0D -I DIR look in DIR for additional .stp script files, in addition to= =0D /usr/local/share/systemtap/tapset=0D -D NM=3DVAL emit macro definition into generated C code=0D -B NM=3DVAL pass option to kbuild make=0D -G VAR=3DVAL set global variable to value=0D -R DIR look in DIR for runtime, instead of=0D /usr/local/share/systemtap/runtime=0D -r DIR cross-compile to kernel with given build tree; or else=0D -r RELEASE cross-compile to kernel /lib/modules/RELEASE/build, instead o= f=0D /lib/modules/2.6.32-71.el6.ppc64/build=0D -a ARCH cross-compile to given architecture, instead of powerpc=0D -m MODULE set probe module name, instead of =0D stap_27311=0D -o FILE send script output to file, instead of stdout. This supports= =0D strftime(3) formats for FILE=0D -c CMD start the probes, run CMD, and exit when it finishes=0D -x PID sets target() to PID=0D -F run as on-file flight recorder with -o.=0D run as on-memory flight recorder without -o.=0D -S size[,n] set maximum of the size and the number of files.=0D -d OBJECT add unwind/symbol data for OBJECT file=0D --ldd add unwind/symbol data for all referenced OBJECT files.=0D --all-modules=0D add unwind/symbol data for all loaded kernel objects.=0D -t collect probe timing information=0D -q generate information on tapset coverage=0D --unprivileged=0D restrict usage to features available to unprivileged users=0D --compatible=3DVERSION=0D suppress incompatible language/tapset changes beyond VERSION,= =0D instead of 1.5=0D --check-version=0D displays warnings where a syntax element may be =0D version dependent=0D --skip-badvars=0D substitute zero for bad context $variables=0D --use-server[=3DSERVER-SPEC]=0D specify systemtap compile-servers=0D --list-servers[=3DPROPERTIES]=0D report on the status of the specified compile-servers=0D --remote=3DHOSTNAME=0D run pass 5 on the specified ssh host (EXPERIMENTAL)=0D PASS: cmd_parse14 spawn sh -c stap -m do_not_cache_me -B kernelrelease -p4 -e 'probe begin {e= xit()}'=0D 2.6.32-71.el6.ppc64=0D PASS: cmd_parse15 spawn sh -c stap -m do_not_cache_me -a powerpc -p4 -e 'probe begin {exit()}= '=0D do_not_cache_me.ko=0D PASS: cmd_parse16 testcase /home/prasadkr/systemtap/testsuite/systemtap.base/cmd_parse.exp co= mpleted in 61 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/const_value.exp .= .. Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.base/co= nst_value.c -g -O2 -isystem/home/prasadkr/systemtap/testsuite -isystem/usr= /local/include -lm -o const_value.exe (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.base/= const_value.c -g -O2 -isystem/home/prasadkr/systemtap/testsuite -isystem/us= r/local/include -lm -o const_value.exe=0D PASS: const_value.c compile executing: stap /home/prasadkr/systemtap/testsuite/systemtap.base/const_val= ue.stp {-c ./const_value.exe} PASS: systemtap.base/const_value.stp Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.base/co= nst_value_func.c -g -O2 -isystem/home/prasadkr/systemtap/testsuite -isyste= m/usr/local/include -lm -o const_value_func.exe (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.base/= const_value_func.c -g -O2 -isystem/home/prasadkr/systemtap/testsuite -isyst= em/usr/local/include -lm -o const_value_func.exe=0D PASS: const_value_func.c compile UNTESTED: const_value_func (no-const-value) testcase /home/prasadkr/systemtap/testsuite/systemtap.base/const_value.exp = completed in 4 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/control_limits.ex= p ... spawn stap -u -DMAXNESTING=3D5 /home/prasadkr/systemtap/testsuite/systemtap= .base/control_limits.stp=0D ERROR: MAXNESTING exceeded near identifier 'recurse' at /home/prasadkr/syst= emtap/testsuite/systemtap.base/control_limits.stp:3:10=0D WARNING: Number of errors: 1, skipped probes: 0=0D Pass 5: run failed. Try again with another '--vp 00001' option.=0D PASS: control_limits MAXNESTING (1) spawn stap -u -DMAXACTION_INTERRUPTIBLE=3D500 /home/prasadkr/systemtap/test= suite/systemtap.base/control_limits.stp=0D ERROR: MAXACTION exceeded near operator '{' at /home/prasadkr/systemtap/tes= tsuite/systemtap.base/control_limits.stp:12:25=0D WARNING: Number of errors: 1, skipped probes: 0=0D Pass 5: run failed. Try again with another '--vp 00001' option.=0D PASS: control_limits MAXACTION (1) spawn stap -u -DMAXSTRINGLEN=3D50 /home/prasadkr/systemtap/testsuite/system= tap.base/control_limits.stp=0D ERROR: MAXSTRINGLEN reduced=0D WARNING: Number of errors: 1, skipped probes: 0=0D Pass 5: run failed. Try again with another '--vp 00001' option.=0D PASS: control_limits MAXSTRINGLEN small (1) spawn stap -u -DMAXSTRINGLEN=3D500 /home/prasadkr/systemtap/testsuite/syste= mtap.base/control_limits.stp=0D ERROR: MAXSTRINGLEN enlarged=0D WARNING: Number of errors: 1, skipped probes: 0=0D Pass 5: run failed. Try again with another '--vp 00001' option.=0D PASS: control_limits MAXSTRINGLEN large (1) testcase /home/prasadkr/systemtap/testsuite/systemtap.base/control_limits.e= xp completed in 10 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/crash.exp ... UNTESTED: crash - no staplog.so testcase /home/prasadkr/systemtap/testsuite/systemtap.base/crash.exp comple= ted in 0 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/ctime.exp ... executing: stap /home/prasadkr/systemtap/testsuite/systemtap.base/ctime.stp PASS: systemtap.base/ctime.stp testcase /home/prasadkr/systemtap/testsuite/systemtap.base/ctime.exp comple= ted in 3 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/cu-decl.exp ... Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.base/cu= -decl-1.c /home/prasadkr/systemtap/testsuite/systemtap.base/cu-decl-2.c -g= -lm -o cu-decl (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.base/= cu-decl-1.c /home/prasadkr/systemtap/testsuite/systemtap.base/cu-decl-2.c -= g -lm -o cu-decl=0D PASS: cu-decl target compilation running stap -v -p4 -e { probe process("cu-decl").function("print") { println($f->x * $f->y) } } spawn stap -v -p4 -e=20 probe process("cu-decl").function("print") { println($f->x * $f->y) } =0D Pass 1: parsed user script and 75 library script(s) using 38272virt/30400re= s/7808shr kb, in 250usr/0sys/262real ms.=0D Pass 2: analyzed script: 1 probe(s), 2 function(s), 0 embed(s), 0 global(s)= using 39168virt/31872res/8576shr kb, in 10usr/0sys/6real ms.=0D Pass 3: translated to C into "/tmp/stapror7NA/stap_694ec9d50e1d1563efaee8c6= 8d16e320_2625.c" using 142720virt/32256res/8832shr kb, in 20usr/110sys/135r= eal ms.=0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/69/stap_694ec9d50e= 1d1563efaee8c68d16e320_2625.ko=0D Pass 4: compiled C into "stap_694ec9d50e1d1563efaee8c68d16e320_2625.ko" in = 2660usr/400sys/3067real ms.=0D PASS: cu-decl compilation succeeded testcase /home/prasadkr/systemtap/testsuite/systemtap.base/cu-decl.exp comp= leted in 3 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/cxxclass.exp ... Executing on host: g++ /home/prasadkr/systemtap/testsuite/systemtap.base/cx= xclass.cxx -g -O2 -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/= local/include -lm -o cxxclass.exe (timeout =3D 300) spawn -ignore SIGHUP g++ /home/prasadkr/systemtap/testsuite/systemtap.base/= cxxclass.cxx -g -O2 -isystem/home/prasadkr/systemtap/testsuite -isystem/usr= /local/include -lm -o cxxclass.exe=0D PASS: cxxclass.c compile executing: stap -w /home/prasadkr/systemtap/testsuite/systemtap.base/cxxcla= ss.stp cxxclass.exe -c ./cxxclass.exe FAIL: cxxclass line 1: expected "main_enter" Got "semantic error: unable to find local 'arg1' near pc 0x10000608 in Prob= eClass(/home/prasadkr/systemtap/testsuite/systemtap.base/cxxclass.cxx) (alt= ernatives: $n $v $this): identifier '$arg1' at /home/prasadkr/systemtap/tes= tsuite/systemtap.base/cxxclass.stp:23:39" testcase /home/prasadkr/systemtap/testsuite/systemtap.base/cxxclass.exp com= pleted in 1 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/debugpath.exp ... spawn env SYSTEMTAP_DEBUGINFO_PATH=3D/dev/null stap -e probe kernel.functio= n("vfs_read") {} -wp4=0D semantic error: missing powerpc kernel/module debuginfo under '/lib/modules= /2.6.32-71.el6.ppc64/build' while resolving probe point kernel.function("vf= s_read")=0D Pass 2: analysis failed. Try again with another '--vp 01' option.=0D PASS: debugpath-bad spawn env SYSTEMTAP_DEBUGINFO_PATH=3D/usr/lib/debug stap -e probe kernel.fu= nction("vfs_read") {} -wp2=0D # probes=0D kernel.function("vfs_read@fs/read_write.c:277") /* pc=3D_stext+0x1b1450 */ = /* <- kernel.function("vfs_read") */=0D PASS: debugpath-good testcase /home/prasadkr/systemtap/testsuite/systemtap.base/debugpath.exp co= mpleted in 1 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/deref.exp ... executing: stap -v -g /home/prasadkr/systemtap/testsuite/systemtap.base/der= ef.stp spawn stap -v -g /home/prasadkr/systemtap/testsuite/systemtap.base/deref.st= p=0D Pass 1: parsed user script and 75 library script(s) using 38528virt/30720re= s/7872shr kb, in 240usr/0sys/247real ms.=0D Pass 2: analyzed script: 3 probe(s), 16 function(s), 0 embed(s), 0 global(s= ) using 39104virt/31424res/8064shr kb, in 10usr/0sys/5real ms.=0D Pass 3: translated to C into "/tmp/stapFui77n/stap_5ac6f4ba88143ecd999a3a1c= e1993de3_3548.c" using 39104virt/31744res/8384shr kb, in 0usr/0sys/2real ms= .=0D Pass 4: compiled C into "stap_5ac6f4ba88143ecd999a3a1ce1993de3_3548.ko" in = 1830usr/200sys/2043real ms.=0D Pass 5: starting run.=0D systemtap starting probe=0D PASS: systemtap.base/deref.stp startup PASS: systemtap.base/deref.stp load generation systemtap ending probe=0D systemtap test success=0D systemtap test success=0D systemtap test success=0D systemtap test success=0D systemtap test success=0D systemtap test success=0D systemtap test success=0D systemtap test success=0D systemtap test success=0D systemtap test success=0D systemtap test success=0D systemtap test success=0D systemtap test success=0D systemtap test success=0D systemtap test success=0D Pass 5: run completed in 10usr/20sys/343real ms.=0D FAIL: systemtap.base/deref.stp shutdown (eof) testcase /home/prasadkr/systemtap/testsuite/systemtap.base/deref.exp comple= ted in 3 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/deref2.exp ... UNTESTED: deref2 testcase /home/prasadkr/systemtap/testsuite/systemtap.base/deref2.exp compl= eted in 0 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/div0.exp ... executing: stap -v /home/prasadkr/systemtap/testsuite/systemtap.base/div0.s= tp spawn stap -v /home/prasadkr/systemtap/testsuite/systemtap.base/div0.stp=0D Pass 1: parsed user script and 75 library script(s) using 38592virt/30720re= s/7872shr kb, in 260usr/0sys/263real ms.=0D Pass 2: analyzed script: 2 probe(s), 0 function(s), 0 embed(s), 3 global(s)= using 38976virt/31360res/8064shr kb, in 0usr/0sys/6real ms.=0D Pass 3: translated to C into "/tmp/stapRocBv7/stap_8f4c20145ae223932678c44e= ad2536f2_865.c" using 39104virt/31744res/8384shr kb, in 0usr/0sys/1real ms.= =0D Pass 4: compiled C into "stap_8f4c20145ae223932678c44ead2536f2_865.ko" in 1= 600usr/200sys/1825real ms.=0D Pass 5: starting run.=0D systemtap starting probe=0D systemtap ending probe=0D PASS: systemtap.base/div0.stp startup PASS: systemtap.base/div0.stp load generation ERROR: division by 0 near operator '/' at /home/prasadkr/systemtap/testsuit= e/systemtap.base/div0.stp:26:10=0D WARNING: Number of errors: 1, skipped probes: 0=0D Pass 5: run completed in 0usr/20sys/328real ms.=0D Pass 5: run failed. Try again with another '--vp 00001' option.=0D PASS: systemtap.base/div0.stp shutdown and output testcase /home/prasadkr/systemtap/testsuite/systemtap.base/div0.exp complet= ed in 2 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/dtrace.exp ... /usr/local/bin/dtrace -G -s /tmp/dtrace/test.d -o XXX.o PASS: dtrace -G -o XXX.o /usr/local/bin/dtrace -G -s /tmp/dtrace/test.d -o XXX PASS: dtrace -G -o XXX /usr/local/bin/dtrace -h -s /tmp/dtrace/test.d -o XXX.h PASS: dtrace -h -o XXX.h /usr/local/bin/dtrace -h -s /tmp/dtrace/test.d -o XXX PASS: dtrace -h -o XXX /usr/local/bin/dtrace -G -s /tmp/dtrace/test.d -o /tmp/XXX.o PASS: dtrace -G -o /tmp/XXX.o /usr/local/bin/dtrace -G -s /tmp/dtrace/test.d -o /tmp/XXX PASS: dtrace -G -o /tmp/XXX.o /usr/local/bin/dtrace -h -s /tmp/dtrace/test.d -o /tmp/XXX.h PASS: dtrace -h -o /tmp/XXX.h /usr/local/bin/dtrace -h -s /tmp/dtrace/test.d -o /tmp/XXX PASS: dtrace -h -o /tmp/XXX /usr/local/bin/dtrace -G -s /tmp/dtrace/test.d PASS: dtrace -G /usr/local/bin/dtrace -h -s /tmp/dtrace/test.d PASS: dtrace -h /usr/local/bin/dtrace -C -h -s /tmp/dtrace/test.d -o XXX.h spawn cat XXX.h=0D /* Generated by the Systemtap dtrace wrapper */=0D =0D #define _SDT_HAS_SEMAPHORES 1=0D =0D =0D #define STAP_HAS_SEMAPHORES 1 /* deprecated */=0D =0D =0D #include =0D =0D /* TSTSYSCALL_TEST ( short arg1, int arg2, int arg3, int arg4, struct astru= ct arg5) */=0D #if defined STAP_SDT_V1=0D #define TSTSYSCALL_TEST_ENABLED() __builtin_expect (test_semaphore, 0)=0D #define tstsyscall_test_semaphore test_semaphore=0D #else=0D #define TSTSYSCALL_TEST_ENABLED() __builtin_expect (tstsyscall_test_semapho= re, 0)=0D #endif=0D __extension__ extern unsigned short tstsyscall_test_semaphore __attribute__= ((unused)) __attribute__ ((section (".probes")));=0D #define TSTSYSCALL_TEST(arg1,arg2,arg3,arg4,arg5) \=0D STAP_PROBE5(tstsyscall,test,arg1,arg2,arg3,arg4,arg5)=0D =0D PASS: dtrace -C -h -o XXX.h /usr/local/bin/dtrace -C -I/tmp/dtrace_inc -h -s /tmp/dtrace/itest.d -o XXX= .h spawn cat XXX.h=0D /* Generated by the Systemtap dtrace wrapper */=0D =0D #define _SDT_HAS_SEMAPHORES 1=0D =0D =0D #define STAP_HAS_SEMAPHORES 1 /* deprecated */=0D =0D =0D #include =0D =0D /* TSTSYSCALL_TEST ( short arg1, int arg2, int arg3, int arg4, struct astru= ct arg5) */=0D #if defined STAP_SDT_V1=0D #define TSTSYSCALL_TEST_ENABLED() __builtin_expect (test_semaphore, 0)=0D #define tstsyscall_test_semaphore test_semaphore=0D #else=0D #define TSTSYSCALL_TEST_ENABLED() __builtin_expect (tstsyscall_test_semapho= re, 0)=0D #endif=0D __extension__ extern unsigned short tstsyscall_test_semaphore __attribute__= ((unused)) __attribute__ ((section (".probes")));=0D #define TSTSYSCALL_TEST(arg1,arg2,arg3,arg4,arg5) \=0D STAP_PROBE5(tstsyscall,test,arg1,arg2,arg3,arg4,arg5)=0D =0D PASS: dtrace -C -Iincpath -h -o XXX.h /usr/local/bin/dtrace -I/tmp/dtrace_inc -G -s /tmp/dtrace/itest.d PASS: dtrace -Iincpath -G testcase /home/prasadkr/systemtap/testsuite/systemtap.base/dtrace.exp compl= eted in 1 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/equal.exp ... executing: stap -v /home/prasadkr/systemtap/testsuite/systemtap.base/equal.= stp spawn stap -v /home/prasadkr/systemtap/testsuite/systemtap.base/equal.stp=0D Pass 1: parsed user script and 75 library script(s) using 38656virt/30656re= s/7872shr kb, in 250usr/0sys/264real ms.=0D Pass 2: analyzed script: 3 probe(s), 0 function(s), 0 embed(s), 2 global(s)= using 162752virt/113728res/69888shr kb, in 470usr/10sys/472real ms.=0D Pass 3: translated to C into "/tmp/stapkYzUFr/stap_3c690a13332d654cd9a9db69= 1bac46fa_1112.c" using 162752virt/115264res/71424shr kb, in 1200usr/10sys/1= 233real ms.=0D Pass 4: compiled C into "stap_3c690a13332d654cd9a9db691bac46fa_1112.ko" in = 2290usr/200sys/2509real ms.=0D Pass 5: starting run.=0D systemtap starting probe=0D PASS: systemtap.base/equal.stp startup PASS: systemtap.base/equal.stp load generation systemtap ending probe=0D count =3D 29=0D count2 =3D 29=0D systemtap test success=0D Pass 5: run completed in 0usr/30sys/384real ms.=0D PASS: systemtap.base/equal.stp shutdown and output metric: systemtap.base/equal.stp 250 0 264 470 10 472 1200 10 1233 2290 20= 0 2509 0 30 384 testcase /home/prasadkr/systemtap/testsuite/systemtap.base/equal.exp comple= ted in 5 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/error_fn.exp ... executing: stap -v /home/prasadkr/systemtap/testsuite/systemtap.base/error_= fn.stp spawn stap -v /home/prasadkr/systemtap/testsuite/systemtap.base/error_fn.st= p=0D Pass 1: parsed user script and 75 library script(s) using 38528virt/30592re= s/7872shr kb, in 260usr/0sys/264real ms.=0D Pass 2: analyzed script: 2 probe(s), 3 function(s), 0 embed(s), 0 global(s)= using 39104virt/31296res/8064shr kb, in 0usr/0sys/6real ms.=0D Pass 3: translated to C into "/tmp/stapOjOwYq/stap_95a1c99f888ee825ea804360= c493cf7e_1305.c" using 39104virt/31680res/8384shr kb, in 10usr/0sys/0real m= s.=0D Pass 4: compiled C into "stap_95a1c99f888ee825ea804360c493cf7e_1305.ko" in = 1640usr/200sys/1854real ms.=0D Pass 5: starting run.=0D systemtap starting probe=0D systemtap ending probe=0D PASS: systemtap.base/error_fn.stp startup PASS: systemtap.base/error_fn.stp load generation ERROR: synthetic error=0D WARNING: Number of errors: 1, skipped probes: 0=0D Pass 5: run completed in 10usr/20sys/347real ms.=0D Pass 5: run failed. Try again with another '--vp 00001' option.=0D PASS: systemtap.base/error_fn.stp shutdown and output testcase /home/prasadkr/systemtap/testsuite/systemtap.base/error_fn.exp com= pleted in 3 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/externalvar.exp .= .. Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.base/ex= ternalvar_lib.c -g -O0 -fPIC -shared -lm -o /home/prasadkr/systemtap/te= stsuite/libexternalvar.so (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.base/= externalvar_lib.c -g -O0 -fPIC -shared -lm -o /home/prasadkr/systemtap/test= suite/libexternalvar.so=0D Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.base/ex= ternalvar.c -g -O0 -L/home/prasadkr/systemtap/testsuite -lexternalvar -Wl,= -rpath,/home/prasadkr/systemtap/testsuite -lm -o /home/prasadkr/systemta= p/testsuite/externalvar (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.base/= externalvar.c -g -O0 -L/home/prasadkr/systemtap/testsuite -lexternalvar -Wl= ,-rpath,/home/prasadkr/systemtap/testsuite -lm -o /home/prasadkr/systemtap/= testsuite/externalvar=0D cmd: stap -d /home/prasadkr/systemtap/testsuite/libexternalvar.so -d /home/= prasadkr/systemtap/testsuite/externalvar -c /home/prasadkr/systemtap/testsu= ite/externalvar /home/prasadkr/systemtap/testsuite/systemtap.base/externalv= ar.stp cmd output: exevar_c =3D 42 exevar_i =3D 2 exevar_l =3D 21 exe_s->i =3D 1 exe_s->l =3D 2 exe_s->c =3D 3 exe_s->s1 =3D 0x0 exe_s =3D=3D exe_s->s2 libvar =3D 42 lib_s->i =3D 1 lib_s->l =3D 2 lib_s->c =3D 3 lib_s =3D=3D lib_s->s1 lib_s->s2 =3D 0x0 PASS: externalvar testcase /home/prasadkr/systemtap/testsuite/systemtap.base/externalvar.exp = completed in 4 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/finloop2.exp ... executing: stap -v /home/prasadkr/systemtap/testsuite/systemtap.base/finloo= p2.stp spawn stap -v /home/prasadkr/systemtap/testsuite/systemtap.base/finloop2.st= p=0D Pass 1: parsed user script and 75 library script(s) using 38656virt/30656re= s/7872shr kb, in 270usr/0sys/263real ms.=0D Pass 2: analyzed script: 3 probe(s), 0 function(s), 0 embed(s), 2 global(s)= using 162752virt/113728res/69888shr kb, in 460usr/10sys/472real ms.=0D Pass 3: translated to C into "/tmp/stapSoHfUa/stap_157924620bf6c564d998c03e= 9baa33d6_1125.c" using 162752virt/115264res/71424shr kb, in 1200usr/10sys/1= 217real ms.=0D Pass 4: compiled C into "stap_157924620bf6c564d998c03e9baa33d6_1125.ko" in = 2280usr/200sys/2497real ms.=0D Pass 5: starting run.=0D systemtap starting probe=0D PASS: systemtap.base/finloop2.stp startup PASS: systemtap.base/finloop2.stp load generation systemtap ending probe=0D count =3D 34=0D loop_count =3D 340=0D systemtap test success=0D Pass 5: run completed in 0usr/30sys/389real ms.=0D PASS: systemtap.base/finloop2.stp shutdown and output metric: systemtap.base/finloop2.stp 270 0 263 460 10 472 1200 10 1217 2280= 200 2497 0 30 389 testcase /home/prasadkr/systemtap/testsuite/systemtap.base/finloop2.exp com= pleted in 5 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/flightrec1.exp ... spawn stap -F -o flightrec1.out -we probe begin {}=0D 31650=0D PASS: flightrec1 (flight recorder option) spawn ps -o cmd hc 31650=0D stapio=0D PASS: flightrec1 (stapio in background) PASS: flightrec1 (output file) PASS: flightrec1 (switch output file) testcase /home/prasadkr/systemtap/testsuite/systemtap.base/flightrec1.exp c= ompleted in 4 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/flightrec2.exp ... spawn stap -F -o flightlog.out -S 1,3 /home/prasadkr/systemtap/testsuite/sy= stemtap.base/flightrec2.stp=0D 31887=0D PASS: flightrec2 (-S option) spawn stat -c %s flightlog.out.2 flightlog.out.4 flightlog.out.3=0D 1034000=0D 253000=0D 1034000=0D spawn stat -c %s flightlog.out.5 flightlog.out.6 flightlog.out.7=0D 1034000=0D 1034000=0D 253000=0D PASS: flightrec2 (log file numbers limitation) PASS: flightrec2 (log file size limitation) testcase /home/prasadkr/systemtap/testsuite/systemtap.base/flightrec2.exp c= ompleted in 10 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/flightrec3.exp ... spawn stap -F -o flightlog.out -S 1,3 -b /home/prasadkr/systemtap/testsuite= /systemtap.base/flightrec3.stp=0D 32126=0D PASS: flightrec3 (-S option with bulk mode) spawn stat -c %n %s flightlog.out_cpu1.0 flightlog.out_cpu0.0=0D flightlog.out_cpu1.0 262596=0D flightlog.out_cpu0.0 262596=0D spawn stat -c %n %s flightlog.out_cpu1.0 flightlog.out_cpu0.0=0D flightlog.out_cpu1.0 785572=0D flightlog.out_cpu0.0 785572=0D PASS: flightrec3 (log file size limitation with bulk mode) testcase /home/prasadkr/systemtap/testsuite/systemtap.base/flightrec3.exp c= ompleted in 14 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/flightrec4.exp ... spawn stap -F -S 1,2 -o flightrec4.out -we probe begin {}=0D 32156=0D PASS: flightrec4 (flight recorder option) PASS: flightrec4 (output file) PASS: flightrec4 (old output file is removed) PASS: flightrec4 (switch output file) testcase /home/prasadkr/systemtap/testsuite/systemtap.base/flightrec4.exp c= ompleted in 8 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/flightrec5.exp ... spawn stap -F -S 1,2 -b -o flightrec5.out -we probe begin {}=0D 32395=0D PASS: flightrec5 (flight recorder option) PASS: flightrec5 (output file) PASS: flightrec5 (old output file is removed) PASS: flightrec5 (switch output file) testcase /home/prasadkr/systemtap/testsuite/systemtap.base/flightrec5.exp c= ompleted in 12 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/foreach_value.exp= ... PASS: foreach_value testcase /home/prasadkr/systemtap/testsuite/systemtap.base/foreach_value.ex= p completed in 4 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/func_alias.exp ... testing 64-bit func_alias Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.base/fu= nc_alias.c -g -m64 -lm -o /home/prasadkr/systemtap/testsuite/func_alias= .x64 (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.base/= func_alias.c -g -m64 -lm -o /home/prasadkr/systemtap/testsuite/func_alias.x= 64=0D subtest 64-bit func_alias direct Running stap -l %( CONFIG_UTRACE =3D=3D "y" %? process("/home/prasadkr/syst= emtap/testsuite/func_alias.x64").function("func_alias") %: never %) spawn stap -l %( CONFIG_UTRACE =3D=3D "y" %? process("/home/prasadkr/system= tap/testsuite/func_alias.x64").function("func_alias") %: never %)=0D process("/home/prasadkr/systemtap/testsuite/func_alias.x64").function("main= @/home/prasadkr/systemtap/testsuite/systemtap.base/func_alias.c:1")=0D PASS: 64-bit func_alias direct subtest 64-bit func_alias wildcard Running stap -l %( CONFIG_UTRACE =3D=3D "y" %? process("/home/prasadkr/syst= emtap/testsuite/func_alias.x64").function("func_alias*") %: never %) spawn stap -l %( CONFIG_UTRACE =3D=3D "y" %? process("/home/prasadkr/system= tap/testsuite/func_alias.x64").function("func_alias*") %: never %)=0D process("/home/prasadkr/systemtap/testsuite/func_alias.x64").function("main= @/home/prasadkr/systemtap/testsuite/systemtap.base/func_alias.c:1")=0D PASS: 64-bit func_alias wildcard testing 32-bit func_alias Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.base/fu= nc_alias.c -g -m32 -lm -o /home/prasadkr/systemtap/testsuite/func_alias= .x32 (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.base/= func_alias.c -g -m32 -lm -o /home/prasadkr/systemtap/testsuite/func_alias.x= 32=0D subtest 32-bit func_alias direct Running stap -l %( CONFIG_UTRACE =3D=3D "y" %? process("/home/prasadkr/syst= emtap/testsuite/func_alias.x32").function("func_alias") %: never %) spawn stap -l %( CONFIG_UTRACE =3D=3D "y" %? process("/home/prasadkr/system= tap/testsuite/func_alias.x32").function("func_alias") %: never %)=0D process("/home/prasadkr/systemtap/testsuite/func_alias.x32").function("main= @/home/prasadkr/systemtap/testsuite/systemtap.base/func_alias.c:1")=0D PASS: 32-bit func_alias direct subtest 32-bit func_alias wildcard Running stap -l %( CONFIG_UTRACE =3D=3D "y" %? process("/home/prasadkr/syst= emtap/testsuite/func_alias.x32").function("func_alias*") %: never %) spawn stap -l %( CONFIG_UTRACE =3D=3D "y" %? process("/home/prasadkr/system= tap/testsuite/func_alias.x32").function("func_alias*") %: never %)=0D process("/home/prasadkr/systemtap/testsuite/func_alias.x32").function("main= @/home/prasadkr/systemtap/testsuite/systemtap.base/func_alias.c:1")=0D PASS: 32-bit func_alias wildcard testcase /home/prasadkr/systemtap/testsuite/systemtap.base/func_alias.exp c= ompleted in 1 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/global_end.exp ... spawn stap /home/prasadkr/systemtap/testsuite/systemtap.base/global_end.stp= =0D [one,0x1]=3D0x1 [one,0x2]=3D0x2 [two,0x1]=3D0x3 [two,0x2]=3D0x4 =0D alpha["two",2]=3D0x4=0D alpha["two",1]=3D0x3=0D alpha["one",2]=3D0x2=0D alpha["one",1]=3D0x1=0D gamma=3D"abcdefghijklmnopqrstuvwxyz"=0D iota["two"]=3D"twelve"=0D iota["one"]=3D"eleven"=0D epsilon["one",1] @count=3D4 @min=3D1 @max=3D4 @sum=3D10 @avg=3D2=0D epsilon["two",2] @count=3D4 @min=3D10 @max=3D40 @sum=3D100 @avg=3D25=0D phi @count=3D4 @min=3D1 @max=3D4 @sum=3D10 @avg=3D2=0D spawn stap /home/prasadkr/systemtap/testsuite/systemtap.base/global_end2.st= p=0D Avg time =3D 2=0D PASS: global_end (12) spawn stap /home/prasadkr/systemtap/testsuite/systemtap.base/global_end_var= .stp=0D KFAIL: global_end_var (0) (PRMS: 6954) testcase /home/prasadkr/systemtap/testsuite/systemtap.base/global_end.exp c= ompleted in 9 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/global_init.exp .= .. executing: stap -v /home/prasadkr/systemtap/testsuite/systemtap.base/global= _init.stp spawn stap -v /home/prasadkr/systemtap/testsuite/systemtap.base/global_init= .stp=0D Pass 1: parsed user script and 75 library script(s) using 38656virt/30656re= s/7872shr kb, in 250usr/0sys/245real ms.=0D Pass 2: analyzed script: 4 probe(s), 0 function(s), 0 embed(s), 4 global(s)= using 39040virt/31296res/8064shr kb, in 0usr/0sys/5real ms.=0D Pass 3: translated to C into "/tmp/stap5KOYQH/stap_478b7ce1a67212734e0ff830= facbfcfe_1181.c" using 39040virt/31680res/8384shr kb, in 0usr/0sys/1real ms= .=0D Pass 4: compiled C into "stap_478b7ce1a67212734e0ff830facbfcfe_1181.ko" in = 1660usr/200sys/1870real ms.=0D Pass 5: starting run.=0D systemtap starting probe=0D PASS: systemtap.base/global_init.stp startup PASS: systemtap.base/global_init.stp load generation systemtap ending probe=0D systemtap test success=0D systemtap test success=0D Pass 5: run completed in 0usr/30sys/324real ms.=0D FAIL: systemtap.base/global_init.stp shutdown (eof) testcase /home/prasadkr/systemtap/testsuite/systemtap.base/global_init.exp = completed in 2 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/global_opt.exp ... spawn stap -G var1=3D29 -e global var1=3D9 ; probe begin { if (var1 =3D=3D = 29) println("systemtap test success") else println("systemtap test failure"= ) ; exit() }=0D systemtap test success=0D PASS: global_opt testcase /home/prasadkr/systemtap/testsuite/systemtap.base/global_opt.exp c= ompleted in 3 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/global_stat.exp .= .. spawn stap -e global var; probe never {var<<<1} probe begin {exit()}=0D var @count=3D0x0=0D PASS: global_stat testcase /home/prasadkr/systemtap/testsuite/systemtap.base/global_stat.exp = completed in 2 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/global_vars.exp .= .. executing: stap -v /home/prasadkr/systemtap/testsuite/systemtap.base/global= _vars.stp spawn stap -v /home/prasadkr/systemtap/testsuite/systemtap.base/global_vars= .stp=0D Pass 1: parsed user script and 75 library script(s) using 38656virt/30656re= s/7872shr kb, in 260usr/0sys/263real ms.=0D Pass 2: analyzed script: 4 probe(s), 0 function(s), 0 embed(s), 8 global(s)= using 39040virt/31360res/8064shr kb, in 10usr/0sys/6real ms.=0D Pass 3: translated to C into "/tmp/stapfs7Ykv/stap_fd82e9f25c845e28c1c36fdc= db419598_1687.c" using 39040virt/31680res/8384shr kb, in 0usr/0sys/2real ms= .=0D Pass 4: compiled C into "stap_fd82e9f25c845e28c1c36fdcdb419598_1687.ko" in = 1730usr/200sys/1937real ms.=0D Pass 5: starting run.=0D systemtap starting probe=0D PASS: systemtap.base/global_vars.stp startup PASS: systemtap.base/global_vars.stp load generation systemtap ending probe=0D systemtap test success=0D systemtap test success=0D systemtap test success=0D systemtap test success=0D systemtap test success=0D systemtap test success=0D Pass 5: run completed in 10usr/20sys/348real ms.=0D FAIL: systemtap.base/global_vars.stp shutdown (eof) testcase /home/prasadkr/systemtap/testsuite/systemtap.base/global_vars.exp = completed in 3 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/gtod.exp ... Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.base/gt= od.c -lm -o /home/prasadkr/systemtap/testsuite/gtod (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.base/= gtod.c -lm -o /home/prasadkr/systemtap/testsuite/gtod=0D spawn /home/prasadkr/systemtap/testsuite/systemtap.base/gtod.sh /home/prasa= dkr/systemtap/testsuite/systemtap.base/gtod.stp /home/prasadkr/systemtap/te= stsuite/gtod=0D 1296665688343312 :00 appl=0D 1296665688343317 :00 kern=0D 1296665688343322 :00 prog=0D 1296665688343322 :01 appl=0D 1296665688343323 :01 kern=0D 1296665688343324 :01 prog=0D 1296665688343324 :02 appl=0D 1296665688343325 :02 kern=0D 1296665688343327 :02 prog=0D 1296665688343327 :03 appl=0D 1296665688343328 :03 kern=0D 1296665688343329 :03 prog=0D 1296665688343329 :04 appl=0D 1296665688343330 :04 kern=0D 1296665688343332 :04 prog=0D 1296665688343332 :05 appl=0D 1296665688343333 :05 kern=0D 1296665688343334 :05 prog=0D 1296665688343334 :06 appl=0D 1296665688343335 :06 kern=0D 1296665688343337 :06 prog=0D 1296665688343337 :07 appl=0D 1296665688343338 :07 kern=0D 1296665688343339 :07 prog=0D 1296665688343339 :08 appl=0D 1296665688343340 :08 kern=0D 1296665688343342 :08 prog=0D 1296665688343342 :09 appl=0D 1296665688343343 :09 kern=0D 1296665688343344 :09 prog=0D 1296665688343344 :10 appl=0D 1296665688343345 :10 kern=0D 1296665688343347 :10 prog=0D 1296665688343347 :11 appl=0D 1296665688343348 :11 kern=0D 1296665688343349 :11 prog=0D 1296665688343349 :12 appl=0D 1296665688343350 :12 kern=0D 1296665688343352 :12 prog=0D 1296665688343352 :13 appl=0D 1296665688343353 :13 kern=0D 1296665688343354 :13 prog=0D 1296665688343354 :14 appl=0D 1296665688343355 :14 kern=0D 1296665688343357 :14 prog=0D 1296665688343357 :15 appl=0D 1296665688343358 :15 kern=0D 1296665688343359 :15 prog=0D 1296665688343359 :16 appl=0D 1296665688343360 :16 kern=0D 1296665688343362 :16 prog=0D 1296665688343362 :17 appl=0D 1296665688343363 :17 kern=0D 1296665688343364 :17 prog=0D 1296665688343364 :18 appl=0D 1296665688343365 :18 kern=0D 1296665688343367 :18 prog=0D 1296665688343367 :19 appl=0D 1296665688343368 :19 kern=0D 1296665688343369 :19 prog=0D 1296665688343369 :20 appl=0D 1296665688343370 :20 kern=0D 1296665688343372 :20 prog=0D 1296665688343372 :21 appl=0D 1296665688343373 :21 kern=0D 1296665688343374 :21 prog=0D 1296665688343374 :22 appl=0D 1296665688343375 :22 kern=0D 1296665688343377 :22 prog=0D 1296665688343377 :23 appl=0D 1296665688343377 :23 kern=0D 1296665688343379 :23 prog=0D 1296665688343379 :24 appl=0D 1296665688343380 :24 kern=0D 1296665688343382 :24 prog=0D 1296665688343382 :25 appl=0D 1296665688343382 :25 kern=0D 1296665688343384 :25 prog=0D 1296665688343384 :26 appl=0D 1296665688343385 :26 kern=0D 1296665688343387 :26 prog=0D 1296665688343387 :27 appl=0D 1296665688343387 :27 kern=0D 1296665688343389 :27 prog=0D 1296665688343389 :28 appl=0D 1296665688343390 :28 kern=0D 1296665688343391 :28 prog=0D 1296665688343392 :29 appl=0D 1296665688343392 :29 kern=0D 1296665688343394 :29 prog=0D 1296665688343394 :30 appl=0D 1296665688343395 :30 kern=0D 1296665688343396 :30 prog=0D 1296665688343397 :31 appl=0D 1296665688343397 :31 kern=0D 1296665688343399 :31 prog=0D 1296665688343399 :32 appl=0D 1296665688343400 :32 kern=0D 1296665688343401 :32 prog=0D 1296665688343401 :33 appl=0D 1296665688343402 :33 kern=0D 1296665688343404 :33 prog=0D 1296665688343404 :34 appl=0D 1296665688343405 :34 kern=0D 1296665688343406 :34 prog=0D 1296665688343407 :35 appl=0D 1296665688343407 :35 kern=0D 1296665688343409 :35 prog=0D 1296665688343409 :36 appl=0D 1296665688343410 :36 kern=0D 1296665688343411 :36 prog=0D 1296665688343411 :37 appl=0D 1296665688343412 :37 kern=0D 1296665688343414 :37 prog=0D 1296665688343414 :38 appl=0D 1296665688343415 :38 kern=0D 1296665688343416 :38 prog=0D 1296665688343416 :39 appl=0D 1296665688343417 :39 kern=0D 1296665688343419 :39 prog=0D 1296665688343419 :40 appl=0D 1296665688343420 :40 kern=0D 1296665688343421 :40 prog=0D 1296665688343421 :41 appl=0D 1296665688343422 :41 kern=0D 1296665688343424 :41 prog=0D 1296665688343424 :42 appl=0D 1296665688343425 :42 kern=0D 1296665688343426 :42 prog=0D 1296665688343426 :43 appl=0D 1296665688343427 :43 kern=0D 1296665688343429 :43 prog=0D 1296665688343429 :44 appl=0D 1296665688343430 :44 kern=0D 1296665688343431 :44 prog=0D 1296665688343431 :45 appl=0D 1296665688343432 :45 kern=0D 1296665688343434 :45 prog=0D 1296665688343434 :46 appl=0D 1296665688343435 :46 kern=0D 1296665688343436 :46 prog=0D 1296665688343436 :47 appl=0D 1296665688343437 :47 kern=0D 1296665688343439 :47 prog=0D 1296665688343439 :48 appl=0D 1296665688343440 :48 kern=0D 1296665688343441 :48 prog=0D 1296665688343441 :49 appl=0D 1296665688343442 :49 kern=0D 1296665688343444 :49 prog=0D 1296665688343444 :50 appl=0D 1296665688343445 :50 kern=0D 1296665688343446 :50 prog=0D 1296665688343446 :51 appl=0D 1296665688343447 :51 kern=0D 1296665688343449 :51 prog=0D 1296665688343449 :52 appl=0D 1296665688343450 :52 kern=0D 1296665688343451 :52 prog=0D 1296665688343451 :53 appl=0D 1296665688343452 :53 kern=0D 1296665688343454 :53 prog=0D 1296665688343454 :54 appl=0D 1296665688343455 :54 kern=0D 1296665688343456 :54 prog=0D 1296665688343456 :55 appl=0D 1296665688343457 :55 kern=0D 1296665688343459 :55 prog=0D 1296665688343459 :56 appl=0D 1296665688343460 :56 kern=0D 1296665688343461 :56 prog=0D 1296665688343461 :57 appl=0D 1296665688343462 :57 kern=0D 1296665688343464 :57 prog=0D 1296665688343464 :58 appl=0D 1296665688343465 :58 kern=0D 1296665688343466 :58 prog=0D 1296665688343466 :59 appl=0D 1296665688343467 :59 kern=0D 1296665688343469 :59 prog=0D 1296665688343469 :60 appl=0D 1296665688343470 :60 kern=0D 1296665688343471 :60 prog=0D 1296665688343471 :61 appl=0D 1296665688343472 :61 kern=0D 1296665688343474 :61 prog=0D 1296665688343474 :62 appl=0D 1296665688343474 :62 kern=0D 1296665688343476 :62 prog=0D 1296665688343476 :63 appl=0D 1296665688343477 :63 kern=0D 1296665688343479 :63 prog=0D 1296665688343479 :64 appl=0D 1296665688343479 :64 kern=0D 1296665688343481 :64 prog=0D 1296665688343481 :65 appl=0D 1296665688343482 :65 kern=0D 1296665688343484 :65 prog=0D 1296665688343484 :66 appl=0D 1296665688343484 :66 kern=0D 1296665688343486 :66 prog=0D 1296665688343486 :67 appl=0D 1296665688343487 :67 kern=0D 1296665688343488 :67 prog=0D 1296665688343489 :68 appl=0D 1296665688343489 :68 kern=0D 1296665688343491 :68 prog=0D 1296665688343491 :69 appl=0D 1296665688343492 :69 kern=0D 1296665688343493 :69 prog=0D 1296665688343494 :70 appl=0D 1296665688343494 :70 kern=0D 1296665688343496 :70 prog=0D 1296665688343496 :71 appl=0D 1296665688343497 :71 kern=0D 1296665688343498 :71 prog=0D 1296665688343499 :72 appl=0D 1296665688343499 :72 kern=0D 1296665688343501 :72 prog=0D 1296665688343501 :73 appl=0D 1296665688343502 :73 kern=0D 1296665688343503 :73 prog=0D 1296665688343504 :74 appl=0D 1296665688343504 :74 kern=0D 1296665688343506 :74 prog=0D 1296665688343506 :75 appl=0D 1296665688343507 :75 kern=0D 1296665688343508 :75 prog=0D 1296665688343508 :76 appl=0D 1296665688343509 :76 kern=0D 1296665688343511 :76 prog=0D 1296665688343511 :77 appl=0D 1296665688343512 :77 kern=0D 1296665688343513 :77 prog=0D 1296665688343513 :78 appl=0D 1296665688343514 :78 kern=0D 1296665688343516 :78 prog=0D 1296665688343516 :79 appl=0D 1296665688343517 :79 kern=0D 1296665688343518 :79 prog=0D 1296665688343518 :80 appl=0D 1296665688343519 :80 kern=0D 1296665688343521 :80 prog=0D 1296665688343521 :81 appl=0D 1296665688343522 :81 kern=0D 1296665688343523 :81 prog=0D 1296665688343523 :82 appl=0D 1296665688343524 :82 kern=0D 1296665688343526 :82 prog=0D 1296665688343526 :83 appl=0D 1296665688343527 :83 kern=0D 1296665688343528 :83 prog=0D 1296665688343528 :84 appl=0D 1296665688343529 :84 kern=0D 1296665688343531 :84 prog=0D 1296665688343531 :85 appl=0D 1296665688343532 :85 kern=0D 1296665688343533 :85 prog=0D 1296665688343533 :86 appl=0D 1296665688343534 :86 kern=0D 1296665688343536 :86 prog=0D 1296665688343536 :87 appl=0D 1296665688343537 :87 kern=0D 1296665688343538 :87 prog=0D 1296665688343538 :88 appl=0D 1296665688343539 :88 kern=0D 1296665688343541 :88 prog=0D 1296665688343541 :89 appl=0D 1296665688343542 :89 kern=0D 1296665688343543 :89 prog=0D 1296665688343543 :90 appl=0D 1296665688343544 :90 kern=0D 1296665688343546 :90 prog=0D 1296665688343546 :91 appl=0D 1296665688343547 :91 kern=0D 1296665688343548 :91 prog=0D 1296665688343548 :92 appl=0D 1296665688343549 :92 kern=0D 1296665688343551 :92 prog=0D 1296665688343551 :93 appl=0D 1296665688343552 :93 kern=0D 1296665688343553 :93 prog=0D 1296665688343553 :94 appl=0D 1296665688343554 :94 kern=0D 1296665688343556 :94 prog=0D 1296665688343556 :95 appl=0D 1296665688343557 :95 kern=0D 1296665688343558 :95 prog=0D 1296665688343558 :96 appl=0D 1296665688343559 :96 kern=0D 1296665688343561 :96 prog=0D 1296665688343561 :97 appl=0D 1296665688343562 :97 kern=0D 1296665688343563 :97 prog=0D 1296665688343563 :98 appl=0D 1296665688343564 :98 kern=0D 1296665688343566 :98 prog=0D 1296665688343566 :99 appl=0D 1296665688343567 :99 kern=0D 1296665688343568 :99 prog=0D spawn /home/prasadkr/systemtap/testsuite/systemtap.base/gtod.sh /home/prasa= dkr/systemtap/testsuite/systemtap.base/gtod.stp /home/prasadkr/systemtap/te= stsuite/gtod 10000=0D 1296665689620532 :00 appl=0D 1296665689620537 :00 kern=0D 1296665689620541 :00 prog=0D 1296665689630620 :01 appl=0D 1296665689630623 :01 kern=0D 1296665689630628 :01 prog=0D 1296665689640699 :02 appl=0D 1296665689640700 :02 kern=0D 1296665689640702 :02 prog=0D 1296665689650772 :03 appl=0D 1296665689650774 :03 kern=0D 1296665689650776 :03 prog=0D 1296665689660846 :04 appl=0D 1296665689660848 :04 kern=0D 1296665689660850 :04 prog=0D 1296665689670920 :05 appl=0D 1296665689670922 :05 kern=0D 1296665689670924 :05 prog=0D 1296665689680994 :06 appl=0D 1296665689680995 :06 kern=0D 1296665689680997 :06 prog=0D 1296665689691068 :07 appl=0D 1296665689691069 :07 kern=0D 1296665689691071 :07 prog=0D 1296665689701142 :08 appl=0D 1296665689701143 :08 kern=0D 1296665689701145 :08 prog=0D 1296665689711216 :09 appl=0D 1296665689711217 :09 kern=0D 1296665689711219 :09 prog=0D 1296665689721290 :10 appl=0D 1296665689721291 :10 kern=0D 1296665689721293 :10 prog=0D 1296665689731363 :11 appl=0D 1296665689731365 :11 kern=0D 1296665689731367 :11 prog=0D 1296665689741437 :12 appl=0D 1296665689741439 :12 kern=0D 1296665689741441 :12 prog=0D 1296665689751511 :13 appl=0D 1296665689751513 :13 kern=0D 1296665689751515 :13 prog=0D 1296665689761585 :14 appl=0D 1296665689761587 :14 kern=0D 1296665689761589 :14 prog=0D 1296665689771659 :15 appl=0D 1296665689771661 :15 kern=0D 1296665689771663 :15 prog=0D 1296665689781733 :16 appl=0D 1296665689781734 :16 kern=0D 1296665689781736 :16 prog=0D 1296665689791807 :17 appl=0D 1296665689791808 :17 kern=0D 1296665689791810 :17 prog=0D 1296665689801881 :18 appl=0D 1296665689801882 :18 kern=0D 1296665689801884 :18 prog=0D 1296665689811955 :19 appl=0D 1296665689811956 :19 kern=0D 1296665689811958 :19 prog=0D 1296665689822025 :20 appl=0D 1296665689822027 :20 kern=0D 1296665689822029 :20 prog=0D 1296665689832099 :21 appl=0D 1296665689832101 :21 kern=0D 1296665689832103 :21 prog=0D 1296665689842173 :22 appl=0D 1296665689842175 :22 kern=0D 1296665689842177 :22 prog=0D 1296665689852247 :23 appl=0D 1296665689852249 :23 kern=0D 1296665689852251 :23 prog=0D 1296665689862321 :24 appl=0D 1296665689862323 :24 kern=0D 1296665689862325 :24 prog=0D 1296665689872395 :25 appl=0D 1296665689872397 :25 kern=0D 1296665689872398 :25 prog=0D 1296665689882469 :26 appl=0D 1296665689882471 :26 kern=0D 1296665689882473 :26 prog=0D 1296665689892544 :27 appl=0D 1296665689892548 :27 kern=0D 1296665689892549 :27 prog=0D 1296665689902622 :28 appl=0D 1296665689902625 :28 kern=0D 1296665689902626 :28 prog=0D 1296665689912696 :29 appl=0D 1296665689912699 :29 kern=0D 1296665689912700 :29 prog=0D 1296665689922768 :30 appl=0D 1296665689922771 :30 kern=0D 1296665689922771 :30 prog=0D 1296665689932842 :31 appl=0D 1296665689932845 :31 kern=0D 1296665689932845 :31 prog=0D 1296665689942915 :32 appl=0D 1296665689942918 :32 kern=0D 1296665689942919 :32 prog=0D 1296665689952989 :33 appl=0D 1296665689952992 :33 kern=0D 1296665689952992 :33 prog=0D 1296665689963063 :34 appl=0D 1296665689963066 :34 kern=0D 1296665689963066 :34 prog=0D 1296665689973136 :35 appl=0D 1296665689973140 :35 kern=0D 1296665689973140 :35 prog=0D 1296665689983210 :36 appl=0D 1296665689983213 :36 kern=0D 1296665689983214 :36 prog=0D 1296665689993284 :37 appl=0D 1296665689993287 :37 kern=0D 1296665689993287 :37 prog=0D 1296665690003357 :38 appl=0D 1296665690003361 :38 kern=0D 1296665690003361 :38 prog=0D 1296665690013431 :39 appl=0D 1296665690013435 :39 kern=0D 1296665690013435 :39 prog=0D 1296665690023505 :40 appl=0D 1296665690023508 :40 kern=0D 1296665690023509 :40 prog=0D 1296665690033579 :41 appl=0D 1296665690033582 :41 kern=0D 1296665690033582 :41 prog=0D 1296665690043652 :42 appl=0D 1296665690043656 :42 kern=0D 1296665690043656 :42 prog=0D 1296665690053726 :43 appl=0D 1296665690053729 :43 kern=0D 1296665690053730 :43 prog=0D 1296665690063800 :44 appl=0D 1296665690063803 :44 kern=0D 1296665690063804 :44 prog=0D 1296665690073874 :45 appl=0D 1296665690073877 :45 kern=0D 1296665690073878 :45 prog=0D 1296665690083948 :46 appl=0D 1296665690083951 :46 kern=0D 1296665690083951 :46 prog=0D 1296665690094021 :47 appl=0D 1296665690094025 :47 kern=0D 1296665690094025 :47 prog=0D 1296665690104095 :48 appl=0D 1296665690104098 :48 kern=0D 1296665690104099 :48 prog=0D 1296665690114169 :49 appl=0D 1296665690114172 :49 kern=0D 1296665690114173 :49 prog=0D 1296665690124243 :50 appl=0D 1296665690124246 :50 kern=0D 1296665690124246 :50 prog=0D 1296665690134316 :51 appl=0D 1296665690134320 :51 kern=0D 1296665690134320 :51 prog=0D 1296665690144390 :52 appl=0D 1296665690144393 :52 kern=0D 1296665690144394 :52 prog=0D 1296665690154464 :53 appl=0D 1296665690154467 :53 kern=0D 1296665690154468 :53 prog=0D 1296665690164538 :54 appl=0D 1296665690164541 :54 kern=0D 1296665690164541 :54 prog=0D 1296665690174612 :55 appl=0D 1296665690174615 :55 kern=0D 1296665690174615 :55 prog=0D 1296665690184685 :56 appl=0D 1296665690184689 :56 kern=0D 1296665690184689 :56 prog=0D 1296665690194759 :57 appl=0D 1296665690194762 :57 kern=0D 1296665690194763 :57 prog=0D 1296665690204833 :58 appl=0D 1296665690204836 :58 kern=0D 1296665690204837 :58 prog=0D 1296665690214907 :59 appl=0D 1296665690214910 :59 kern=0D 1296665690214910 :59 prog=0D 1296665690224981 :60 appl=0D 1296665690224984 :60 kern=0D 1296665690224984 :60 prog=0D 1296665690235054 :61 appl=0D 1296665690235058 :61 kern=0D 1296665690235058 :61 prog=0D 1296665690245128 :62 appl=0D 1296665690245131 :62 kern=0D 1296665690245132 :62 prog=0D 1296665690255202 :63 appl=0D 1296665690255206 :63 kern=0D 1296665690255206 :63 prog=0D 1296665690265276 :64 appl=0D 1296665690265280 :64 kern=0D 1296665690265280 :64 prog=0D 1296665690275350 :65 appl=0D 1296665690275354 :65 kern=0D 1296665690275354 :65 prog=0D 1296665690285424 :66 appl=0D 1296665690285428 :66 kern=0D 1296665690285428 :66 prog=0D 1296665690295498 :67 appl=0D 1296665690295502 :67 kern=0D 1296665690295502 :67 prog=0D 1296665690305572 :68 appl=0D 1296665690305575 :68 kern=0D 1296665690305576 :68 prog=0D 1296665690315646 :69 appl=0D 1296665690315649 :69 kern=0D 1296665690315650 :69 prog=0D 1296665690325720 :70 appl=0D 1296665690325723 :70 kern=0D 1296665690325723 :70 prog=0D 1296665690335794 :71 appl=0D 1296665690335797 :71 kern=0D 1296665690335797 :71 prog=0D 1296665690345868 :72 appl=0D 1296665690345871 :72 kern=0D 1296665690345871 :72 prog=0D 1296665690355941 :73 appl=0D 1296665690355944 :73 kern=0D 1296665690355945 :73 prog=0D 1296665690366015 :74 appl=0D 1296665690366018 :74 kern=0D 1296665690366019 :74 prog=0D 1296665690376089 :75 appl=0D 1296665690376092 :75 kern=0D 1296665690376093 :75 prog=0D 1296665690386163 :76 appl=0D 1296665690386166 :76 kern=0D 1296665690386166 :76 prog=0D 1296665690396236 :77 appl=0D 1296665690396240 :77 kern=0D 1296665690396240 :77 prog=0D 1296665690406310 :78 appl=0D 1296665690406313 :78 kern=0D 1296665690406314 :78 prog=0D 1296665690416384 :79 appl=0D 1296665690416387 :79 kern=0D 1296665690416388 :79 prog=0D 1296665690426458 :80 appl=0D 1296665690426461 :80 kern=0D 1296665690426461 :80 prog=0D 1296665690436532 :81 appl=0D 1296665690436535 :81 kern=0D 1296665690436535 :81 prog=0D 1296665690446605 :82 appl=0D 1296665690446609 :82 kern=0D 1296665690446609 :82 prog=0D 1296665690456679 :83 appl=0D 1296665690456682 :83 kern=0D 1296665690456683 :83 prog=0D 1296665690466753 :84 appl=0D 1296665690466756 :84 kern=0D 1296665690466757 :84 prog=0D 1296665690476827 :85 appl=0D 1296665690476830 :85 kern=0D 1296665690476830 :85 prog=0D 1296665690486901 :86 appl=0D 1296665690486904 :86 kern=0D 1296665690486904 :86 prog=0D 1296665690496974 :87 appl=0D 1296665690496978 :87 kern=0D 1296665690496978 :87 prog=0D 1296665690507048 :88 appl=0D 1296665690507051 :88 kern=0D 1296665690507052 :88 prog=0D 1296665690517122 :89 appl=0D 1296665690517125 :89 kern=0D 1296665690517126 :89 prog=0D 1296665690527196 :90 appl=0D 1296665690527199 :90 kern=0D 1296665690527199 :90 prog=0D 1296665690537270 :91 appl=0D 1296665690537273 :91 kern=0D 1296665690537273 :91 prog=0D 1296665690547343 :92 appl=0D 1296665690547346 :92 kern=0D 1296665690547347 :92 prog=0D 1296665690557417 :93 appl=0D 1296665690557420 :93 kern=0D 1296665690557421 :93 prog=0D 1296665690567491 :94 appl=0D 1296665690567494 :94 kern=0D 1296665690567494 :94 prog=0D 1296665690577565 :95 appl=0D 1296665690577568 :95 kern=0D 1296665690577568 :95 prog=0D 1296665690587639 :96 appl=0D 1296665690587642 :96 kern=0D 1296665690587642 :96 prog=0D 1296665690597713 :97 appl=0D 1296665690597716 :97 kern=0D 1296665690597716 :97 prog=0D 1296665690607786 :98 appl=0D 1296665690607790 :98 kern=0D 1296665690607790 :98 prog=0D 1296665690617860 :99 appl=0D 1296665690617863 :99 kern=0D 1296665690617864 :99 prog=0D spawn /home/prasadkr/systemtap/testsuite/systemtap.base/gtod.sh /home/prasa= dkr/systemtap/testsuite/systemtap.base/gtod.stp /home/prasadkr/systemtap/te= stsuite/gtod 100000=0D 1296665691882441 :00 appl=0D 1296665691882445 :00 kern=0D 1296665691882450 :00 prog=0D 1296665691982523 :01 appl=0D 1296665691982526 :01 kern=0D 1296665691982531 :01 prog=0D 1296665692082602 :02 appl=0D 1296665692082603 :02 kern=0D 1296665692082605 :02 prog=0D 1296665692182676 :03 appl=0D 1296665692182677 :03 kern=0D 1296665692182679 :03 prog=0D 1296665692282745 :04 appl=0D 1296665692282747 :04 kern=0D 1296665692282749 :04 prog=0D 1296665692382819 :05 appl=0D 1296665692382821 :05 kern=0D 1296665692382823 :05 prog=0D 1296665692482893 :06 appl=0D 1296665692482895 :06 kern=0D 1296665692482897 :06 prog=0D 1296665692582967 :07 appl=0D 1296665692582968 :07 kern=0D 1296665692582971 :07 prog=0D 1296665692683041 :08 appl=0D 1296665692683042 :08 kern=0D 1296665692683045 :08 prog=0D 1296665692783115 :09 appl=0D 1296665692783116 :09 kern=0D 1296665692783119 :09 prog=0D 1296665692883194 :10 appl=0D 1296665692883196 :10 kern=0D 1296665692883199 :10 prog=0D 1296665692983270 :11 appl=0D 1296665692983272 :11 kern=0D 1296665692983274 :11 prog=0D 1296665693083344 :12 appl=0D 1296665693083345 :12 kern=0D 1296665693083348 :12 prog=0D 1296665693183418 :13 appl=0D 1296665693183419 :13 kern=0D 1296665693183421 :13 prog=0D 1296665693283492 :14 appl=0D 1296665693283493 :14 kern=0D 1296665693283495 :14 prog=0D 1296665693383564 :15 appl=0D 1296665693383565 :15 kern=0D 1296665693383567 :15 prog=0D 1296665693483637 :16 appl=0D 1296665693483639 :16 kern=0D 1296665693483641 :16 prog=0D 1296665693583711 :17 appl=0D 1296665693583712 :17 kern=0D 1296665693583714 :17 prog=0D 1296665693683785 :18 appl=0D 1296665693683786 :18 kern=0D 1296665693683788 :18 prog=0D 1296665693783859 :19 appl=0D 1296665693783860 :19 kern=0D 1296665693783862 :19 prog=0D 1296665693883933 :20 appl=0D 1296665693883934 :20 kern=0D 1296665693883936 :20 prog=0D 1296665693984006 :21 appl=0D 1296665693984008 :21 kern=0D 1296665693984010 :21 prog=0D 1296665694084080 :22 appl=0D 1296665694084082 :22 kern=0D 1296665694084084 :22 prog=0D 1296665694184154 :23 appl=0D 1296665694184155 :23 kern=0D 1296665694184157 :23 prog=0D 1296665694284228 :24 appl=0D 1296665694284229 :24 kern=0D 1296665694284232 :24 prog=0D 1296665694384302 :25 appl=0D 1296665694384303 :25 kern=0D 1296665694384306 :25 prog=0D 1296665694484376 :26 appl=0D 1296665694484377 :26 kern=0D 1296665694484379 :26 prog=0D 1296665694584449 :27 appl=0D 1296665694584451 :27 kern=0D 1296665694584453 :27 prog=0D 1296665694684523 :28 appl=0D 1296665694684524 :28 kern=0D 1296665694684527 :28 prog=0D 1296665694784597 :29 appl=0D 1296665694784598 :29 kern=0D 1296665694784600 :29 prog=0D 1296665694884672 :30 appl=0D 1296665694884674 :30 kern=0D 1296665694884676 :30 prog=0D 1296665694984747 :31 appl=0D 1296665694984749 :31 kern=0D 1296665694984751 :31 prog=0D 1296665695084821 :32 appl=0D 1296665695084823 :32 kern=0D 1296665695084825 :32 prog=0D 1296665695184895 :33 appl=0D 1296665695184897 :33 kern=0D 1296665695184899 :33 prog=0D 1296665695284969 :34 appl=0D 1296665695284970 :34 kern=0D 1296665695284973 :34 prog=0D 1296665695385043 :35 appl=0D 1296665695385044 :35 kern=0D 1296665695385046 :35 prog=0D 1296665695485116 :36 appl=0D 1296665695485118 :36 kern=0D 1296665695485120 :36 prog=0D 1296665695585190 :37 appl=0D 1296665695585192 :37 kern=0D 1296665695585194 :37 prog=0D 1296665695685246 :38 appl=0D 1296665695685247 :38 kern=0D 1296665695685249 :38 prog=0D 1296665695785319 :39 appl=0D 1296665695785321 :39 kern=0D 1296665695785323 :39 prog=0D 1296665695885394 :40 appl=0D 1296665695885395 :40 kern=0D 1296665695885397 :40 prog=0D 1296665695985467 :41 appl=0D 1296665695985469 :41 kern=0D 1296665695985471 :41 prog=0D 1296665696085542 :42 appl=0D 1296665696085543 :42 kern=0D 1296665696085546 :42 prog=0D 1296665696185616 :43 appl=0D 1296665696185617 :43 kern=0D 1296665696185619 :43 prog=0D 1296665696285690 :44 appl=0D 1296665696285692 :44 kern=0D 1296665696285694 :44 prog=0D 1296665696385765 :45 appl=0D 1296665696385766 :45 kern=0D 1296665696385769 :45 prog=0D 1296665696485840 :46 appl=0D 1296665696485841 :46 kern=0D 1296665696485843 :46 prog=0D 1296665696585913 :47 appl=0D 1296665696585915 :47 kern=0D 1296665696585917 :47 prog=0D 1296665696685988 :48 appl=0D 1296665696685989 :48 kern=0D 1296665696685991 :48 prog=0D 1296665696786061 :49 appl=0D 1296665696786063 :49 kern=0D 1296665696786065 :49 prog=0D 1296665696886136 :50 appl=0D 1296665696886137 :50 kern=0D 1296665696886139 :50 prog=0D 1296665696986209 :51 appl=0D 1296665696986211 :51 kern=0D 1296665696986213 :51 prog=0D 1296665697086285 :52 appl=0D 1296665697086287 :52 kern=0D 1296665697086289 :52 prog=0D 1296665697186359 :53 appl=0D 1296665697186360 :53 kern=0D 1296665697186363 :53 prog=0D 1296665697286434 :54 appl=0D 1296665697286435 :54 kern=0D 1296665697286437 :54 prog=0D 1296665697386507 :55 appl=0D 1296665697386509 :55 kern=0D 1296665697386511 :55 prog=0D 1296665697486578 :56 appl=0D 1296665697486579 :56 kern=0D 1296665697486581 :56 prog=0D 1296665697586651 :57 appl=0D 1296665697586653 :57 kern=0D 1296665697586655 :57 prog=0D 1296665697686726 :58 appl=0D 1296665697686727 :58 kern=0D 1296665697686730 :58 prog=0D 1296665697786800 :59 appl=0D 1296665697786801 :59 kern=0D 1296665697786803 :59 prog=0D 1296665697886874 :60 appl=0D 1296665697886875 :60 kern=0D 1296665697886878 :60 prog=0D 1296665697986948 :61 appl=0D 1296665697986949 :61 kern=0D 1296665697986951 :61 prog=0D 1296665698087022 :62 appl=0D 1296665698087024 :62 kern=0D 1296665698087026 :62 prog=0D 1296665698187096 :63 appl=0D 1296665698187097 :63 kern=0D 1296665698187100 :63 prog=0D 1296665698287171 :64 appl=0D 1296665698287172 :64 kern=0D 1296665698287174 :64 prog=0D 1296665698387244 :65 appl=0D 1296665698387246 :65 kern=0D 1296665698387248 :65 prog=0D 1296665698487319 :66 appl=0D 1296665698487321 :66 kern=0D 1296665698487323 :66 prog=0D 1296665698587394 :67 appl=0D 1296665698587396 :67 kern=0D 1296665698587398 :67 prog=0D 1296665698687469 :68 appl=0D 1296665698687470 :68 kern=0D 1296665698687473 :68 prog=0D 1296665698787543 :69 appl=0D 1296665698787544 :69 kern=0D 1296665698787547 :69 prog=0D 1296665698887618 :70 appl=0D 1296665698887619 :70 kern=0D 1296665698887621 :70 prog=0D 1296665698987692 :71 appl=0D 1296665698987693 :71 kern=0D 1296665698987695 :71 prog=0D 1296665699087766 :72 appl=0D 1296665699087768 :72 kern=0D 1296665699087770 :72 prog=0D 1296665699187840 :73 appl=0D 1296665699187842 :73 kern=0D 1296665699187844 :73 prog=0D 1296665699287915 :74 appl=0D 1296665699287916 :74 kern=0D 1296665699287918 :74 prog=0D 1296665699387990 :75 appl=0D 1296665699387992 :75 kern=0D 1296665699387994 :75 prog=0D 1296665699488065 :76 appl=0D 1296665699488067 :76 kern=0D 1296665699488069 :76 prog=0D 1296665699588139 :77 appl=0D 1296665699588141 :77 kern=0D 1296665699588143 :77 prog=0D 1296665699688214 :78 appl=0D 1296665699688215 :78 kern=0D 1296665699688218 :78 prog=0D 1296665699788288 :79 appl=0D 1296665699788290 :79 kern=0D 1296665699788292 :79 prog=0D 1296665699888364 :80 appl=0D 1296665699888366 :80 kern=0D 1296665699888368 :80 prog=0D 1296665699988439 :81 appl=0D 1296665699988440 :81 kern=0D 1296665699988442 :81 prog=0D 1296665700088513 :82 appl=0D 1296665700088515 :82 kern=0D 1296665700088517 :82 prog=0D 1296665700188587 :83 appl=0D 1296665700188589 :83 kern=0D 1296665700188591 :83 prog=0D 1296665700288662 :84 appl=0D 1296665700288663 :84 kern=0D 1296665700288666 :84 prog=0D 1296665700388736 :85 appl=0D 1296665700388737 :85 kern=0D 1296665700388740 :85 prog=0D 1296665700488811 :86 appl=0D 1296665700488812 :86 kern=0D 1296665700488815 :86 prog=0D 1296665700588885 :87 appl=0D 1296665700588886 :87 kern=0D 1296665700588889 :87 prog=0D 1296665700688960 :88 appl=0D 1296665700688961 :88 kern=0D 1296665700688963 :88 prog=0D 1296665700789034 :89 appl=0D 1296665700789035 :89 kern=0D 1296665700789037 :89 prog=0D 1296665700889109 :90 appl=0D 1296665700889110 :90 kern=0D 1296665700889112 :90 prog=0D 1296665700989182 :91 appl=0D 1296665700989184 :91 kern=0D 1296665700989186 :91 prog=0D 1296665701089257 :92 appl=0D 1296665701089259 :92 kern=0D 1296665701089261 :92 prog=0D 1296665701189331 :93 appl=0D 1296665701189332 :93 kern=0D 1296665701189335 :93 prog=0D 1296665701289406 :94 appl=0D 1296665701289407 :94 kern=0D 1296665701289409 :94 prog=0D 1296665701389480 :95 appl=0D 1296665701389481 :95 kern=0D 1296665701389483 :95 prog=0D 1296665701489555 :96 appl=0D 1296665701489556 :96 kern=0D 1296665701489558 :96 prog=0D 1296665701589629 :97 appl=0D 1296665701589630 :97 kern=0D 1296665701589632 :97 prog=0D 1296665701689703 :98 appl=0D 1296665701689705 :98 kern=0D 1296665701689707 :98 prog=0D 1296665701789777 :99 appl=0D 1296665701789779 :99 kern=0D 1296665701789781 :99 prog=0D PASS: gtod (300) testcase /home/prasadkr/systemtap/testsuite/systemtap.base/gtod.exp complet= ed in 19 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/if.exp ... executing: stap -v /home/prasadkr/systemtap/testsuite/systemtap.base/if.stp spawn stap -v /home/prasadkr/systemtap/testsuite/systemtap.base/if.stp=0D Pass 1: parsed user script and 75 library script(s) using 38528virt/30592re= s/7872shr kb, in 240usr/0sys/245real ms.=0D Pass 2: analyzed script: 2 probe(s), 0 function(s), 0 embed(s), 0 global(s)= using 39104virt/31296res/8064shr kb, in 10usr/0sys/5real ms.=0D Pass 3: translated to C into "/tmp/stapU9elgK/stap_62ca8dccac0690c56b6988ae= c05a43b6_755.c" using 39104virt/31680res/8384shr kb, in 0usr/0sys/0real ms.= =0D Pass 4: compiled C into "stap_62ca8dccac0690c56b6988aec05a43b6_755.ko" in 1= 580usr/200sys/1790real ms.=0D Pass 5: starting run.=0D systemtap starting probe=0D PASS: systemtap.base/if.stp startup PASS: systemtap.base/if.stp load generation systemtap ending probe=0D systemtap test success=0D systemtap test success=0D Pass 5: run completed in 0usr/20sys/328real ms.=0D FAIL: systemtap.base/if.stp shutdown (eof) testcase /home/prasadkr/systemtap/testsuite/systemtap.base/if.exp completed= in 2 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/implicitptr.exp .= .. Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.base/im= plicitptr.c -g -O0 -lm -o implicitptr.exe (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.base/= implicitptr.c -g -O0 -lm -o implicitptr.exe=0D PASS: implicitptr.c compile -O0 stap -L process("implicitptr.exe").statement("foo@*:7") reports: process("/= home/prasadkr/systemtap/testsuite/implicitptr.exe").statement("foo@/home/pr= asadkr/systemtap/testsuite/systemtap.base/implicitptr.c:9") $i:int $j:int* = $k:int** $l:int*** PASS: probe listing implicitptr-O0 (ijkl) executing: stap /home/prasadkr/systemtap/testsuite/systemtap.base/implicitp= tr.stp -g -c ./implicitptr.exe implicitptr.exe PASS: implicitptr-O0 Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.base/im= plicitptr.c -g -O1 -lm -o implicitptr.exe (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.base/= implicitptr.c -g -O1 -lm -o implicitptr.exe=0D PASS: implicitptr.c compile -O1 stap -L process("implicitptr.exe").statement("foo@*:7") reports: process("/= home/prasadkr/systemtap/testsuite/implicitptr.exe").statement("foo@/home/pr= asadkr/systemtap/testsuite/systemtap.base/implicitptr.c:7") $i:int PASS: probe listing implicitptr-O1 (i) exe_uses_implicit_ptr caught: child process exited abnormally implicitptr-O1 did not use implicit_ptr, skipping UNTESTED: implicitptr-O1 Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.base/im= plicitptr.c -g -O2 -lm -o implicitptr.exe (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.base/= implicitptr.c -g -O2 -lm -o implicitptr.exe=0D PASS: implicitptr.c compile -O2 stap -L process("implicitptr.exe").statement("foo@*:7") reports: process("/= home/prasadkr/systemtap/testsuite/implicitptr.exe").statement("foo@/home/pr= asadkr/systemtap/testsuite/systemtap.base/implicitptr.c:7") $i:int PASS: probe listing implicitptr-O2 (i) exe_uses_implicit_ptr caught: child process exited abnormally implicitptr-O2 did not use implicit_ptr, skipping UNTESTED: implicitptr-O2 Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.base/im= plicitptr.c -g -O3 -lm -o implicitptr.exe (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.base/= implicitptr.c -g -O3 -lm -o implicitptr.exe=0D PASS: implicitptr.c compile -O3 stap -L process("implicitptr.exe").statement("foo@*:7") reports: process("/= home/prasadkr/systemtap/testsuite/implicitptr.exe").statement("foo@/home/pr= asadkr/systemtap/testsuite/systemtap.base/implicitptr.c:7") $i:int PASS: probe listing implicitptr-O3 (i) exe_uses_implicit_ptr caught: child process exited abnormally implicitptr-O3 did not use implicit_ptr, skipping UNTESTED: implicitptr-O3 testcase /home/prasadkr/systemtap/testsuite/systemtap.base/implicitptr.exp = completed in 5 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/inc.exp ... executing: stap -v /home/prasadkr/systemtap/testsuite/systemtap.base/inc.stp spawn stap -v /home/prasadkr/systemtap/testsuite/systemtap.base/inc.stp=0D Pass 1: parsed user script and 75 library script(s) using 38592virt/30656re= s/7872shr kb, in 240usr/0sys/246real ms.=0D Pass 2: analyzed script: 2 probe(s), 0 function(s), 0 embed(s), 1 global(s)= using 38976virt/31296res/8064shr kb, in 0usr/0sys/5real ms.=0D Pass 3: translated to C into "/tmp/stapGcWQXD/stap_7f172f140a3309ce10a18536= 39c331d8_889.c" using 39104virt/31680res/8384shr kb, in 10usr/0sys/1real ms= .=0D Pass 4: compiled C into "stap_7f172f140a3309ce10a1853639c331d8_889.ko" in 1= 640usr/200sys/1857real ms.=0D Pass 5: starting run.=0D systemtap starting probe=0D PASS: systemtap.base/inc.stp startup PASS: systemtap.base/inc.stp load generation systemtap ending probe=0D systemtap test success=0D Pass 5: run completed in 10usr/20sys/344real ms.=0D FAIL: systemtap.base/inc.stp shutdown (eof) testcase /home/prasadkr/systemtap/testsuite/systemtap.base/inc.exp complete= d in 3 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/inlinedvars.exp .= .. Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.base/in= linedvars.c -g -O0 -lm -o inlinedvars.exe (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.base/= inlinedvars.c -g -O0 -lm -o inlinedvars.exe=0D PASS: inlinedvars.c compile -O0 executing: stap /home/prasadkr/systemtap/testsuite/systemtap.base/inlinedva= rs.stp inlinedvars.exe -c ./inlinedvars.exe PASS: inlinedvars--O0 Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.base/in= linedvars.c -g -O1 -lm -o inlinedvars.exe (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.base/= inlinedvars.c -g -O1 -lm -o inlinedvars.exe=0D PASS: inlinedvars.c compile -O1 executing: stap /home/prasadkr/systemtap/testsuite/systemtap.base/inlinedva= rs.stp inlinedvars.exe -c ./inlinedvars.exe PASS: inlinedvars--O1 Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.base/in= linedvars.c -g -O2 -lm -o inlinedvars.exe (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.base/= inlinedvars.c -g -O2 -lm -o inlinedvars.exe=0D PASS: inlinedvars.c compile -O2 executing: stap /home/prasadkr/systemtap/testsuite/systemtap.base/inlinedva= rs.stp inlinedvars.exe -c ./inlinedvars.exe PASS: inlinedvars--O2 Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.base/in= linedvars.c -g -O3 -lm -o inlinedvars.exe (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.base/= inlinedvars.c -g -O3 -lm -o inlinedvars.exe=0D PASS: inlinedvars.c compile -O3 executing: stap /home/prasadkr/systemtap/testsuite/systemtap.base/inlinedva= rs.stp inlinedvars.exe -c ./inlinedvars.exe PASS: inlinedvars--O3 testcase /home/prasadkr/systemtap/testsuite/systemtap.base/inlinedvars.exp = completed in 15 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/itrace.exp ... stap -g -e " %{ #include "ptrace_compatibility.h" %} function has_single_step() %{ THIS->__retvalue =3D arch_has_single_step(); /* pure */ %} probe begin { printf("has_single_step: %d\n", has_single_step()) exit() } " spawn stap -g -e=20 %{ #include "ptrace_compatibility.h" %} function has_single_step() %{ THIS->__retvalue =3D arch_has_single_step(); /* pure */ %} probe begin { printf("has_single_step: %d\n", has_single_step()) exit() } =0D has_single_step: 1=0D PASS: itrace single step check stap -g -e " %{ #include "ptrace_compatibility.h" %} function has_block_step() %{ THIS->__retvalue =3D arch_has_block_step(); /* pure */ %} probe begin { printf("has_block_step: %d\n", has_block_step()) exit() } " spawn stap -g -e=20 %{ #include "ptrace_compatibility.h" %} function has_block_step() %{ THIS->__retvalue =3D arch_has_block_step(); /* pure */ %} probe begin { printf("has_block_step: %d\n", has_block_step()) exit() } =0D has_block_step: 1=0D PASS: itrace block step check executing: stap -v -e { global instrs =3D 0 probe begin { printf("systemtap starting probe\n") } probe process("/home/prasadkr/systemtap/testsuite/ls_4833").insn { instrs +=3D 1 } probe end { printf("systemtap ending probe\n") if (instrs > 1000) { printf("instrs > 1000 (%d)\n", instrs) } else { printf("instrs <=3D 1000 (%d)\n", instrs) } } } spawn stap -v -e=20 global instrs =3D 0 probe begin { printf("systemtap starting probe\n") } probe process("/home/prasadkr/systemtap/testsuite/ls_4833").insn { instrs +=3D 1 } probe end { printf("systemtap ending probe\n") if (instrs > 1000) { printf("instrs > 1000 (%d)\n", instrs) } else { printf("instrs <=3D 1000 (%d)\n", instrs) } } =0D Pass 1: parsed user script and 75 library script(s) using 38528virt/30720re= s/7872shr kb, in 240usr/0sys/245real ms.=0D Pass 2: analyzed script: 3 probe(s), 0 function(s), 0 embed(s), 1 global(s)= using 39104virt/31424res/8128shr kb, in 0usr/0sys/5real ms.=0D Pass 3: translated to C into "/tmp/stapReRqWk/stap_4a67affa6651b78b54bf82ca= d8471490_1028.c" using 142848virt/32192res/8704shr kb, in 30usr/120sys/147r= eal ms.=0D Pass 4: compiled C into "stap_4a67affa6651b78b54bf82cad8471490_1028.ko" in = 2240usr/200sys/2456real ms.=0D Pass 5: starting run.=0D systemtap starting probe=0D PASS: itrace_single1 startup spawn /home/prasadkr/systemtap/testsuite/ls_4833=0D PASS: itrace_single1 load generation systemtap ending probe=0D instrs > 1000 (567152)=0D Pass 5: run completed in 0usr/30sys/1328real ms.=0D PASS: itrace_single1 shutdown and output metric: itrace_single1 240 0 245 0 0 5 30 120 147 2240 200 2456 0 30 1328 executing: stap -v -e { global instrs =3D 0, itrace_on =3D 0, start_timer =3D 0 probe begin { start_timer =3D 1; printf("systemtap starting probe\n") } probe process("/home/prasadkr/systemtap/testsuite/ls_4833").insn if (it= race_on) { instrs +=3D 1 if (instrs =3D=3D 5) exit() } probe timer.ms(1) if (start_timer) {=20=20=20 itrace_on =3D 1 } probe timer.ms(10) if (start_timer) {=20=20=20 itrace_on =3D 0 } probe end { printf("systemtap ending probe\n") printf("itraced =3D %d\n", instrs) } } spawn stap -v -e=20 global instrs =3D 0, itrace_on =3D 0, start_timer =3D 0 probe begin { start_timer =3D 1; printf("systemtap starting probe\n") } probe process("/home/prasadkr/systemtap/testsuite/ls_4833").insn if (it= race_on) { instrs +=3D 1 if (instrs =3D=3D 5) exit() } probe timer.ms(1) if (start_timer) {=20=20=20 itrace_on =3D 1 } probe timer.ms(10) if (start_timer) {=20=20=20 itrace_on =3D 0 } probe end { printf("systemtap ending probe\n") printf("itraced =3D %d\n", instrs) } =0D Pass 1: parsed user script and 75 library script(s) using 38528virt/30720re= s/7872shr kb, in 250usr/0sys/246real ms.=0D Pass 2: analyzed script: 5 probe(s), 1 function(s), 0 embed(s), 3 global(s)= using 39104virt/31424res/8128shr kb, in 10usr/0sys/5real ms.=0D Pass 3: translated to C into "/tmp/stapNNUb4F/stap_7e0b5e2f9d8d8cac163b9839= de00276d_1462.c" using 142848virt/32192res/8704shr kb, in 20usr/110sys/134r= eal ms.=0D Pass 4: compiled C into "stap_7e0b5e2f9d8d8cac163b9839de00276d_1462.ko" in = 2370usr/210sys/2586real ms.=0D Pass 5: starting run.=0D systemtap starting probe=0D PASS: itrace_single2 startup spawn /home/prasadkr/systemtap/testsuite/ls_4833=0D PASS: itrace_single2 load generation systemtap ending probe=0D itraced =3D 5=0D Pass 5: run completed in 0usr/20sys/329real ms.=0D PASS: itrace_single2 shutdown and output metric: itrace_single2 250 0 246 10 0 5 20 110 134 2370 210 2586 0 20 329 executing: stap -v -e { global branches =3D 0 probe begin { printf("systemtap starting probe\n") } probe process("/home/prasadkr/systemtap/testsuite/ls_4833").insn.block { branches +=3D 1 if (branches =3D=3D 5) exit() } probe end { printf("systemtap ending probe\n") printf("itraced block mode =3D %d\n", branches) } } spawn stap -v -e=20 global branches =3D 0 probe begin { printf("systemtap starting probe\n") } probe process("/home/prasadkr/systemtap/testsuite/ls_4833").insn.block { branches +=3D 1 if (branches =3D=3D 5) exit() } probe end { printf("systemtap ending probe\n") printf("itraced block mode =3D %d\n", branches) } =0D Pass 1: parsed user script and 75 library script(s) using 38592virt/30720re= s/7872shr kb, in 250usr/0sys/263real ms.=0D Pass 2: analyzed script: 3 probe(s), 1 function(s), 0 embed(s), 1 global(s)= using 38976virt/31424res/8128shr kb, in 10usr/0sys/6real ms.=0D Pass 3: translated to C into "/tmp/stap9IHnKS/stap_7cbcb098ce981f23a39b9aaa= f514dbfc_1143.c" using 142848virt/32192res/8704shr kb, in 20usr/120sys/141r= eal ms.=0D Pass 4: compiled C into "stap_7cbcb098ce981f23a39b9aaaf514dbfc_1143.ko" in = 2320usr/200sys/2541real ms.=0D Pass 5: starting run.=0D systemtap starting probe=0D PASS: itrace_block1 startup spawn /home/prasadkr/systemtap/testsuite/ls_4833=0D PASS: itrace_block1 load generation systemtap ending probe=0D itraced block mode =3D 5=0D Pass 5: run completed in 10usr/20sys/343real ms.=0D PASS: itrace_block1 shutdown and output metric: itrace_block1 250 0 263 10 0 6 20 120 141 2320 200 2541 10 20 343 executing: stap -v -e { global instrs =3D 0, itrace_on =3D 0, start_timer =3D 0 probe begin { start_timer =3D 1; printf("systemtap starting probe\n") } probe process("/home/prasadkr/systemtap/testsuite/ls_4833").insn.block = if (itrace_on) { instrs +=3D 1 if (instrs =3D=3D 5) exit() } probe timer.ms(1) if (start_timer) {=20=20=20 itrace_on =3D 1 } probe timer.ms(10) if (start_timer) {=20=20=20 itrace_on =3D 0 } probe end { printf("systemtap ending probe\n") printf("itraced =3D %d\n", instrs) } } spawn stap -v -e=20 global instrs =3D 0, itrace_on =3D 0, start_timer =3D 0 probe begin { start_timer =3D 1; printf("systemtap starting probe\n") } probe process("/home/prasadkr/systemtap/testsuite/ls_4833").insn.block = if (itrace_on) { instrs +=3D 1 if (instrs =3D=3D 5) exit() } probe timer.ms(1) if (start_timer) {=20=20=20 itrace_on =3D 1 } probe timer.ms(10) if (start_timer) {=20=20=20 itrace_on =3D 0 } probe end { printf("systemtap ending probe\n") printf("itraced =3D %d\n", instrs) } =0D Pass 1: parsed user script and 75 library script(s) using 38528virt/30720re= s/7872shr kb, in 270usr/0sys/263real ms.=0D Pass 2: analyzed script: 5 probe(s), 1 function(s), 0 embed(s), 3 global(s)= using 39104virt/31424res/8128shr kb, in 0usr/0sys/6real ms.=0D Pass 3: translated to C into "/tmp/stapGBO45d/stap_f4ccadd63eeb1f2d275fa127= 7db0b460_1474.c" using 142848virt/32192res/8704shr kb, in 20usr/120sys/141r= eal ms.=0D Pass 4: compiled C into "stap_f4ccadd63eeb1f2d275fa1277db0b460_1474.ko" in = 2460usr/200sys/2664real ms.=0D Pass 5: starting run.=0D systemtap starting probe=0D PASS: itrace_block2 startup spawn /home/prasadkr/systemtap/testsuite/ls_4833=0D PASS: itrace_block2 load generation systemtap ending probe=0D itraced =3D 5=0D Pass 5: run completed in 0usr/20sys/343real ms.=0D PASS: itrace_block2 shutdown and output metric: itrace_block2 270 0 263 0 0 6 20 120 141 2460 200 2664 0 20 343 testcase /home/prasadkr/systemtap/testsuite/systemtap.base/itrace.exp compl= eted in 22 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/kfunct.exp ... executing: stap -v /home/prasadkr/systemtap/testsuite/systemtap.base/kfunct= .stp spawn stap -v /home/prasadkr/systemtap/testsuite/systemtap.base/kfunct.stp= =0D Pass 1: parsed user script and 75 library script(s) using 38528virt/30592re= s/7872shr kb, in 240usr/0sys/246real ms.=0D Pass 2: analyzed script: 3 probe(s), 0 function(s), 0 embed(s), 1 global(s)= using 162816virt/113728res/69888shr kb, in 440usr/10sys/443real ms.=0D Pass 3: translated to C into "/tmp/stapKUSIBI/stap_2178e8fdf793a85563c55da8= 3ccbd41c_881.c" using 162816virt/115264res/71424shr kb, in 1100usr/10sys/11= 23real ms.=0D Pass 4: compiled C into "stap_2178e8fdf793a85563c55da83ccbd41c_881.ko" in 2= 190usr/210sys/2403real ms.=0D Pass 5: starting run.=0D systemtap starting probe=0D PASS: systemtap.base/kfunct.stp startup PASS: systemtap.base/kfunct.stp load generation systemtap ending probe=0D count =3D 30=0D Pass 5: run completed in 10usr/30sys/394real ms.=0D PASS: systemtap.base/kfunct.stp shutdown and output metric: systemtap.base/kfunct.stp 240 0 246 440 10 443 1100 10 1123 2190 2= 10 2403 10 30 394 testcase /home/prasadkr/systemtap/testsuite/systemtap.base/kfunct.exp compl= eted in 5 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/kmodule.exp ... executing: stap -v /home/prasadkr/systemtap/testsuite/systemtap.base/kmodul= e.stp spawn stap -v /home/prasadkr/systemtap/testsuite/systemtap.base/kmodule.stp= =0D Pass 1: parsed user script and 75 library script(s) using 38528virt/30720re= s/7872shr kb, in 240usr/0sys/245real ms.=0D Pass 2: analyzed script: 4 probe(s), 0 function(s), 0 embed(s), 1 global(s)= using 143872virt/33280res/8576shr kb, in 60usr/140sys/342real ms.=0D Pass 3: translated to C into "/tmp/stapAS9ACp/stap_7ec1fef86119fcbbea6edfc3= 1b656eed_1148.c" using 148224virt/39744res/12992shr kb, in 130usr/10sys/144= real ms.=0D Pass 4: compiled C into "stap_7ec1fef86119fcbbea6edfc31b656eed_1148.ko" in = 1830usr/200sys/2055real ms.=0D Pass 5: starting run.=0D systemtap starting probe=0D PASS: systemtap.base/kmodule.stp startup spawn -ignore SIGHUP sync=0D PASS: systemtap.base/kmodule.stp load generation systemtap ending probe=0D count =3D 0=0D PASS: systemtap.base/kmodule.stp shutdown and output Pass 5: run completed in 20usr/20sys/835real ms.=0D metric: systemtap.base/kmodule.stp 240 0 245 60 140 342 130 10 144 1830 20= 0 2055 20 20 835 testcase /home/prasadkr/systemtap/testsuite/systemtap.base/kmodule.exp comp= leted in 4 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/kprobes.exp ... executing: stap -v /home/prasadkr/systemtap/testsuite/systemtap.base/kprobe= s.stp spawn stap -v /home/prasadkr/systemtap/testsuite/systemtap.base/kprobes.stp= =0D Pass 1: parsed user script and 75 library script(s) using 38528virt/30656re= s/7872shr kb, in 240usr/0sys/245real ms.=0D Pass 2: analyzed script: 3 probe(s), 1 function(s), 0 embed(s), 1 global(s)= using 39104virt/31424res/8128shr kb, in 0usr/0sys/5real ms.=0D Pass 3: translated to C into "/tmp/stap7AX4S8/stap_920af04477215a449b3e6355= c5a1d633_1022.c" using 39104virt/31808res/8448shr kb, in 0usr/0sys/1real ms= .=0D Pass 4: compiled C into "stap_920af04477215a449b3e6355c5a1d633_1022.ko" in = 1720usr/200sys/1924real ms.=0D Pass 5: starting run.=0D systemtap starting probe=0D PASS: systemtap.base/kprobes.stp startup PASS: systemtap.base/kprobes.stp load generation systemtap ending probe=0D probe point hit=0D Pass 5: run completed in 20usr/20sys/398real ms.=0D PASS: systemtap.base/kprobes.stp shutdown and output testcase /home/prasadkr/systemtap/testsuite/systemtap.base/kprobes.exp comp= leted in 2 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/kretprobe-vars.ex= p ... executing: stap -v -c {cat /dev/null} /home/prasadkr/systemtap/testsuite/sy= stemtap.base/kretprobe-vars.stp spawn stap -v -c cat /dev/null /home/prasadkr/systemtap/testsuite/systemtap= .base/kretprobe-vars.stp=0D Pass 1: parsed user script and 75 library script(s) using 38528virt/30656re= s/7872shr kb, in 270usr/0sys/264real ms.=0D Pass 2: analyzed script: 4 probe(s), 14 function(s), 4 embed(s), 7 global(s= ) using 163904virt/53440res/9024shr kb, in 500usr/130sys/694real ms.=0D Pass 3: translated to C into "/tmp/stap7O2wtU/stap_46c325a694e8a4c869716726= 42276219_7435.c" using 163328virt/57536res/13376shr kb, in 1210usr/10sys/12= 31real ms.=0D Pass 4: compiled C into "stap_46c325a694e8a4c86971672642276219_7435.ko" in = 2510usr/210sys/2757real ms.=0D Pass 5: starting run.=0D systemtap starting probe=0D systemtap ending probe=0D systemtap test success=0D Pass 5: run completed in 10usr/10sys/142real ms.=0D PASS: systemtap.base/kretprobe-vars.stp startup PASS: systemtap.base/kretprobe-vars.stp load generation FAIL: systemtap.base/kretprobe-vars.stp shutdown (eof) testcase /home/prasadkr/systemtap/testsuite/systemtap.base/kretprobe-vars.e= xp completed in 5 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/labels.exp ... Executing on host: gcc /home/prasadkr/systemtap/testsuite/labels.c -g -lm= -o /home/prasadkr/systemtap/testsuite/labels.x (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/labels.c -g -lm= -o /home/prasadkr/systemtap/testsuite/labels.x=0D PASS: compiling labels.c -g spawn stap --use-server-on-error=3Dno -l process("/home/prasadkr/systemtap/= testsuite/labels.x").function("foo@/home/prasadkr/systemtap/testsuite/label= s.c:10").label("*")=0D PASS: labels :N .label spawn stap -l process("/home/prasadkr/systemtap/testsuite/labels.x").functi= on("foo@/home/prasadkr/systemtap/testsuite/labels.c:4").label("*")=0D process("/home/prasadkr/systemtap/testsuite/labels.x").function("foo@/home/= prasadkr/systemtap/testsuite/labels.c:5").label("init_an_int")=0D PASS: labels :N .label spawn stap -l process("/home/prasadkr/systemtap/testsuite/labels.x").functi= on("*").label("*")=0D process("/home/prasadkr/systemtap/testsuite/labels.x").function("foo@/home/= prasadkr/systemtap/testsuite/labels.c:5").label("init_an_int")=0D process("/home/prasadkr/systemtap/testsuite/labels.x").function("main@/home= /prasadkr/systemtap/testsuite/labels.c:16").label("init_an_int")=0D process("/home/prasadkr/systemtap/testsuite/labels.x").function("main@/home= /prasadkr/systemtap/testsuite/labels.c:18").label("init_an_int_again")=0D process("/home/prasadkr/systemtap/testsuite/labels.x").function("main@/home= /prasadkr/systemtap/testsuite/labels.c:21").label("ptr_inited")=0D PASS: labels -l .label spawn stap -c /home/prasadkr/systemtap/testsuite/labels.x /home/prasadkr/sy= stemtap/testsuite/labels.stp spawn stap -c /home/prasadkr/systemtap/testsuite/labels.x /home/prasadkr/sy= stemtap/testsuite/labels.stp=0D VARS a=3D0x0 b=3D0x0 c=3D0x800b8f18c0=0D init_an_int=0D VARS a=3D0x2 b=3D0x0 c=3D0x800b8f18c0=0D VARS a=3D0x2 b=3D0x3 c=3D0x10000850=0D PASS: labels exe .label spawn sh /home/prasadkr/systemtap/testsuite/label.sh=0D DW_AT_low_pc : 0x10000628 =0D spawn stap -p2 -l process("/home/prasadkr/systemtap/testsuite/labels.x").st= atement(0x10000628)=0D process("/home/prasadkr/systemtap/testsuite/labels.x").statement(0x10000628= )=0D PASS: labels exe .statement Executing on host: gcc /home/prasadkr/systemtap/testsuite/labels.c -g -sha= red -fPIC -lm -o /home/prasadkr/systemtap/testsuite/labels.so (timeou= t =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/labels.c -g -sh= ared -fPIC -lm -o /home/prasadkr/systemtap/testsuite/labels.so=0D PASS: compiling labels.c -g spawn stap -p2 -l process("/home/prasadkr/systemtap/testsuite/labels.so").f= unction("*").label("init_an_int_again")=0D process("/home/prasadkr/systemtap/testsuite/labels.so").function("main@/hom= e/prasadkr/systemtap/testsuite/labels.c:18").label("init_an_int_again")=0D PASS: labels so .label spawn sh /home/prasadkr/systemtap/testsuite/label.sh=0D DW_AT_low_pc : 0x92c =0D spawn stap -p2 -l process("/home/prasadkr/systemtap/testsuite/labels.so").s= tatement(0x92c)=0D process("/home/prasadkr/systemtap/testsuite/labels.so").statement(0x92c)=0D PASS: labels so .statement testcase /home/prasadkr/systemtap/testsuite/systemtap.base/labels.exp compl= eted in 11 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/limits.exp ... executing: stap /home/prasadkr/systemtap/testsuite/systemtap.base/limits.stp PASS: systemtap.base/limits.stp testcase /home/prasadkr/systemtap/testsuite/systemtap.base/limits.exp compl= eted in 3 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/logical_and.exp .= .. executing: stap -v /home/prasadkr/systemtap/testsuite/systemtap.base/logica= l_and.stp spawn stap -v /home/prasadkr/systemtap/testsuite/systemtap.base/logical_and= .stp=0D Pass 1: parsed user script and 75 library script(s) using 38528virt/30720re= s/7872shr kb, in 240usr/0sys/245real ms.=0D Pass 2: analyzed script: 2 probe(s), 0 function(s), 0 embed(s), 4 global(s)= using 39104virt/31424res/8064shr kb, in 10usr/0sys/5real ms.=0D Pass 3: translated to C into "/tmp/stapGvzgSk/stap_7720b9a6fa9caa12bc8e76a5= 3dbdc678_1177.c" using 39104virt/31744res/8384shr kb, in 0usr/0sys/1real ms= .=0D Pass 4: compiled C into "stap_7720b9a6fa9caa12bc8e76a53dbdc678_1177.ko" in = 1610usr/200sys/1828real ms.=0D Pass 5: starting run.=0D systemtap starting probe=0D PASS: systemtap.base/logical_and.stp startup PASS: systemtap.base/logical_and.stp load generation systemtap ending probe=0D systemtap test success=0D systemtap test success=0D systemtap test success=0D systemtap test success=0D Pass 5: run completed in 20usr/20sys/325real ms.=0D FAIL: systemtap.base/logical_and.stp shutdown (eof) testcase /home/prasadkr/systemtap/testsuite/systemtap.base/logical_and.exp = completed in 2 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/marker.exp ... UNTESTED: K_MARKER01 : no kernel markers present UNTESTED: K_MARKER02 : no kernel markers present running stap -v -p4 -e "probe kernel.mark(\"X_marker_that_does_not_exist_X\= ") { }" spawn stap -v -p4 -e probe kernel.mark("X_marker_that_does_not_exist_X") { = }=0D Pass 1: parsed user script and 75 library script(s) using 38272virt/30400re= s/7808shr kb, in 270usr/0sys/263real ms.=0D semantic error: no match while resolving probe point kernel.mark("X_marker_= that_does_not_exist_X")=0D Pass 2: analyzed script: 0 probe(s), 0 function(s), 0 embed(s), 0 global(s)= using 38848virt/31104res/8000shr kb, in 0usr/0sys/6real ms.=0D Pass 2: analysis failed. Try again with another '--vp 01' option.=0D PASS: K_MARKER03 compilation failed correctly UNTESTED: K_MARKER04 : no kernel markers present UNTESTED: K_MARKER05 : no kernel markers present UNTESTED: K_MARKER06 : no kernel markers present UNTESTED: K_MARKER07 : no kernel markers present UNTESTED: K_MARKER08 : no kernel markers present UNTESTED: K_MARKER09 : no kernel markers present UNTESTED: K_MARKER10 : no kernel markers present UNTESTED: K_MARKER11 : no kernel markers present UNTESTED: K_MARKER12 : no kernel markers present UNTESTED: K_MARKER13 : no kernel markers present UNTESTED: K_MARKER14 : no kernel markers present UNTESTED: K_MARKER15 : no kernel markers present UNTESTED: K_MARKER16 : no kernel markers present UNTESTED: K_MARKER17 : no kernel markers present UNTESTED: K_MARKER18 : no kernel markers present UNTESTED: K_MARKER19 : no kernel markers present UNTESTED: K_MARKER20 : no kernel markers present UNTESTED: K_MARKER21 : no kernel markers present UNTESTED: K_MARKER22 : no kernel markers present UNTESTED: K_MARKER23 : no kernel markers present testcase /home/prasadkr/systemtap/testsuite/systemtap.base/marker.exp compl= eted in 0 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/maxactive.exp ... executing: stap -v -e { global foo probe kernel.function("vfs_read").return, kernel.function("do_select").return { foo++ } probe timer.ms(1000) { exit(); } probe begin { log("systemtap starting probe"); log("systemtap ending pr= obe");} } spawn stap -v -e=20 global foo probe kernel.function("vfs_read").return, kernel.function("do_select").return { foo++ } probe timer.ms(1000) { exit(); } probe begin { log("systemtap starting probe"); log("systemtap ending pr= obe");} =0D Pass 1: parsed user script and 75 library script(s) using 38528virt/30592re= s/7872shr kb, in 260usr/0sys/263real ms.=0D Pass 2: analyzed script: 4 probe(s), 2 function(s), 0 embed(s), 1 global(s)= using 162176virt/112768res/69888shr kb, in 460usr/10sys/467real ms.=0D Pass 3: translated to C into "/tmp/stapwMVI7i/stap_868bfe064dbc32c4264a5279= 1f989543_1293.c" using 162176virt/114304res/71424shr kb, in 1210usr/10sys/1= 215real ms.=0D Pass 4: compiled C into "stap_868bfe064dbc32c4264a52791f989543_1293.ko" in = 2280usr/200sys/2486real ms.=0D Pass 5: starting run.=0D systemtap starting probe=0D systemtap ending probe=0D PASS: MAXACTIVE01 startup PASS: MAXACTIVE01 load generation PASS: MAXACTIVE01 shutdown and output Pass 5: run completed in 0usr/20sys/1367real ms.=0D metric: MAXACTIVE01 260 0 263 460 10 467 1210 10 1215 2280 200 2486 0 20 1= 367 executing: stap -v -e { global foo probe kernel.function("vfs_read").return.maxactive(1), kernel.function("do_select").return.maxactive(1) { foo++ } probe timer.ms(1000) { exit(); } probe begin { log("systemtap starting probe"); log("systemtap ending pr= obe");} } spawn stap -v -e=20 global foo probe kernel.function("vfs_read").return.maxactive(1), kernel.function("do_select").return.maxactive(1) { foo++ } probe timer.ms(1000) { exit(); } probe begin { log("systemtap starting probe"); log("systemtap ending pr= obe");} =0D Pass 1: parsed user script and 75 library script(s) using 38592virt/30720re= s/7872shr kb, in 240usr/0sys/247real ms.=0D Pass 2: analyzed script: 4 probe(s), 2 function(s), 0 embed(s), 1 global(s)= using 162176virt/112832res/69888shr kb, in 440usr/10sys/439real ms.=0D Pass 3: translated to C into "/tmp/stapcvRfyf/stap_424e35060659f79f94074358= 15505301_1371.c" using 162176virt/114368res/71424shr kb, in 1100usr/10sys/1= 113real ms.=0D Pass 4: compiled C into "stap_424e35060659f79f9407435815505301_1371.ko" in = 2380usr/200sys/2595real ms.=0D Pass 5: starting run.=0D systemtap starting probe=0D systemtap ending probe=0D PASS: MAXACTIVE02 startup PASS: MAXACTIVE02 load generation PASS: MAXACTIVE02 shutdown and output WARNING: Number of errors: 0, skipped probes: 10=0D Pass 5: run completed in 10usr/20sys/1132real ms.=0D skipped1: 0, skipped2: 10 PASS: MAXACTIVE03 testcase /home/prasadkr/systemtap/testsuite/systemtap.base/maxactive.exp co= mpleted in 12 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/maxmemory.exp ... executing: stap -v -u -e { global k probe begin { print("systemtap starting probe\n") k["foo"] =3D 0 } probe kernel.function("vfs_read"), kernel.function("vfs_write") { k["foo"]++ } probe end { print("systemtap ending probe\n") } } spawn stap -v -u -e=20 global k probe begin { print("systemtap starting probe\n") k["foo"] =3D 0 } probe kernel.function("vfs_read"), kernel.function("vfs_write") { k["foo"]++ } probe end { print("systemtap ending probe\n") } =0D Pass 1: parsed user script and 75 library script(s) using 38528virt/30656re= s/7872shr kb, in 240usr/0sys/245real ms.=0D Pass 2: analyzed script: 4 probe(s), 0 function(s), 0 embed(s), 1 global(s)= using 162176virt/112704res/69824shr kb, in 430usr/10sys/438real ms.=0D Pass 3: translated to C into "/tmp/stapk5erb1/stap_ee0045e8bdfba51e238fda07= feb0da7f_1069.c" using 162176virt/114240res/71360shr kb, in 1110usr/10sys/1= 119real ms.=0D Pass 4: compiled C into "stap_ee0045e8bdfba51e238fda07feb0da7f_1069.ko" in = 2290usr/200sys/2494real ms.=0D Pass 5: starting run.=0D systemtap starting probe=0D systemtap ending probe=0D Pass 5: run completed in 0usr/30sys/368real ms.=0D PASS: MAXMEMORY1 didn't error executing: stap -v -u -DSTP_MAXMEMORY=3D200 -e { global k probe begin { print("systemtap starting probe\n") k["foo"] =3D 0 } probe kernel.function("vfs_read"), kernel.function("vfs_write") { k["foo"]++ } probe end { print("systemtap ending probe\n") } } spawn stap -v -u -DSTP_MAXMEMORY=3D200 -e=20 global k probe begin { print("systemtap starting probe\n") k["foo"] =3D 0 } probe kernel.function("vfs_read"), kernel.function("vfs_write") { k["foo"]++ } probe end { print("systemtap ending probe\n") } =0D Pass 1: parsed user script and 75 library script(s) using 38528virt/30720re= s/7872shr kb, in 240usr/0sys/245real ms.=0D Pass 2: analyzed script: 4 probe(s), 0 function(s), 0 embed(s), 1 global(s)= using 162176virt/112704res/69824shr kb, in 440usr/10sys/440real ms.=0D Pass 3: translated to C into "/tmp/stapTxvY3M/stap_6fb29e539de49d0482e0b181= 70996162_1086.c" using 162176virt/114240res/71360shr kb, in 1110usr/10sys/1= 118real ms.=0D Pass 4: compiled C into "stap_6fb29e539de49d0482e0b18170996162_1086.ko" in = 2260usr/200sys/2493real ms.=0D Pass 5: starting run.=0D ERROR: global variable 'k' allocation failed=0D Pass 5: run completed in 0usr/20sys/50real ms.=0D Pass 5: run failed. Try again with another '--vp 00001' option.=0D PASS: MAXMEMORY2 received expected error testcase /home/prasadkr/systemtap/testsuite/systemtap.base/maxmemory.exp co= mpleted in 9 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/modargs.exp ... PASS: modargs compilation PASS: modargs execution testcase /home/prasadkr/systemtap/testsuite/systemtap.base/modargs.exp comp= leted in 3 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/not.exp ... executing: stap -v /home/prasadkr/systemtap/testsuite/systemtap.base/not.stp spawn stap -v /home/prasadkr/systemtap/testsuite/systemtap.base/not.stp=0D Pass 1: parsed user script and 75 library script(s) using 38528virt/30592re= s/7872shr kb, in 240usr/0sys/245real ms.=0D Pass 2: analyzed script: 2 probe(s), 0 function(s), 0 embed(s), 2 global(s)= using 39104virt/31296res/8064shr kb, in 0usr/0sys/5real ms.=0D Pass 3: translated to C into "/tmp/stapaPsjdJ/stap_e0df6555db23b9a64758b1ef= 2c44b13d_871.c" using 39104virt/31680res/8384shr kb, in 10usr/0sys/0real ms= .=0D Pass 4: compiled C into "stap_e0df6555db23b9a64758b1ef2c44b13d_871.ko" in 1= 640usr/200sys/1856real ms.=0D Pass 5: starting run.=0D systemtap starting probe=0D PASS: systemtap.base/not.stp startup PASS: systemtap.base/not.stp load generation systemtap ending probe=0D systemtap test success=0D Pass 5: run completed in 10usr/20sys/342real ms.=0D FAIL: systemtap.base/not.stp shutdown (eof) testcase /home/prasadkr/systemtap/testsuite/systemtap.base/not.exp complete= d in 2 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/onoffprobe.exp ... spawn stap /home/prasadkr/systemtap/testsuite/systemtap.base/onoffprobe.stp= =0D begin1 probed: stap_4c37a3971496ee32bd5858790648b6e3_4532=0D PASS: onoffprobe begin1 probed function return probed=0D PASS: onoffprobe function return probed function entry probed=0D PASS: onoffprobe function entry probed timer probed=0D PASS: onoffprobe timer probed profile probed=0D PASS: onoffprobe profile probed alias.one.a and alias.one and alias.* probed=0D alias.one.a and alias.one and alias.* probed=0D PASS: onoffprobe alias.one.a and alias.one and alias.* probed=0D alias.one.a and alias.one and alias.* probed alias.one.b and alias.one and alias.* probed=0D PASS: onoffprobe alias.one.b and alias.one and alias.* probed alias.two and alias.* probed=0D PASS: onoffprobe alias.two and alias.* probed testcase /home/prasadkr/systemtap/testsuite/systemtap.base/onoffprobe.exp c= ompleted in 7 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/optim.exp ... spawn stap /home/prasadkr/systemtap/testsuite/systemtap.base/optim.stp=0D WARNING: eliding unused variable 'dummy': identifier 'dummy' at /home/prasa= dkr/systemtap/testsuite/systemtap.base/optim.stp:7:20=0D source: if (1) var=3D2 else dummy=3D0=0D ^=0D i=3D1=0D j=3D2=0D PASS: optim testcase /home/prasadkr/systemtap/testsuite/systemtap.base/optim.exp comple= ted in 3 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/optim_arridx.exp = ... PASS: systemtap.base/optim_arridx.stp testcase /home/prasadkr/systemtap/testsuite/systemtap.base/optim_arridx.exp= completed in 0 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/optim_voidstmt.ex= p ... executing: stap -v -g /home/prasadkr/systemtap/testsuite/systemtap.base/opt= im_voidstmt.stp spawn stap -v -g /home/prasadkr/systemtap/testsuite/systemtap.base/optim_vo= idstmt.stp=0D Pass 1: parsed user script and 75 library script(s) using 38592virt/30784re= s/7872shr kb, in 240usr/0sys/246real ms.=0D Pass 2: analyzed script: 3 probe(s), 6 function(s), 0 embed(s), 0 global(s)= using 39168virt/31488res/8064shr kb, in 10usr/0sys/6real ms.=0D Pass 3: translated to C into "/tmp/stappHAnYJ/stap_9f072e0fe3d1abe625c119cd= d9b1a6ca_1438.c" using 39168virt/31808res/8384shr kb, in 0usr/0sys/1real ms= .=0D Pass 4: compiled C into "stap_9f072e0fe3d1abe625c119cdd9b1a6ca_1438.ko" in = 1670usr/200sys/1880real ms.=0D Pass 5: starting run.=0D systemtap starting probe=0D PASS: systemtap.base/optim_voidstmt.stp startup PASS: systemtap.base/optim_voidstmt.stp load generation systemtap ending probe=0D systemtap test success=0D Pass 5: run completed in 0usr/20sys/341real ms.=0D FAIL: systemtap.base/optim_voidstmt.stp shutdown (eof) testcase /home/prasadkr/systemtap/testsuite/systemtap.base/optim_voidstmt.e= xp completed in 3 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/optionalprobe.exp= ... spawn stap -p2 -w /home/prasadkr/systemtap/testsuite/systemtap.base/optiona= lprobe.stp=0D # probes=0D begin /* <- foo?,process("/do/not/exist").function("main")!,kernel.mark("no= such mark")?,kernel.trace("no trace")!,process.foo?,kernel.statement("no s= tatement")!,module("no mod").function("*")?,kernel.function("no such func*"= )!,begin */=0D PASS: optionalprobe testcase /home/prasadkr/systemtap/testsuite/systemtap.base/optionalprobe.ex= p completed in 2 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/overcatcher.exp .= .. PASS: overcatcher testcase /home/prasadkr/systemtap/testsuite/systemtap.base/overcatcher.exp = completed in 2 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/overflow_error.ex= p ... spawn stap -DMAXERRORS=3D1 /home/prasadkr/systemtap/testsuite/systemtap.bas= e/overflow_error.stp=0D ERROR: Array overflow, check size limit (3) near identifier 'overflow1' at = /home/prasadkr/systemtap/testsuite/systemtap.base/overflow_error.stp:10:7=0D ERROR: Array overflow, check size limit (5) near identifier 'overflow2' at = /home/prasadkr/systemtap/testsuite/systemtap.base/overflow_error.stp:14:7=0D WARNING: Number of errors: 2, skipped probes: 0=0D Pass 5: run failed. Try again with another '--vp 00001' option.=0D PASS: overflow_error testcase /home/prasadkr/systemtap/testsuite/systemtap.base/overflow_error.e= xp completed in 3 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/overload.exp ... executing: stap -v -u -e { global k probe begin { print("systemtap starting probe\n") k["foo"] =3D 0 } probe kernel.function("vfs_read"), kernel.function("vfs_write") { k["foo"]++ } probe end { print("systemtap ending probe\n") } } spawn stap -v -u -e=20 global k probe begin { print("systemtap starting probe\n") k["foo"] =3D 0 } probe kernel.function("vfs_read"), kernel.function("vfs_write") { k["foo"]++ } probe end { print("systemtap ending probe\n") } =0D Pass 1: parsed user script and 75 library script(s) using 38528virt/30592re= s/7872shr kb, in 260usr/0sys/264real ms.=0D Pass 2: analyzed script: 4 probe(s), 0 function(s), 0 embed(s), 1 global(s)= using 162176virt/112704res/69824shr kb, in 460usr/10sys/470real ms.=0D Pass 3: using cached /home/prasadkr/systemtap/testsuite/.systemtap-root/cac= he/ee/stap_ee0045e8bdfba51e238fda07feb0da7f_1069.c=0D Pass 4: using cached /home/prasadkr/systemtap/testsuite/.systemtap-root/cac= he/ee/stap_ee0045e8bdfba51e238fda07feb0da7f_1069.ko=0D Pass 5: starting run.=0D systemtap starting probe=0D systemtap ending probe=0D Pass 5: run completed in 10usr/20sys/386real ms.=0D PASS: OVERLOAD1 didn't error executing: stap -v -u -DSTP_OVERLOAD_INTERVAL=3D1000LL -DSTP_OVERLOAD_THRES= HOLD=3D100LL -e { global k probe begin { print("systemtap starting probe\n") k["foo"] =3D 0 } probe kernel.function("vfs_read"), kernel.function("vfs_write") { k["foo"]++ } probe end { print("systemtap ending probe\n") } } spawn stap -v -u -DSTP_OVERLOAD_INTERVAL=3D1000LL -DSTP_OVERLOAD_THRESHOLD= =3D100LL -e=20 global k probe begin { print("systemtap starting probe\n") k["foo"] =3D 0 } probe kernel.function("vfs_read"), kernel.function("vfs_write") { k["foo"]++ } probe end { print("systemtap ending probe\n") } =0D Pass 1: parsed user script and 75 library script(s) using 38528virt/30656re= s/7872shr kb, in 250usr/0sys/263real ms.=0D Pass 2: analyzed script: 4 probe(s), 0 function(s), 0 embed(s), 1 global(s)= using 162176virt/112704res/69824shr kb, in 470usr/10sys/469real ms.=0D Pass 3: translated to C into "/tmp/stapWeEGZF/stap_f3a4cfb133a684b7958fd7f7= 873fd40b_1125.c" using 162176virt/114240res/71360shr kb, in 1210usr/10sys/1= 221real ms.=0D Pass 4: compiled C into "stap_f3a4cfb133a684b7958fd7f7873fd40b_1125.ko" in = 2250usr/200sys/2475real ms.=0D Pass 5: starting run.=0D ERROR: probe overhead exceeded threshold=0D PASS: OVERLOAD2 received expected error executing: stap -v -u -DSTP_NO_OVERLOAD -DSTP_OVERLOAD_INTERVAL=3D1000LL -D= STP_OVERLOAD_THRESHOLD=3D100LL -e { global k probe begin { print("systemtap starting probe\n") k["foo"] =3D 0 } probe kernel.function("vfs_read"), kernel.function("vfs_write") { k["foo"]++ } probe end { print("systemtap ending probe\n") } } spawn stap -v -u -DSTP_NO_OVERLOAD -DSTP_OVERLOAD_INTERVAL=3D1000LL -DSTP_O= VERLOAD_THRESHOLD=3D100LL -e=20 global k probe begin { print("systemtap starting probe\n") k["foo"] =3D 0 } probe kernel.function("vfs_read"), kernel.function("vfs_write") { k["foo"]++ } probe end { print("systemtap ending probe\n") } =0D Pass 1: parsed user script and 75 library script(s) using 38656virt/30656re= s/7872shr kb, in 250usr/0sys/263real ms.=0D Pass 2: analyzed script: 4 probe(s), 0 function(s), 0 embed(s), 1 global(s)= using 162112virt/112704res/69824shr kb, in 460usr/10sys/472real ms.=0D Pass 3: translated to C into "/tmp/stapP6gatn/stap_9f1864a88b06e140b0043b5b= 535f84c8_1140.c" using 162112virt/114240res/71360shr kb, in 1210usr/10sys/1= 223real ms.=0D Pass 4: compiled C into "stap_9f1864a88b06e140b0043b5b535f84c8_1140.ko" in = 2310usr/210sys/2529real ms.=0D Pass 5: starting run.=0D systemtap starting probe=0D systemtap ending probe=0D Pass 5: run completed in 10usr/30sys/381real ms.=0D PASS: OVERLOAD3 didn't error testcase /home/prasadkr/systemtap/testsuite/systemtap.base/overload.exp com= pleted in 11 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/pointer_array.exp= ... executing: stap /home/prasadkr/systemtap/testsuite/systemtap.base/pointer_a= rray.stp -c/bin/true PASS: systemtap.base/pointer_array.stp testcase /home/prasadkr/systemtap/testsuite/systemtap.base/pointer_array.ex= p completed in 5 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/poll_map.exp ... spawn stap -g /home/prasadkr/systemtap/testsuite/systemtap.base/poll_map.st= p=0D =0D =0D stapio called vfs_read 2 times=0D rsyslogd called vfs_read 1 times=0D =0D =0D stapio called vfs_read 2 times=0D stapio called vfs_write 1 times=0D =0D =0D expect called vfs_read 1 times=0D expect called vfs_write 1 times=0D stapio called vfs_read 1 times=0D =0D =0D =0D =0D stapio called vfs_read 2 times=0D stapio called vfs_write 1 times=0D expect called vfs_read 1 times=0D expect called vfs_write 1 times=0D =0D =0D stapio called vfs_read 1 times=0D =0D =0D stapio called vfs_read 2 times=0D stapio called vfs_write 1 times=0D expect called vfs_read 1 times=0D expect called vfs_write 1 times=0D =0D =0D stapio called vfs_read 1 times=0D =0D =0D stapio called vfs_read 2 times=0D stapio called vfs_write 1 times=0D expect called vfs_read 1 times=0D expect called vfs_write 1 times=0D =0D =0D =0D =0D stapio called vfs_read 3 times=0D stapio called vfs_write 1 times=0D expect called vfs_read 1 times=0D expect called vfs_write 1 times=0D =0D =0D =0D =0D stapio called vfs_read 3 times=0D stapio called vfs_write 1 times=0D expect called vfs_read 1 times=0D expect called vfs_write 1 times=0D =0D =0D =0D =0D stapio called vfs_read 2 times=0D stapio called vfs_write 1 times=0D expect called vfs_read 1 times=0D expect called vfs_write 1 times=0D =0D =0D stapio called vfs_read 1 times=0D =0D =0D stapio called vfs_read 2 times=0D stapio called vfs_write 1 times=0D expect called vfs_read 1 times=0D expect called vfs_write 1 times=0D =0D =0D stapio called vfs_read 1 times=0D =0D =0D stapio called vfs_read 2 times=0D stapio called vfs_write 1 times=0D expect called vfs_read 1 times=0D expect called vfs_write 1 times=0D =0D =0D =0D =0D stapio called vfs_read 3 times=0D stapio called vfs_write 1 times=0D expect called vfs_read 1 times=0D expect called vfs_write 1 times=0D =0D =0D =0D =0D stapio called vfs_read 3 times=0D stapio called vfs_write 1 times=0D expect called vfs_read 1 times=0D expect called vfs_write 1 times=0D =0D =0D =0D =0D stapio called vfs_read 2 times=0D stapio called vfs_write 1 times=0D expect called vfs_read 1 times=0D expect called vfs_write 1 times=0D =0D =0D stapio called vfs_read 1 times=0D =0D =0D stapio called vfs_read 2 times=0D stapio called vfs_write 1 times=0D expect called vfs_read 1 times=0D expect called vfs_write 1 times=0D =0D =0D stapio called vfs_read 1 times=0D =0D =0D stapio called vfs_read 2 times=0D stapio called vfs_write 1 times=0D expect called vfs_read 1 times=0D expect called vfs_write 1 times=0D =0D =0D =0D =0D stapio called vfs_read 3 times=0D stapio called vfs_write 1 times=0D expect called vfs_read 1 times=0D expect called vfs_write 1 times=0D SUCCESS=0D PASS: poll_map (1) testcase /home/prasadkr/systemtap/testsuite/systemtap.base/poll_map.exp com= pleted in 10 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/pp.exp ... executing: stap -v /home/prasadkr/systemtap/testsuite/systemtap.base/pp.stp= pp spawn stap -v /home/prasadkr/systemtap/testsuite/systemtap.base/pp.stp pp=0D Pass 1: parsed user script and 75 library script(s) using 38592virt/30656re= s/7872shr kb, in 270usr/0sys/263real ms.=0D Pass 2: analyzed script: 4 probe(s), 1 function(s), 22 embed(s), 1 global(s= ) using 164288virt/53760res/9024shr kb, in 510usr/130sys/701real ms.=0D Pass 3: translated to C into "/tmp/stapJDLkSW/stap_005c617a015b4b53efad2701= a0c6805c_13962.c" using 163712virt/57856res/13376shr kb, in 1200usr/10sys/1= 232real ms.=0D Pass 4: compiled C into "stap_005c617a015b4b53efad2701a0c6805c_13962.ko" in= 2600usr/210sys/2819real ms.=0D Pass 5: starting run.=0D systemtap starting probe=0D PASS: pp startup PASS: pp load generation systemtap ending probe=0D kernel.function("SyS_open@fs/open.c:1057").call?=0D systemtap test success=0D Pass 5: run completed in 10usr/20sys/371real ms.=0D PASS: pp shutdown and output metric: pp 270 0 263 510 130 701 1200 10 1232 2600 210 2819 10 20 371 executing: stap -v /home/prasadkr/systemtap/testsuite/systemtap.base/pp.stp= pn spawn stap -v /home/prasadkr/systemtap/testsuite/systemtap.base/pp.stp pn=0D Pass 1: parsed user script and 75 library script(s) using 38592virt/30656re= s/7872shr kb, in 240usr/0sys/245real ms.=0D Pass 2: analyzed script: 4 probe(s), 1 function(s), 20 embed(s), 1 global(s= ) using 163264virt/114752res/70720shr kb, in 460usr/10sys/464real ms.=0D Pass 3: translated to C into "/tmp/stap4q9Xmv/stap_96cd079fd4467e8285ae4256= 687ef181_13837.c" using 163264virt/115648res/71616shr kb, in 1100usr/10sys/= 1128real ms.=0D Pass 4: compiled C into "stap_96cd079fd4467e8285ae4256687ef181_13837.ko" in= 2610usr/210sys/2834real ms.=0D Pass 5: starting run.=0D systemtap starting probe=0D PASS: pn startup PASS: pn load generation systemtap ending probe=0D syscall.open=0D systemtap test success=0D Pass 5: run completed in 0usr/20sys/359real ms.=0D PASS: pn shutdown and output metric: pn 240 0 245 460 10 464 1100 10 1128 2610 210 2834 0 20 359 testcase /home/prasadkr/systemtap/testsuite/systemtap.base/pp.exp completed= in 10 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/pr10854.exp ... PASS: compiling pr10854.stp spawn staprun /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/f1/s= tap_f1ec7582ef17c5fe0cd8e1886c9768f8_536507.ko -o /dev/null=0D spawn staprun /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/f1/s= tap_f1ec7582ef17c5fe0cd8e1886c9768f8_536507.ko -o /dev/null=0D spawn staprun /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/f1/s= tap_f1ec7582ef17c5fe0cd8e1886c9768f8_536507.ko -o /dev/null=0D spawn staprun /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/f1/s= tap_f1ec7582ef17c5fe0cd8e1886c9768f8_536507.ko -o /dev/null=0D spawn staprun /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/f1/s= tap_f1ec7582ef17c5fe0cd8e1886c9768f8_536507.ko -o /dev/null=0D spawn staprun /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/f1/s= tap_f1ec7582ef17c5fe0cd8e1886c9768f8_536507.ko -o /dev/null=0D spawn staprun /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/f1/s= tap_f1ec7582ef17c5fe0cd8e1886c9768f8_536507.ko -o /dev/null=0D spawn staprun /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/f1/s= tap_f1ec7582ef17c5fe0cd8e1886c9768f8_536507.ko -o /dev/null=0D spawn staprun /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/f1/s= tap_f1ec7582ef17c5fe0cd8e1886c9768f8_536507.ko -o /dev/null=0D spawn staprun /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/f1/s= tap_f1ec7582ef17c5fe0cd8e1886c9768f8_536507.ko -o /dev/null=0D PASS: pr10854 runloop testcase /home/prasadkr/systemtap/testsuite/systemtap.base/pr10854.exp comp= leted in 9 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/prcwildcard.exp .= .. spawn stap -L process("../sta*").function("*")=0D process("/home/prasadkr/systemtap/stap").function("NSPR_init@/home/prasadkr= /systemtap/session.cxx:214")? $this:struct systemtap_session* const=0D process("/home/prasadkr/systemtap/stap").function("StapDwfl@/home/prasadkr/= systemtap/setupdwfl.h:36")? $d:Dwfl* $this:struct StapDwfl* const=0D process("/home/prasadkr/systemtap/stap").function("_Alloc_hider@/usr/lib/gc= c/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/basic_string.= h:259")?=0D process("/home/prasadkr/systemtap/stap").function("_Construct@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.= 4/bits/stl_construct.h:70")?=0D process("/home/prasadkr/systemtap/stap").function("_Construct, std::allocator >, std::basic_strin= g, std::allocator > >@/usr/lib/gcc/ppc64= -redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_construct.h:70")= ?=0D process("/home/prasadkr/systemtap/stap").function("_Deque_base@/usr/lib/gcc= /ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_deque.h:37= 3")?=0D process("/home/prasadkr/systemtap/stap").function("_Deque_base@/usr/lib/gcc= /ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_deque.h:37= 7")?=0D process("/home/prasadkr/systemtap/stap").function("_Deque_impl@/usr/lib/gcc= /ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_deque.h:41= 8")?=0D process("/home/prasadkr/systemtap/stap").function("_Deque_impl@/usr/lib/gcc= /ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_deque.h:42= 3")?=0D process("/home/prasadkr/systemtap/stap").function("_Deque_iterator@/usr/lib= /gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_deque.= h:120")?=0D process("/home/prasadkr/systemtap/stap").function("_Deque_iterator@/usr/lib= /gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_deque.= h:123")?=0D process("/home/prasadkr/systemtap/stap").function("_Destroy<__gnu_cxx::__no= rmal_iterator > > >@/usr/l= ib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_cons= truct.h:112")? $__first:class __normal_iterator > >=0D process("/home/prasadkr/systemtap/stap").function("_Destroy<__gnu_cxx::__no= rmal_iterator > >, print_f= ormat::format_component>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../= include/c++/4.4.4/bits/stl_construct.h:139")? $__last:class __normal_iterat= or > > $__first:class __no= rmal_iterator > >=0D process("/home/prasadkr/systemtap/stap").function("_Destroy<__gnu_cxx::__no= rmal_iterator > > >@/usr/lib/gcc/ppc64-redha= t-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_construct.h:112")? $__= first:class __normal_iterator > >=0D process("/home/prasadkr/systemtap/stap").function("_Destroy<__gnu_cxx::__no= rmal_iterator > >, target_symbol::component>= @/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/s= tl_construct.h:139")? $__last:class __normal_iterator > > $__first:class __normal_iterator > >=0D process("/home/prasadkr/systemtap/stap").function("_Destroy@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../= ../include/c++/4.4.4/bits/stl_construct.h:139")?=0D process("/home/prasadkr/systemtap/stap").function("_Destroy@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/= bits/stl_construct.h:112")?=0D process("/home/prasadkr/systemtap/stap").function("_Destroy@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/b= its/stl_construct.h:82")?=0D process("/home/prasadkr/systemtap/stap").function("_Destroy@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4= /bits/stl_construct.h:139")?=0D process("/home/prasadkr/systemtap/stap").function("_Destroy@/us= r/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_c= onstruct.h:112")?=0D process("/home/prasadkr/systemtap/stap").function("_Destroy@/usr= /lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_co= nstruct.h:82")?=0D process("/home/prasadkr/systemtap/stap").function("_Destroy@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../.= ./../include/c++/4.4.4/bits/stl_construct.h:139")?=0D process("/home/prasadkr/systemtap/stap").function("_Destroy@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4= /bits/stl_construct.h:112")?=0D process("/home/prasadkr/systemtap/stap").function("_Destroy@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/= bits/stl_construct.h:82")?=0D process("/home/prasadkr/systemtap/stap").function("_Destroy@/usr/lib/gcc/ppc64-redhat= -linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_construct.h:139")?=0D process("/home/prasadkr/systemtap/stap").function("_Destroy@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include= /c++/4.4.4/bits/stl_construct.h:112")?=0D process("/home/prasadkr/systemtap/stap").function("_Destroy@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/= c++/4.4.4/bits/stl_construct.h:82")?=0D process("/home/prasadkr/systemtap/stap").function("_Destroy, std::allocator > >@/usr/lib/gcc/ppc6= 4-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_construct.h:82"= )?=0D process("/home/prasadkr/systemtap/stap").function("_Destroy, std::allocator >*, std::basic_string= , std::allocator > >@/usr/lib/gcc/ppc64-= redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_construct.h:139")= ?=0D process("/home/prasadkr/systemtap/stap").function("_Destroy, std::allocator >*>@/usr/lib/gcc/ppc6= 4-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_construct.h:112= ")?=0D process("/home/prasadkr/systemtap/stap").function("_Destroy, std::allocator >, unsigned= int> >@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4= /bits/stl_construct.h:82")?=0D process("/home/prasadkr/systemtap/stap").function("_Destroy, std::allocator >, unsigned= int>*, std::pair, std::allo= cator >, unsigned int> >@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../= ../../include/c++/4.4.4/bits/stl_construct.h:139")?=0D process("/home/prasadkr/systemtap/stap").function("_Destroy, std::allocator >, unsigned= int>*>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4= /bits/stl_construct.h:112")?=0D process("/home/prasadkr/systemtap/stap").function("_Destroy@/usr/lib/gcc/ppc64-redhat-linux/4.4.4= /../../../../include/c++/4.4.4/bits/stl_construct.h:139")?=0D process("/home/prasadkr/systemtap/stap").function("_Destroy@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4= .4.4/bits/stl_construct.h:112")?=0D process("/home/prasadkr/systemtap/stap").function("_Destroy@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.= 4.4/bits/stl_construct.h:82")?=0D process("/home/prasadkr/systemtap/stap").function("_Destroy@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/= stl_construct.h:139")?=0D process("/home/prasadkr/systemtap/stap").function("_Destroy@/usr/l= ib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_cons= truct.h:112")?=0D process("/home/prasadkr/systemtap/stap").function("_Destroy@/usr/li= b/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_const= ruct.h:82")? $__pointer:struct tmpvar*=0D process("/home/prasadkr/systemtap/stap").function("_Destroy@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include= /c++/4.4.4/bits/stl_construct.h:139")?=0D process("/home/prasadkr/systemtap/stap").function("_Destroy@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/= stl_construct.h:112")?=0D process("/home/prasadkr/systemtap/stap").function("_Destroy= @/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/s= tl_construct.h:82")? $__pointer:struct tracepoint_arg*=0D process("/home/prasadkr/systemtap/stap").function("_GLOBAL__I__Z11dwfl_asse= rtRKSsi")?=0D process("/home/prasadkr/systemtap/stap").function("_GLOBAL__I__Z13add_condi= tionP10expressionS0_")?=0D process("/home/prasadkr/systemtap/stap").function("_GLOBAL__I__Z17common_pr= obe_initP13derived_probe")?=0D process("/home/prasadkr/systemtap/stap").function("_GLOBAL__I__Z17output_ex= portconfR17systemtap_sessionRSt14basic_ofstreamIcSt11char_traitsIcEEPKcS7_"= )?=0D process("/home/prasadkr/systemtap/stap").function("_GLOBAL__I__Z17setup_dwf= l_kernelRKSsPjR17systemtap_session")?=0D process("/home/prasadkr/systemtap/stap").function("_GLOBAL__I__Z18get_home_= directoryv")?=0D process("/home/prasadkr/systemtap/stap").function("_GLOBAL__I__Z19print_cov= erage_infoR17systemtap_session")?=0D process("/home/prasadkr/systemtap/stap").function("_GLOBAL__I__Z21add_stapc= onf_to_cacheR17systemtap_session")?=0D process("/home/prasadkr/systemtap/stap").function("_GLOBAL__I__Z22missing_r= pm_list_printR17systemtap_sessionPKc")?=0D process("/home/prasadkr/systemtap/stap").function("_GLOBAL__I__Z5parseR17sy= stemtap_sessionRSib")?=0D process("/home/prasadkr/systemtap/stap").function("_GLOBAL__I__ZN10expressi= onC2Ev")?=0D process("/home/prasadkr/systemtap/stap").function("_GLOBAL__I__ZN16be_deriv= ed_probe10join_groupER17systemtap_session")?=0D process("/home/prasadkr/systemtap/stap").function("_GLOBAL__I__ZN17systemta= p_session16NSPR_InitializedE")?=0D process("/home/prasadkr/systemtap/stap").function("_GLOBAL__I__ZN18perf_der= ived_probeC2EP5probeP11probe_pointlll")?=0D process("/home/prasadkr/systemtap/stap").function("_GLOBAL__I__ZN19timer_de= rived_probeC2EP5probeP11probe_pointllb")?=0D process("/home/prasadkr/systemtap/stap").function("_GLOBAL__I__ZN20itrace_d= erived_probeC2ER17systemtap_sessionP5probeP11probe_pointbRSsli")?=0D process("/home/prasadkr/systemtap/stap").function("_GLOBAL__I__ZN20procfs_d= erived_probeC2ER17systemtap_sessionP5probeP11probe_pointSsbll")?=0D process("/home/prasadkr/systemtap/stap").function("_GLOBAL__I__ZN20utrace_d= erived_probeC2ER17systemtap_sessionP5probeP11probe_pointbRSsl26utrace_deriv= ed_probe_flags")?=0D process("/home/prasadkr/systemtap/stap").function("_GLOBAL__I__ZN21compile_= server_client10passes_0_4Ev")?=0D process("/home/prasadkr/systemtap/stap").function("_GLOBAL__I__ZN26mark_var= _expanding_visitor23visit_target_symbol_argEP13target_symbol")?=0D process("/home/prasadkr/systemtap/stap").function("_GLOBAL__I__ZN31task_fin= der_derived_probe_group16emit_module_initER17systemtap_session")?=0D process("/home/prasadkr/systemtap/stap").function("_GLOBAL__I__ZN4hash5star= tEv")?=0D process("/home/prasadkr/systemtap/stap").function("_GLOBAL__I__ZN6dwflppC2E= R17systemtap_sessionRKSsb")?=0D process("/home/prasadkr/systemtap/stap").function("_GLOBAL__I__ZN6remote6cr= eateER17systemtap_sessionRKSs")?=0D process("/home/prasadkr/systemtap/stap").function("_GLOBAL__I__ZlsRSoRK3var= ")?=0D process("/home/prasadkr/systemtap/stap").function("_GLOBAL__I_pending_inter= rupts")?=0D process("/home/prasadkr/systemtap/stap").function("_Hashtable@/usr/lib/gcc/= ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/tr1_impl/hashtable:5= 74")?=0D process("/home/prasadkr/systemtap/stap").function("_Hashtable_iterator@/usr= /lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/tr1_impl/ha= shtable_policy.h:307")?=0D process("/home/prasadkr/systemtap/stap").function("_Hashtable_iterator@/usr= /lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/tr1_impl/ha= shtable_policy.h:312")?=0D process("/home/prasadkr/systemtap/stap").function("_Hashtable_iterator_base= @/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/tr1_im= pl/hashtable_policy.h:242")?=0D process("/home/prasadkr/systemtap/stap").function("_List_base@/usr/lib/gcc/= ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_list.h:341"= )?=0D process("/home/prasadkr/systemtap/stap").function("_List_base@/usr/lib/gcc/= ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_list.h:345"= )? $this:class _List_base, s= td::allocator >, std::allocator, std::allocator > > >* const=0D process("/home/prasadkr/systemtap/stap").function("_M_add_ref_copy@/usr/lib= /gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/tr1_impl/boost_= sp_counted_base.h:129")? $this:class _Sp_counted_base<(__gnu_cxx::_Lock_pol= icy)2u>* const=0D process("/home/prasadkr/systemtap/stap").function("_M_allocate@/usr/lib/gcc= /ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_vector.h:1= 39")?=0D process("/home/prasadkr/systemtap/stap").function("_M_allocate_and_copy@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.= 4/bits/stl_vector.h:960")? $__first:struct Dwarf_Die* $__n:size_t $this:cla= ss vector >* const=0D process("/home/prasadkr/systemtap/stap").function("_M_allocate_and_copy<__g= nu_cxx::__normal_iterator > > >@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../i= nclude/c++/4.4.4/bits/stl_vector.h:960")? $__last:class __normal_iterator > > $__fi= rst:class __normal_iterator > > $__n:size_t $this:class vector >* const=0D process("/home/prasadkr/systemtap/stap").function("_M_allocate_and_copy<__g= nu_cxx::__normal_iterator > > >@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4= .4.4/bits/stl_vector.h:960")? $__last:class __normal_iterator > > $__first:class __normal_itera= tor > > $__n:size_t = $this:class vector >* const=0D process("/home/prasadkr/systemtap/stap").function("_M_allocate_and_copy<__g= nu_cxx::__normal_iterator > > >@/usr/l= ib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_vect= or.h:960")? $__last:class __normal_iterator > > $__first:class __normal_iterator > > $__n:size_t $this:class vector >* const=0D process("/home/prasadkr/systemtap/stap").function("_M_allocate_and_copy<__g= nu_cxx::__normal_iterator > > >@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../.= ./../include/c++/4.4.4/bits/stl_vector.h:960")? $__last:class __normal_iter= ator > > $__first:class __normal_iterator > > $__n:size_t $this:class vector >* const=0D process("/home/prasadkr/systemtap/stap").function("_M_allocate_and_copy<__g= nu_cxx::__normal_iterator > > >@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../.= ./../../include/c++/4.4.4/bits/stl_vector.h:960")? $__last:class __normal_i= terator > > $__first:class __normal_iterator > > $__n:size_t $this:class = vector >* const=0D process("/home/prasadkr/systemtap/stap").function("_M_allocate_and_copy<__g= nu_cxx::__normal_iterator > > >@/usr/lib/= gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_vector.= h:960")? $__last:class __normal_iterator = > > $__first:class __normal_iterator > > = $__n:size_t $this:class vector >* const=0D process("/home/prasadkr/systemtap/stap").function("_M_allocate_and_copy<__g= nu_cxx::__normal_iterator > > >@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../.= ./include/c++/4.4.4/bits/stl_vector.h:960")? $__last:class __normal_iterato= r > >= $__first:class __normal_iterator > > $__n:size_t $this:class vector >* const=0D process("/home/prasadkr/systemtap/stap").function("_M_allocate_buckets@/usr= /lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/tr1_impl/ha= shtable:543")?=0D process("/home/prasadkr/systemtap/stap").function("_M_allocate_map@/usr/lib= /gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_deque.= h:454")?=0D process("/home/prasadkr/systemtap/stap").function("_M_allocate_node@/usr/li= b/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_deque= .h:442")?=0D process("/home/prasadkr/systemtap/stap").function("_M_allocate_node@/usr/li= b/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/tr1_impl/hasht= able:475")?=0D process("/home/prasadkr/systemtap/stap").function("_M_assign_aux@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/= vector.tcc:235")? $this:class vector >= * const $__first:struct Dwarf_Die* $__last:struct Dwarf_Die*=0D process("/home/prasadkr/systemtap/stap").function("_M_assign_dispatch@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/= bits/stl_vector.h:1056")? $__last:struct Dwarf_Die* $this:class vector >* const $__first:struct Dwarf_Die*=0D process("/home/prasadkr/systemtap/stap").function("_M_begin@/usr/lib/gcc/pp= c64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_tree.h:481")?= =0D process("/home/prasadkr/systemtap/stap").function("_M_begin@/usr/lib/gcc/pp= c64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_tree.h:485")?= =0D process("/home/prasadkr/systemtap/stap").function("_M_bucket_index@/usr/lib= /gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/tr1_impl/hashta= ble_policy.h:757")?=0D process("/home/prasadkr/systemtap/stap").function("_M_bucket_index@/usr/lib= /gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/tr1_impl/hashta= ble_policy.h:762")?=0D process("/home/prasadkr/systemtap/stap").function("_M_check@/usr/lib/gcc/pp= c64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/basic_string.h:30= 6")?=0D process("/home/prasadkr/systemtap/stap").function("_M_check_len@/usr/lib/gc= c/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_vector.h:= 1134")? $__n:size_t=0D process("/home/prasadkr/systemtap/stap").function("_M_clear@/usr/lib/gcc/pp= c64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/list.tcc:64")?=0D process("/home/prasadkr/systemtap/stap").function("_M_clone_node@/usr/lib/g= cc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_tree.h:4= 14")?=0D process("/home/prasadkr/systemtap/stap").function("_M_compare@/usr/lib/gcc/= ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/tr1_impl/hashtable_p= olicy.h:767")? $__n:struct _Hash_node, std::allocator >, Dwarf_Die>, false>*=0D process("/home/prasadkr/systemtap/stap").function("_M_copy@/usr/lib/gcc/ppc= 64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/basic_string.h:339= ")?=0D process("/home/prasadkr/systemtap/stap").function("_M_copy@/usr/lib/gcc/ppc= 64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_tree.h:928")?= =0D process("/home/prasadkr/systemtap/stap").function("_M_create_node@/usr/lib/= gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_list.h:= 459")?=0D process("/home/prasadkr/systemtap/stap").function("_M_create_node@/usr/lib/= gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_tree.h:= 367")?=0D process("/home/prasadkr/systemtap/stap").function("_M_create_nodes@/usr/lib= /gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_deque.= h:531")?=0D process("/home/prasadkr/systemtap/stap").function("_M_data@/usr/lib/gcc/ppc= 64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/basic_string.h:277= ")?=0D process("/home/prasadkr/systemtap/stap").function("_M_deallocate@/usr/lib/g= cc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_vector.h= :143")?=0D process("/home/prasadkr/systemtap/stap").function("_M_deallocate_buckets@/u= sr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/tr1_impl/= hashtable:562")?=0D process("/home/prasadkr/systemtap/stap").function("_M_deallocate_map@/usr/l= ib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_dequ= e.h:458")?=0D process("/home/prasadkr/systemtap/stap").function("_M_deallocate_node@/usr/= lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_deq= ue.h:448")?=0D process("/home/prasadkr/systemtap/stap").function("_M_deallocate_node@/usr/= lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/tr1_impl/has= htable:502")?=0D process("/home/prasadkr/systemtap/stap").function("_M_deallocate_nodes@/usr= /lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/tr1_impl/ha= shtable:519")?=0D process("/home/prasadkr/systemtap/stap").function("_M_destroy@/usr/lib/gcc/= ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/tr1_impl/boost_sp_co= unted_base.h:122")? $this:class _Sp_counted_base<(__gnu_cxx::_Lock_policy)2= u>* const=0D process("/home/prasadkr/systemtap/stap").function("_M_destroy_node@/usr/lib= /gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_tree.h= :381")?=0D process("/home/prasadkr/systemtap/stap").function("_M_destroy_nodes@/usr/li= b/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_deque= .h:549")?=0D process("/home/prasadkr/systemtap/stap").function("_M_dispose@/usr/lib/gcc/= ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/basic_string.h:= 229")?=0D process("/home/prasadkr/systemtap/stap").function("_M_dispose@/usr/lib/gcc/= ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/tr1/shared_ptr.h:74"= )? $this:class _Sp_counted_base_impl, (__gnu_cxx::_Lock_policy)2u>* const=0D process("/home/prasadkr/systemtap/stap").function("_M_end@/usr/lib/gcc/ppc6= 4-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_tree.h:492")?=0D process("/home/prasadkr/systemtap/stap").function("_M_end@/usr/lib/gcc/ppc6= 4-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_tree.h:496")?=0D process("/home/prasadkr/systemtap/stap").function("_M_erase@/usr/lib/gcc/pp= c64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_list.h:1422")= ?=0D process("/home/prasadkr/systemtap/stap").function("_M_erase@/usr/lib/gcc/pp= c64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_tree.h:964")?= =0D process("/home/prasadkr/systemtap/stap").function("_M_erase_at_end@/usr/lib= /gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_vector= .h:1148")?=0D process("/home/prasadkr/systemtap/stap").function("_M_fill_initialize@/usr/= lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_vec= tor.h:1033")?=0D process("/home/prasadkr/systemtap/stap").function("_M_fill_insert@/usr/lib/= gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/vector.tcc:= 372")? $this:class vector >* const $__po= sition:class __normal_iterator > > $__n:size_t $__x:enum exp_type const&=0D process("/home/prasadkr/systemtap/stap").function("_M_find_node@/usr/lib/gc= c/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/tr1_impl/hashtable= :912")?=0D process("/home/prasadkr/systemtap/stap").function("_M_get_deleter@/usr/lib/= gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/tr1/shared_ptr.h= :78")? $this:class _Sp_counted_base_impl, (__gnu_cxx::_Lock_policy)2u>* const $__ti:class type_info const&= =0D process("/home/prasadkr/systemtap/stap").function("_M_get_node@/usr/lib/gcc= /ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_list.h:315= ")?=0D process("/home/prasadkr/systemtap/stap").function("_M_get_node@/usr/lib/gcc= /ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_tree.h:358= ")?=0D process("/home/prasadkr/systemtap/stap").function("_M_hash_code@/usr/lib/gc= c/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/tr1_impl/hashtable= _policy.h:753")?=0D process("/home/prasadkr/systemtap/stap").function("_M_incr@/usr/lib/gcc/ppc= 64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/tr1_impl/hashtable_poli= cy.h:247")?=0D process("/home/prasadkr/systemtap/stap").function("_M_incr_bucket@/usr/lib/= gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/tr1_impl/hashtab= le_policy.h:265")?=0D process("/home/prasadkr/systemtap/stap").function("_M_init@/usr/lib/gcc/ppc= 64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_list.h:366")?= =0D process("/home/prasadkr/systemtap/stap").function("_M_initialize@/usr/lib/g= cc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_tree.h:4= 44")?=0D process("/home/prasadkr/systemtap/stap").function("_M_initialize_dispatch, st= d::allocator > > >@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../= include/c++/4.4.4/bits/stl_list.h:1357")? $__first:struct _List_const_itera= tor, std::allocator > = > $this:class list, std::all= ocator >, std::allocator, std::allocator > > >* const=0D process("/home/prasadkr/systemtap/stap").function("_M_initialize_dispatch,= std::allocator > > >@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../= ../include/c++/4.4.4/bits/stl_vector.h:997")?=0D process("/home/prasadkr/systemtap/stap").function("_M_initialize_map@/usr/l= ib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_dequ= e.h:492")? $__num_elements:size_t=0D process("/home/prasadkr/systemtap/stap").function("_M_insert@/usr/lib/gcc/p= pc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_list.h:1405"= )?=0D process("/home/prasadkr/systemtap/stap").function("_M_insert@/usr/lib/gcc/p= pc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/tr1_impl/hashtable:97= 5")?=0D process("/home/prasadkr/systemtap/stap").function("_M_insert@/usr/lib/gcc/p= pc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/tr1_impl/hashtable:99= 6")? $this:class _Hashtable,= std::allocator >, std::pair, std::allocator >, Dwarf_Die>, std::allocator, std::allocator = >, Dwarf_Die> >, std::_Select1st, std::allocator >, Dwarf_Die> >, std::equal_to, std::allocator > >, st= d::tr1::hash, std::allocator= > >, std::tr1::__detail::_Mod_range_hashing, std::tr1::__detail::_De= fault_ranged_hash, std::tr1::__detail::_Prime_rehash_policy, false, false, = false>* const $__v:struct pair, std::allocator >, Dwarf_Die> const&=0D process("/home/prasadkr/systemtap/stap").function("_M_insert_@/usr/lib/gcc/= ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_tree.h:874"= )? $__x:struct _Rb_tree_node_base const* $__p:struct _Rb_tree_node_base con= st*=0D process("/home/prasadkr/systemtap/stap").function("_M_insert_aux@/usr/lib/g= cc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/vector.tcc:2= 95")?=0D process("/home/prasadkr/systemtap/stap").function("_M_insert_bucket@/usr/li= b/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/tr1_impl/hasht= able:931")? $__n:size_t $__code:size_t=0D process("/home/prasadkr/systemtap/stap").function("_M_insert_dispatch<__gnu= _cxx::__normal_iterator > > >@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../includ= e/c++/4.4.4/bits/stl_vector.h:1097")? $__last:class __normal_iterator > > $__first:cla= ss __normal_iterator > > $__pos:class __normal_iterator > > $this:class vector >* const=0D process("/home/prasadkr/systemtap/stap").function("_M_insert_equal@/usr/lib= /gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_tree.h= :1189")?=0D process("/home/prasadkr/systemtap/stap").function("_M_insert_unique<__gnu_c= xx::__normal_iterator,= std::allocator >*, std::vector, std::allocator >, std::allocator, std::allocator > > > > >@/usr/lib/gcc/ppc64-re= dhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_tree.h:1320")?=0D process("/home/prasadkr/systemtap/stap").function("_M_insert_unique<__gnu_c= xx::__normal_iterator > > >@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.= 4.4/bits/stl_tree.h:1320")?=0D process("/home/prasadkr/systemtap/stap").function("_M_insert_unique, std::= allocator > > >@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../inc= lude/c++/4.4.4/bits/stl_tree.h:1320")? $this:class _Rb_tree, std::allocator >, std::basic_string<= char, std::char_traits, std::allocator >, std::_Identity, std::allocator > >, std::le= ss, std::allocator > >= , std::allocator, std::alloc= ator > > >* const $__first:struct _Rb_tree_const_iterator, std::allocator > >=0D process("/home/prasadkr/systemtap/stap").function("_M_insert_unique@/usr/li= b/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_tree.= h:1161")?=0D process("/home/prasadkr/systemtap/stap").function("_M_insert_unique_@/usr/l= ib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_tree= .h:1206")?=0D process("/home/prasadkr/systemtap/stap").function("_M_leak@/usr/lib/gcc/ppc= 64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/basic_string.h:299= ")?=0D process("/home/prasadkr/systemtap/stap").function("_M_limit@/usr/lib/gcc/pp= c64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/basic_string.h:32= 2")? $__off:size_t $this:struct basic_string, = std::allocator > const* const $__pos:size_t=0D process("/home/prasadkr/systemtap/stap").function("_M_lower_bound@/usr/lib/= gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_tree.h:= 981")?=0D process("/home/prasadkr/systemtap/stap").function("_M_lower_bound@/usr/lib/= gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_tree.h:= 997")?=0D process("/home/prasadkr/systemtap/stap").function("_M_need_rehash@/usr/lib/= gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/tr1_impl/hashtab= le_policy.h:488")?=0D process("/home/prasadkr/systemtap/stap").function("_M_next_bkt@/usr/lib/gcc= /ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/tr1_impl/hashtable_= policy.h:454")? $this:struct _Prime_rehash_policy const* const=0D process("/home/prasadkr/systemtap/stap").function("_M_pop_back_aux@/usr/lib= /gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/deque.tcc:= 426")?=0D process("/home/prasadkr/systemtap/stap").function("_M_push_back_aux@/usr/li= b/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/deque.tcc= :364")?=0D process("/home/prasadkr/systemtap/stap").function("_M_put_node@/usr/lib/gcc= /ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_list.h:319= ")?=0D process("/home/prasadkr/systemtap/stap").function("_M_put_node@/usr/lib/gcc= /ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_tree.h:362= ")?=0D process("/home/prasadkr/systemtap/stap").function("_M_range_initialize, st= d::allocator > > >@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../= include/c++/4.4.4/bits/stl_vector.h:1018")?=0D process("/home/prasadkr/systemtap/stap").function("_M_range_insert<__gnu_cx= x::__normal_iterator > > >@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c= ++/4.4.4/bits/vector.tcc:478")? $this:class vector >* const $__position:class __normal_iterator > > $__first:class __norma= l_iterator = > > $__last:class __normal_iterator > >=0D process("/home/prasadkr/systemtap/stap").function("_M_reallocate_map@/usr/l= ib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/deque.tc= c:795")?=0D process("/home/prasadkr/systemtap/stap").function("_M_refdata@/usr/lib/gcc/= ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/basic_string.h:= 214")?=0D process("/home/prasadkr/systemtap/stap").function("_M_rehash@/usr/lib/gcc/p= pc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/tr1_impl/hashtable:12= 32")?=0D process("/home/prasadkr/systemtap/stap").function("_M_release@/usr/lib/gcc/= ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/tr1_impl/boost_sp_co= unted_base.h:136")? $this:class _Sp_counted_base<(__gnu_cxx::_Lock_policy)2= u>* const=0D process("/home/prasadkr/systemtap/stap").function("_M_rep@/usr/lib/gcc/ppc6= 4-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/basic_string.h:285"= )?=0D process("/home/prasadkr/systemtap/stap").function("_M_reserve_map_at_back@/= usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl= _deque.h:1715")? $__nodes_to_add:size_t=0D process("/home/prasadkr/systemtap/stap").function("_M_root@/usr/lib/gcc/ppc= 64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_tree.h:461")?= =0D process("/home/prasadkr/systemtap/stap").function("_M_set_length_and_sharab= le@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits= /basic_string.h:199")?=0D process("/home/prasadkr/systemtap/stap").function("_M_set_node@/usr/lib/gcc= /ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_deque.h:22= 2")?=0D process("/home/prasadkr/systemtap/stap").function("_M_set_sharable@/usr/lib= /gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/basic_stri= ng.h:195")?=0D process("/home/prasadkr/systemtap/stap").function("_M_stringbuf_init@/usr/l= ib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/sstream:154")= ? $this:struct basic_stringbuf, std::allocator= >* const=0D process("/home/prasadkr/systemtap/stap").function("_M_swap@/usr/lib/gcc/ppc= 64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/tr1/shared_ptr.h:179")?= =0D process("/home/prasadkr/systemtap/stap").function("_M_transfer@/usr/lib/gcc= /ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_list.h:139= 9")? $this:class list, std::= allocator >, std::allocator, std::allocator > > >* const=0D process("/home/prasadkr/systemtap/stap").function("_M_upper_bound@/usr/lib/= gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_tree.h:= 1013")?=0D process("/home/prasadkr/systemtap/stap").function("_M_upper_bound@/usr/lib/= gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_tree.h:= 1029")? $__k:struct basic_string, std::allocat= or > const& $__y:struct _Rb_tree_node, std::allocator >, std::basic_string<= char, std::char_traits, std::allocator > > > const* $__x:struct= _Rb_tree_node, std::allocator >, std::basic_string,= std::allocator > > > const* $this:class _Rb_tree, std::allocator >, std::pair, std::allocator >, std::basi= c_string, std::allocator > >, std::_Sele= ct1st, std::= allocator >, std::basic_string, std::all= ocator > > >, std::less, std::allocator > >, std::allocator, std::allocator >, std::basic_string<= char, std::char_traits, std::allocator > > > > const* const=0D process("/home/prasadkr/systemtap/stap").function("_Prime_rehash_policy@/us= r/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/tr1_impl/h= ashtable_policy.h:417")?=0D process("/home/prasadkr/systemtap/stap").function("_Rb_tree@/usr/lib/gcc/pp= c64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_tree.h:591")?= =0D process("/home/prasadkr/systemtap/stap").function("_Rb_tree@/usr/lib/gcc/pp= c64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_tree.h:597")?= =0D process("/home/prasadkr/systemtap/stap").function("_Rb_tree_const_iterator@= /usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/st= l_tree.h:238")?=0D process("/home/prasadkr/systemtap/stap").function("_Rb_tree_const_iterator@= /usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/st= l_tree.h:242")?=0D process("/home/prasadkr/systemtap/stap").function("_Rb_tree_impl@/usr/lib/g= cc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_tree.h:4= 32")?=0D process("/home/prasadkr/systemtap/stap").function("_Rb_tree_impl@/usr/lib/g= cc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_tree.h:4= 37")?=0D process("/home/prasadkr/systemtap/stap").function("_Rb_tree_iterator@/usr/l= ib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_tree= .h:170")?=0D process("/home/prasadkr/systemtap/stap").function("_S_compare@/usr/lib/gcc/= ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/basic_string.h:= 392")?=0D process("/home/prasadkr/systemtap/stap").function("_S_construct@/usr= /lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/basic_= string.h:1556")? $__end:char* $__beg:char*=0D process("/home/prasadkr/systemtap/stap").function("_S_construct@/usr= /lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/basic_= string.tcc:123")? $__beg:char* $__end:char* $__a:class allocator cons= t&=0D process("/home/prasadkr/systemtap/stap").function("_S_construct_aux@= /usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/ba= sic_string.h:1539")? $__beg:char* $__end:char*=0D process("/home/prasadkr/systemtap/stap").function("_S_copy_chars@/usr/lib/g= cc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/basic_string= .h:384")?=0D process("/home/prasadkr/systemtap/stap").function("_S_left@/usr/lib/gcc/ppc= 64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_tree.h:508")?= =0D process("/home/prasadkr/systemtap/stap").function("_S_left@/usr/lib/gcc/ppc= 64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_tree.h:512")?= =0D process("/home/prasadkr/systemtap/stap").function("_S_maximum@/usr/lib/gcc/= ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_tree.h:112"= )? $__x:_Base_ptr=0D process("/home/prasadkr/systemtap/stap").function("_S_maximum@/usr/lib/gcc/= ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_tree.h:540"= )? $__x:struct _Rb_tree_node_base*=0D process("/home/prasadkr/systemtap/stap").function("_S_minimum@/usr/lib/gcc/= ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_tree.h:532"= )? $__x:struct _Rb_tree_node_base*=0D process("/home/prasadkr/systemtap/stap").function("_S_minimum@/usr/lib/gcc/= ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_tree.h:98")= ? $__x:_Base_ptr=0D process("/home/prasadkr/systemtap/stap").function("_S_right@/usr/lib/gcc/pp= c64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_tree.h:516")?= =0D process("/home/prasadkr/systemtap/stap").function("_S_right@/usr/lib/gcc/pp= c64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_tree.h:520")?= =0D process("/home/prasadkr/systemtap/stap").function("_Sp_counted_base@/usr/li= b/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/tr1_impl/boost= _sp_counted_base.h:108")? $this:class _Sp_counted_base<(__gnu_cxx::_Lock_po= licy)2u>* const=0D process("/home/prasadkr/systemtap/stap").function("_Sp_counted_base_impl@/u= sr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/tr1/share= d_ptr.h:70")?=0D process("/home/prasadkr/systemtap/stap").function("_Vector_base@/usr/lib/gc= c/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_vector.h:= 104")?=0D process("/home/prasadkr/systemtap/stap").function("_Vector_base@/usr/lib/gc= c/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_vector.h:= 107")? $this:struct _Vector_base, std::allocator >, std::allocator, std::allocator > > >* const=0D process("/home/prasadkr/systemtap/stap").function("_Vector_base@/usr/lib/gc= c/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_vector.h:= 110")?=0D process("/home/prasadkr/systemtap/stap").function("_Vector_impl@/usr/lib/gc= c/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_vector.h:= 80")?=0D process("/home/prasadkr/systemtap/stap").function("_Vector_impl@/usr/lib/gc= c/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_vector.h:= 84")?=0D process("/home/prasadkr/systemtap/stap").function("__adjust_heap<__gnu_cxx:= :__normal_iterator > >, long int, be_derived_probe*, bool (*)(con= st be_derived_probe*, const be_derived_probe*)>@/usr/lib/gcc/ppc64-redhat-l= inux/4.4.4/../../../../include/c++/4.4.4/bits/stl_heap.h:295")? $__first:cl= ass __normal_iterator > > $__holeIndex:long int $__len:long int $= __value:struct be_derived_probe* $__comp:void*=0D process("/home/prasadkr/systemtap/stap").function("__advance@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4= /bits/stl_iterator_base_funcs.h:145")? $__n:long int=0D process("/home/prasadkr/systemtap/stap").function("__advance<__gnu_cxx::__n= ormal_iterator > >, long int>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../includ= e/c++/4.4.4/bits/stl_iterator_base_funcs.h:145")? $__n:long int=0D process("/home/prasadkr/systemtap/stap").function("__atomic_add@/usr/lib/gc= c/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/ext/atomicity.h:49= ")? $__mem:_Atomic_word volatile* $__val:int=0D process("/home/prasadkr/systemtap/stap").function("__atomic_add_dispatch@/u= sr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/ext/atomi= city.h:89")? $__val:int $__mem:_Atomic_word*=0D process("/home/prasadkr/systemtap/stap").function("__atomic_add_single@/usr= /lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/ext/atomici= ty.h:70")? $__val:int=0D process("/home/prasadkr/systemtap/stap").function("__check_facet >@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.= 4/bits/basic_ios.h:46")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_m@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/= stl_algobase.h:376")? $__result:struct Dwarf_Attribute*=0D process("/home/prasadkr/systemtap/stap").function("__copy_m@/usr= /lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_al= gobase.h:376")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_m@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bit= s/stl_algobase.h:376")? $__result:struct be_derived_probe**=0D process("/home/prasadkr/systemtap/stap").function("__copy_m@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../..= /../include/c++/4.4.4/bits/stl_algobase.h:338")? $__last:struct compile_ser= ver_info* $__first:struct compile_server_info* $__result:struct compile_ser= ver_info*=0D process("/home/prasadkr/systemtap/stap").function("__copy_m@/usr/lib/gcc/ppc64= -redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h:338")= ? $__first:struct format_component const* $__result:struct format_component= *=0D process("/home/prasadkr/systemtap/stap").function("__copy_m@/usr/lib/gcc/ppc64-redhat-linu= x/4.4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h:338")? $__first:s= truct component const* $__result:struct component*=0D process("/home/prasadkr/systemtap/stap").function("__copy_m@/= usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl= _algobase.h:376")? $__result:struct token const**=0D process("/home/prasadkr/systemtap/stap").function("__copy_m@/= usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl= _algobase.h:376")? $__last:struct defined_op** const* $__first:struct defin= ed_op** const* $__result:struct defined_op***=0D process("/home/prasadkr/systemtap/stap").function("__copy_m= @/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/s= tl_algobase.h:376")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_m@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.= 4/bits/stl_algobase.h:376")? $__result:struct derived_probe_builder**=0D process("/home/prasadkr/systemtap/stap").function("__copy_m@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/= bits/stl_algobase.h:376")? $__result:struct derived_probe_group**=0D process("/home/prasadkr/systemtap/stap").function("__copy_m@= /usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/st= l_algobase.h:376")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_m@/usr/= lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_alg= obase.h:376")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_m@/u= sr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_= algobase.h:376")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_m@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/= stl_algobase.h:376")? $__last:struct functioncall*** const* $__first:struct= functioncall*** const* $__result:struct functioncall****=0D process("/home/prasadkr/systemtap/stap").function("__copy_m@= /usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/st= l_algobase.h:376")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_m@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.= 4/bits/stl_algobase.h:376")? $__result:struct hrtimer_derived_probe**=0D process("/home/prasadkr/systemtap/stap").function("__copy_m@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4= /bits/stl_algobase.h:376")? $__result:struct hwbkpt_derived_probe**=0D process("/home/prasadkr/systemtap/stap").function("__copy_m@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4= /bits/stl_algobase.h:376")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_m@/usr/= lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_alg= obase.h:376")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_m@/usr= /lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_al= gobase.h:376")? $__result:struct mark_arg**=0D process("/home/prasadkr/systemtap/stap").function("__copy_m@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/b= its/stl_algobase.h:376")? $__result:struct mark_derived_probe**=0D process("/home/prasadkr/systemtap/stap").function("__copy_m@/u= sr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_= algobase.h:376")? $__result:struct match_node**=0D process("/home/prasadkr/systemtap/stap").function("__copy_m@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/b= its/stl_algobase.h:376")? $__result:struct perf_derived_probe**=0D process("/home/prasadkr/systemtap/stap").function("__copy_m@/usr/lib/gcc/ppc64-redha= t-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h:338")? $__l= ast:struct format_component* $__first:struct format_component* $__result:st= ruct format_component*=0D process("/home/prasadkr/systemtap/stap").function("__copy_m@/usr/li= b/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_algob= ase.h:376")? $__result:struct probe**=0D process("/home/prasadkr/systemtap/stap").function("__copy_m@/= usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl= _algobase.h:376")? $__result:struct probe_alias**=0D process("/home/prasadkr/systemtap/stap").function("__copy_m@/= usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl= _algobase.h:376")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_m@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4= .4/bits/stl_algobase.h:376")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_m@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.= 4/bits/stl_algobase.h:376")? $__result:struct profile_derived_probe**=0D process("/home/prasadkr/systemtap/stap").function("__copy_m@/usr/l= ib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_algo= base.h:376")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_m@/usr= /lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_al= gobase.h:376")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_m@/us= r/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_a= lgobase.h:376")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_m, std::_Deque_ite= rator >@/usr/lib/gcc/ppc64-redhat-= linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h:338")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_m, std::_= Deque_iterator >@/usr/lib= /gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_algoba= se.h:338")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_m, std::_Deque_iterator >@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/= 4.4.4/bits/stl_algobase.h:338")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_m@/usr/l= ib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_algo= base.h:376")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_m@/usr/lib/gcc/ppc64-redhat-linux/4.4.= 4/../../../../include/c++/4.4.4/bits/stl_algobase.h:338")? $__last:struct c= omponent* $__first:struct component* $__result:struct component*=0D process("/home/prasadkr/systemtap/stap").function("__copy_m@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/= bits/stl_algobase.h:376")? $__result:struct timer_derived_probe**=0D process("/home/prasadkr/systemtap/stap").function("__copy_m@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4= .4.4/bits/stl_algobase.h:376")? $__result:struct tracepoint_derived_probe**= =0D process("/home/prasadkr/systemtap/stap").function("__copy_m@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/= stl_algobase.h:376")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_m@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4= /bits/stl_algobase.h:376")? $__result:struct uprobe_derived_probe**=0D process("/home/prasadkr/systemtap/stap").function("__copy_m@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4= /bits/stl_algobase.h:376")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_m@/usr/= lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_alg= obase.h:376")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_m@/usr/li= b/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_algob= ase.h:376")? $__last:void** const* $__first:void** const* $__result:void***= =0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a2@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../= ../../../include/c++/4.4.4/bits/stl_algobase.h:431")? $__last:struct Dwarf_= Attribute* $__result:struct Dwarf_Attribute*=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a2@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../inc= lude/c++/4.4.4/bits/stl_algobase.h:431")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a2 > >, __gnu_cxx::__normal_iterato= r > > >@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../i= nclude/c++/4.4.4/bits/stl_algobase.h:431")? $__last:class __normal_iterator= > > $__first:class __normal_iterator > >=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a2 > >, Dwarf_Die*>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/.= ./../../../include/c++/4.4.4/bits/stl_algobase.h:431")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a2 > >, __gnu_cxx::__normal_iterator > > >@/usr/lib/gcc/ppc64-redhat-linu= x/4.4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h:431")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a2 > >, exp_type*>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../..= /../../include/c++/4.4.4/bits/stl_algobase.h:431")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a2 > >, long int*>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../..= /../../include/c++/4.4.4/bits/stl_algobase.h:431")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a2 > >, __gnu_cxx::__normal_iterator > > >@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../incl= ude/c++/4.4.4/bits/stl_algobase.h:431")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a2 > >, __gnu_= cxx::__normal_iterator > > >@/usr/lib/gcc/pp= c64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h:43= 1")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a2 > >, derived_probe**>@/usr/lib/gcc/ppc64-= redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h:431")?= =0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a2 > >, embeddedcode**>@/usr/lib/gcc/ppc64-redh= at-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h:431")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a2 > >, __gnu_cxx::__normal_iterator > > >@/usr/lib/gcc/ppc64= -redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h:431")= ?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a2 > >, expression**>@/usr/lib/gcc/ppc64-redhat-linux= /4.4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h:431")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a2 > >, functiondecl**>@/usr/lib/gcc/ppc64-redh= at-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h:431")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a2 > >, itrace_derived_= probe**>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.= 4/bits/stl_algobase.h:431")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a2 > >, __gnu_cxx::__normal_iterator > > >@/usr/lib/gcc= /ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h= :431")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a2 > >, probe_point**>@/usr/lib/gcc/ppc64-redhat-l= inux/4.4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h:431")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a2 > >, __gnu_cxx= ::__normal_iterator > > >@/usr/lib/gcc/ppc64-re= dhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h:431")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a2 > >, probe_poi= nt::component**>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/= c++/4.4.4/bits/stl_algobase.h:431")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a2 > >, remote**>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../= ../include/c++/4.4.4/bits/stl_algobase.h:431")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a2 > >, stapfile**>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/.= ./../../../include/c++/4.4.4/bits/stl_algobase.h:431")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a2 > >, __gnu_cxx::__normal_iterator > > >@/usr/lib/gcc/ppc64-redha= t-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h:431")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a2 > >, statement**>@/usr/lib/gcc/ppc64-redhat-linux/4.4= .4/../../../../include/c++/4.4.4/bits/stl_algobase.h:431")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a2 > >, __gnu_cxx::__normal_iterator > > >@/usr/lib/gcc/ppc64-redhat-linu= x/4.4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h:431")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a2 > >, statement**>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../= ../../../include/c++/4.4.4/bits/stl_algobase.h:431")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a2 > >, symbol**>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../= ../include/c++/4.4.4/bits/stl_algobase.h:431")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a2 > >, update_visitor**>@/usr/lib/gcc/pp= c64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h:43= 1")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a2 > >, utrace_derived_= probe**>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.= 4/bits/stl_algobase.h:431")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a2 > >, vardecl**>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../..= /../../include/c++/4.4.4/bits/stl_algobase.h:431")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a2 > >, __gnu_cxx::__normal_iterator > > >@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../.= ./../../include/c++/4.4.4/bits/stl_algobase.h:431")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a2@/usr/lib/gcc/ppc64-redhat-linux/4.4.4= /../../../../include/c++/4.4.4/bits/stl_algobase.h:431")? $__last:struct be= _derived_probe** $__result:struct be_derived_probe**=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a2@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../= ../include/c++/4.4.4/bits/stl_algobase.h:431")? $__last:struct token const*= * $__result:struct token const**=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a2@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../= ../include/c++/4.4.4/bits/stl_algobase.h:431")? $__result:struct defined_op= *** $__last:struct defined_op*** $__first:struct defined_op***=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a2@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../..= /../../include/c++/4.4.4/bits/stl_algobase.h:431")? $__last:struct derived_= probe** $__result:struct derived_probe**=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a2@/usr/lib/gcc/ppc64-redhat-l= inux/4.4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h:431")? $__last= :struct derived_probe_builder** $__result:struct derived_probe_builder**=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a2@/usr/lib/gcc/ppc64-redhat-linux= /4.4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h:431")? $__last:str= uct derived_probe_group** $__result:struct derived_probe_group**=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a2@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../.= ./../include/c++/4.4.4/bits/stl_algobase.h:431")? $__last:struct embeddedco= de** $__result:struct embeddedcode**=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a2@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../inclu= de/c++/4.4.4/bits/stl_algobase.h:431")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a2@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../..= /include/c++/4.4.4/bits/stl_algobase.h:431")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a2@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../= ../../../include/c++/4.4.4/bits/stl_algobase.h:431")? $__result:struct func= tioncall**** $__last:struct functioncall**** $__first:struct functioncall**= **=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a2@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../.= ./../include/c++/4.4.4/bits/stl_algobase.h:431")? $__last:struct functionde= cl** $__result:struct functiondecl**=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a2@/usr/lib/gcc/ppc64-redhat-l= inux/4.4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h:431")? $__last= :struct hrtimer_derived_probe** $__result:struct hrtimer_derived_probe**=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a2@/usr/lib/gcc/ppc64-redhat-lin= ux/4.4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h:431")? $__last:s= truct hwbkpt_derived_probe** $__result:struct hwbkpt_derived_probe**=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a2@/usr/lib/gcc/ppc64-redhat-lin= ux/4.4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h:431")? $__last:s= truct itrace_derived_probe**=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a2@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../inclu= de/c++/4.4.4/bits/stl_algobase.h:431")? $__last:long int* $__result:long in= t*=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a2@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../inc= lude/c++/4.4.4/bits/stl_algobase.h:431")? $__last:struct mark_arg** $__resu= lt:struct mark_arg**=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a2@/usr/lib/gcc/ppc64-redhat-linux/4= .4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h:431")? $__last:struc= t mark_derived_probe** $__result:struct mark_derived_probe**=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a2@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../..= /include/c++/4.4.4/bits/stl_algobase.h:431")? $__last:struct match_node** $= __result:struct match_node**=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a2@/usr/lib/gcc/ppc64-redhat-linux/4= .4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h:431")? $__last:struc= t perf_derived_probe** $__result:struct perf_derived_probe**=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a2@/usr/lib/gc= c/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_algobase.= h:431")? $__result:struct format_component* $__last:struct format_component= * $__first:struct format_component*=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a2@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c= ++/4.4.4/bits/stl_algobase.h:431")? $__last:struct probe** $__result:struct= probe**=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a2@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../= ../include/c++/4.4.4/bits/stl_algobase.h:431")? $__last:struct probe_alias*= * $__result:struct probe_alias**=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a2@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../= ../include/c++/4.4.4/bits/stl_algobase.h:431")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a2@/usr/lib/gcc/ppc64-redhat= -linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h:431")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a2@/usr/lib/gcc/ppc64-redhat-l= inux/4.4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h:431")? $__last= :struct profile_derived_probe** $__result:struct profile_derived_probe**=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a2@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include= /c++/4.4.4/bits/stl_algobase.h:431")? $__last:class remote**=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a2@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../inc= lude/c++/4.4.4/bits/stl_algobase.h:431")? $__last:struct stapfile** $__resu= lt:struct stapfile**=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a2@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../i= nclude/c++/4.4.4/bits/stl_algobase.h:431")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a2, st= d::_Deque_iterator >@/usr/lib/gcc/= ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h:= 431")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a2, std::_Deque_iterator >@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bi= ts/stl_algobase.h:431")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a2, std::_Deque_iterator= >@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../..= /include/c++/4.4.4/bits/stl_algobase.h:431")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a2@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include= /c++/4.4.4/bits/stl_algobase.h:431")? $__last:struct symbol** $__result:str= uct symbol**=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a2@/usr/lib/gcc/ppc64-redh= at-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h:431")? $__= result:struct component* $__last:struct component* $__first:struct componen= t*=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a2@/usr/lib/gcc/ppc64-redhat-linux= /4.4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h:431")? $__last:str= uct timer_derived_probe** $__result:struct timer_derived_probe**=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a2@/usr/lib/gcc/ppc64-re= dhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h:431")? $= __last:struct tracepoint_derived_probe** $__result:struct tracepoint_derive= d_probe**=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a2@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../= ../../../include/c++/4.4.4/bits/stl_algobase.h:431")? $__last:struct update= _visitor** $__result:struct update_visitor**=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a2@/usr/lib/gcc/ppc64-redhat-lin= ux/4.4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h:431")? $__last:s= truct uprobe_derived_probe** $__result:struct uprobe_derived_probe**=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a2@/usr/lib/gcc/ppc64-redhat-lin= ux/4.4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h:431")? $__last:s= truct utrace_derived_probe**=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a2@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../inclu= de/c++/4.4.4/bits/stl_algobase.h:431")? $__last:struct vardecl** $__result:= struct vardecl**=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a2@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c= ++/4.4.4/bits/stl_algobase.h:431")? $__result:void*** $__last:void*** $__fi= rst:void***=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../.= ./../../include/c++/4.4.4/bits/stl_algobase.h:386")? $__last:struct Dwarf_A= ttribute* $__result:struct Dwarf_Attribute*=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../incl= ude/c++/4.4.4/bits/stl_algobase.h:386")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/= ../../../../include/c++/4.4.4/bits/stl_algobase.h:386")? $__last:struct be_= derived_probe** $__result:struct be_derived_probe**=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a@/usr/lib/gcc/ppc64-redhat-linux/4.= 4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h:386")? $__result:stru= ct compile_server_info* $__first:struct compile_server_info* $__last:struct= compile_server_info*=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../.= ./include/c++/4.4.4/bits/stl_algobase.h:386")? $__first:struct Dwarf_Die co= nst*=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../= include/c++/4.4.4/bits/stl_algobase.h:386")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../= include/c++/4.4.4/bits/stl_algobase.h:386")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a@/usr/l= ib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_algo= base.h:386")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a@/usr/lib/gcc/ppc64= -redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h:386")= ?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../.= ./include/c++/4.4.4/bits/stl_algobase.h:386")? $__last:struct token const**= $__result:struct token const**=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../.= ./include/c++/4.4.4/bits/stl_algobase.h:386")? $__last:struct defined_op***= $__first:struct defined_op*** $__result:struct defined_op***=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/= ../../../../include/c++/4.4.4/bits/stl_algobase.h:386")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../= ../../include/c++/4.4.4/bits/stl_algobase.h:386")? $__last:struct derived_p= robe** $__result:struct derived_probe**=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a@/usr/lib/gcc/ppc64-redhat-li= nux/4.4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h:386")? $__last:= struct derived_probe_builder** $__result:struct derived_probe_builder**=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a@/usr/lib/gcc/ppc64-redhat-linux/= 4.4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h:386")? $__last:stru= ct derived_probe_group** $__result:struct derived_probe_group**=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/..= /../../../include/c++/4.4.4/bits/stl_algobase.h:386")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../..= /../include/c++/4.4.4/bits/stl_algobase.h:386")? $__last:struct embeddedcod= e** $__result:struct embeddedcode**=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../includ= e/c++/4.4.4/bits/stl_algobase.h:386")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../= ../../include/c++/4.4.4/bits/stl_algobase.h:386")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../= include/c++/4.4.4/bits/stl_algobase.h:386")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../.= ./../../include/c++/4.4.4/bits/stl_algobase.h:386")? $__last:struct functio= ncall**** $__first:struct functioncall**** $__result:struct functioncall***= *=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/..= /../../../include/c++/4.4.4/bits/stl_algobase.h:386")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../..= /../include/c++/4.4.4/bits/stl_algobase.h:386")? $__last:struct functiondec= l** $__result:struct functiondecl**=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a@/usr/lib/gcc/ppc64-redhat-li= nux/4.4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h:386")? $__last:= struct hrtimer_derived_probe** $__result:struct hrtimer_derived_probe**=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a@/usr/lib/gcc/ppc64-redhat-linu= x/4.4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h:386")? $__last:st= ruct hwbkpt_derived_probe** $__result:struct hwbkpt_derived_probe**=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a@/usr/lib/gcc/ppc64-redha= t-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h:386")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a@/usr/lib/gcc/ppc64-redhat-linu= x/4.4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h:386")? $__last:st= ruct itrace_derived_probe**=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../includ= e/c++/4.4.4/bits/stl_algobase.h:386")? $__last:long int* $__result:long int= *=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../incl= ude/c++/4.4.4/bits/stl_algobase.h:386")? $__last:struct mark_arg** $__resul= t:struct mark_arg**=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a@/usr/lib/gcc/ppc64-redhat-linux/4.= 4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h:386")? $__last:struct= mark_derived_probe** $__result:struct mark_derived_probe**=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../= include/c++/4.4.4/bits/stl_algobase.h:386")? $__last:struct match_node** $_= _result:struct match_node**=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a@/usr/lib/gcc/ppc64-redhat-linux/4.= 4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h:386")? $__last:struct= perf_derived_probe** $__result:struct perf_derived_probe**=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a@/usr/lib/gcc= /ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h= :386")? $__last:struct format_component* $__first:struct format_component* = $__result:struct format_component*=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c+= +/4.4.4/bits/stl_algobase.h:386")? $__last:struct probe** $__result:struct = probe**=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../.= ./include/c++/4.4.4/bits/stl_algobase.h:386")? $__last:struct probe_alias**= $__result:struct probe_alias**=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../.= ./../../include/c++/4.4.4/bits/stl_algobase.h:386")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../.= ./include/c++/4.4.4/bits/stl_algobase.h:386")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a@/usr/lib/gcc/ppc64-r= edhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h:386")?= =0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a@/usr/lib/gcc/ppc64-redhat-= linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h:386")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a@/usr/lib/gcc/ppc64-redhat-li= nux/4.4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h:386")? $__last:= struct profile_derived_probe** $__result:struct profile_derived_probe**=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../in= clude/c++/4.4.4/bits/stl_algobase.h:386")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/= c++/4.4.4/bits/stl_algobase.h:386")? $__last:class remote**=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../.= ./include/c++/4.4.4/bits/stl_algobase.h:386")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../incl= ude/c++/4.4.4/bits/stl_algobase.h:386")? $__last:struct stapfile** $__resul= t:struct stapfile**=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../..= /../include/c++/4.4.4/bits/stl_algobase.h:386")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../in= clude/c++/4.4.4/bits/stl_algobase.h:386")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a, std= ::_Deque_iterator >@/usr/lib/gcc/p= pc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h:3= 86")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a, std::_Deque_iterator >@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bit= s/stl_algobase.h:386")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a, std::_Deque_iterator<= void*, void*&, void**> >@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../= include/c++/4.4.4/bits/stl_algobase.h:386")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../in= clude/c++/4.4.4/bits/stl_algobase.h:386")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/= c++/4.4.4/bits/stl_algobase.h:386")? $__last:struct symbol** $__result:stru= ct symbol**=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a@/usr/lib/gcc/ppc64-redha= t-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h:386")? $__l= ast:struct component* $__first:struct component* $__result:struct component= *=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a@/usr/lib/gcc/ppc64-redhat-linux/= 4.4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h:386")? $__last:stru= ct timer_derived_probe** $__result:struct timer_derived_probe**=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a@/usr/lib/gcc/ppc64-red= hat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h:386")? $_= _last:struct tracepoint_derived_probe** $__result:struct tracepoint_derived= _probe**=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a@/usr/lib/gcc/ppc64-redhat-linux/4.4.= 4/../../../../include/c++/4.4.4/bits/stl_algobase.h:386")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../.= ./../../include/c++/4.4.4/bits/stl_algobase.h:386")? $__last:struct update_= visitor** $__result:struct update_visitor**=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a@/usr/lib/gcc/ppc64-redhat-linu= x/4.4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h:386")? $__last:st= ruct uprobe_derived_probe** $__result:struct uprobe_derived_probe**=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a@/usr/lib/gcc/ppc64-redha= t-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h:386")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a@/usr/lib/gcc/ppc64-redhat-linu= x/4.4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h:386")? $__last:st= ruct utrace_derived_probe**=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../= include/c++/4.4.4/bits/stl_algobase.h:386")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../includ= e/c++/4.4.4/bits/stl_algobase.h:386")? $__last:struct vardecl** $__result:s= truct vardecl**=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_a@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c+= +/4.4.4/bits/stl_algobase.h:386")? $__last:void*** $__first:void*** $__resu= lt:void***=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_b@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/= bits/stl_algobase.h:572")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_b= @/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/s= tl_algobase.h:572")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_b@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.= 4/bits/stl_algobase.h:572")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_b@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../= ../../../include/c++/4.4.4/bits/stl_algobase.h:542")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_b@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bit= s/stl_algobase.h:572")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_b@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bit= s/stl_algobase.h:572")? $__last:struct defined_op** const* $__first:struct = defined_op** const* $__result:struct defined_op***=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_b@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/b= its/stl_algobase.h:572")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_b@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++= /4.4.4/bits/stl_algobase.h:572")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_b@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4= .4.4/bits/stl_algobase.h:572")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_b@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bi= ts/stl_algobase.h:572")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_b@= /usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/st= l_algobase.h:572")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_b@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits= /stl_algobase.h:572")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_b@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++= /4.4.4/bits/stl_algobase.h:542")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_b@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/= bits/stl_algobase.h:572")? $__last:struct functioncall*** const* $__first:s= truct functioncall*** const* $__result:struct functioncall****=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_b@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bi= ts/stl_algobase.h:572")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_b@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++= /4.4.4/bits/stl_algobase.h:572")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_b@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/= 4.4.4/bits/stl_algobase.h:572")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_b@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/.= ./../../../include/c++/4.4.4/bits/stl_algobase.h:542")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_b@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/= 4.4.4/bits/stl_algobase.h:572")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_b@= /usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/st= l_algobase.h:572")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_b= @/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/s= tl_algobase.h:572")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_b@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.= 4.4/bits/stl_algobase.h:572")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_b@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits= /stl_algobase.h:572")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_b@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.= 4.4/bits/stl_algobase.h:572")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_b@/usr/lib/gcc/ppc64-= redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h:542")?= =0D process("/home/prasadkr/systemtap/stap").function("__copy_move_b@/u= sr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_= algobase.h:572")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_b@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bit= s/stl_algobase.h:572")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_b@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bit= s/stl_algobase.h:572")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_b@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c+= +/4.4.4/bits/stl_algobase.h:572")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_b@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++= /4.4.4/bits/stl_algobase.h:572")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_b@/= usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl= _algobase.h:572")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_b= @/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/s= tl_algobase.h:572")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_b@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/= stl_algobase.h:572")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_b, std::allocator >*, std::basic_s= tring, std::allocator >*>@/usr/lib/gcc/p= pc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h:5= 42")? $__last:struct basic_string, std::alloca= tor >* $__first:struct basic_string, std= ::allocator >* $__result:struct basic_string, std::allocator >*=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_b*, std::pair*>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/= bits/stl_algobase.h:542")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_b, std::allocator >, uns= igned int>*, std::pair, std:= :allocator >, unsigned int>*>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/.= ./../../../include/c++/4.4.4/bits/stl_algobase.h:542")? $__last:struct pair= , std::allocator >, un= signed int>* $__first:struct pair, std::allocator >, unsigned int>*=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_b@/= usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl= _algobase.h:572")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_b@/usr/lib/gcc/ppc64-redhat-linux= /4.4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h:542")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_b@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4= .4.4/bits/stl_algobase.h:572")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_b@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4= /bits/stl_algobase.h:542")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_b@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../i= nclude/c++/4.4.4/bits/stl_algobase.h:542")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_b@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/= c++/4.4.4/bits/stl_algobase.h:572")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_b@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/= bits/stl_algobase.h:572")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_b@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/= 4.4.4/bits/stl_algobase.h:572")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_b@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/= 4.4.4/bits/stl_algobase.h:572")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_b@= /usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/st= l_algobase.h:572")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_b@/u= sr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_= algobase.h:572")? $__last:void** const* $__first:void** const* $__result:vo= id***=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_backward_a2<= false, Dwarf_Attribute*, Dwarf_Attribute*>@/usr/lib/gcc/ppc64-redhat-linux/= 4.4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h:600")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_backward_a2<= false, Dwarf_Die*, Dwarf_Die*>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../= ../../include/c++/4.4.4/bits/stl_algobase.h:600")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_backward_a2<= false, __gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iter= ator > > >@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../incl= ude/c++/4.4.4/bits/stl_algobase.h:600")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_backward_a2<= false, be_derived_probe**, be_derived_probe**>@/usr/lib/gcc/ppc64-redhat-li= nux/4.4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h:600")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_backward_a2<= false, compile_server_info*, compile_server_info*>@/usr/lib/gcc/ppc64-redha= t-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h:600")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_backward_a2<= false, const token**, const token**>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/= ../../../../include/c++/4.4.4/bits/stl_algobase.h:600")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_backward_a2<= false, defined_op***, defined_op***>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/= ../../../../include/c++/4.4.4/bits/stl_algobase.h:600")? $__last:struct def= ined_op*** $__first:struct defined_op*** $__result:struct defined_op***=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_backward_a2<= false, derived_probe**, derived_probe**>@/usr/lib/gcc/ppc64-redhat-linux/4.= 4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h:600")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_backward_a2<= false, derived_probe_builder**, derived_probe_builder**>@/usr/lib/gcc/ppc64= -redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h:600")= ?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_backward_a2<= false, derived_probe_group**, derived_probe_group**>@/usr/lib/gcc/ppc64-red= hat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h:600")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_backward_a2<= false, embeddedcode**, embeddedcode**>@/usr/lib/gcc/ppc64-redhat-linux/4.4.= 4/../../../../include/c++/4.4.4/bits/stl_algobase.h:600")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_backward_a2<= false, exp_type*, exp_type*>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../..= /../include/c++/4.4.4/bits/stl_algobase.h:600")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_backward_a2<= false, expression**, expression**>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/..= /../../../include/c++/4.4.4/bits/stl_algobase.h:600")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_backward_a2<= false, func_info*, func_info*>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../= ../../include/c++/4.4.4/bits/stl_algobase.h:600")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_backward_a2<= false, functioncall****, functioncall****>@/usr/lib/gcc/ppc64-redhat-linux/= 4.4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h:600")? $__last:stru= ct functioncall**** $__first:struct functioncall**** $__result:struct funct= ioncall****=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_backward_a2<= false, functiondecl**, functiondecl**>@/usr/lib/gcc/ppc64-redhat-linux/4.4.= 4/../../../../include/c++/4.4.4/bits/stl_algobase.h:600")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_backward_a2<= false, hrtimer_derived_probe**, hrtimer_derived_probe**>@/usr/lib/gcc/ppc64= -redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h:600")= ?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_backward_a2<= false, hwbkpt_derived_probe**, hwbkpt_derived_probe**>@/usr/lib/gcc/ppc64-r= edhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h:600")?= =0D process("/home/prasadkr/systemtap/stap").function("__copy_move_backward_a2<= false, inline_instance_info*, inline_instance_info*>@/usr/lib/gcc/ppc64-red= hat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h:600")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_backward_a2<= false, itrace_derived_probe**, itrace_derived_probe**>@/usr/lib/gcc/ppc64-r= edhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h:600")?= =0D process("/home/prasadkr/systemtap/stap").function("__copy_move_backward_a2<= false, long int*, long int*>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../..= /../include/c++/4.4.4/bits/stl_algobase.h:600")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_backward_a2<= false, mark_arg**, mark_arg**>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../= ../../include/c++/4.4.4/bits/stl_algobase.h:600")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_backward_a2<= false, mark_derived_probe**, mark_derived_probe**>@/usr/lib/gcc/ppc64-redha= t-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h:600")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_backward_a2<= false, match_node**, match_node**>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/..= /../../../include/c++/4.4.4/bits/stl_algobase.h:600")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_backward_a2<= false, perf_derived_probe**, perf_derived_probe**>@/usr/lib/gcc/ppc64-redha= t-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h:600")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_backward_a2<= false, print_format::format_component*, print_format::format_component*>@/u= sr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_= algobase.h:600")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_backward_a2<= false, probe**, probe**>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../= include/c++/4.4.4/bits/stl_algobase.h:600")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_backward_a2<= false, probe_alias**, probe_alias**>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/= ../../../../include/c++/4.4.4/bits/stl_algobase.h:600")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_backward_a2<= false, probe_point**, probe_point**>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/= ../../../../include/c++/4.4.4/bits/stl_algobase.h:600")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_backward_a2<= false, probe_point::component**, probe_point::component**>@/usr/lib/gcc/ppc= 64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h:600= ")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_backward_a2<= false, profile_derived_probe**, profile_derived_probe**>@/usr/lib/gcc/ppc64= -redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h:600")= ?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_backward_a2<= false, remote**, remote**>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../.= ./include/c++/4.4.4/bits/stl_algobase.h:600")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_backward_a2<= false, stapfile**, stapfile**>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../= ../../include/c++/4.4.4/bits/stl_algobase.h:600")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_backward_a2<= false, statement**, statement**>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../.= ./../../include/c++/4.4.4/bits/stl_algobase.h:600")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_backward_a2<= false, std::basic_string, std::allocator= >*, std::basic_string, std::allocator >= *>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits= /stl_algobase.h:600")? $__result:struct basic_string, std::allocator >* $__last:struct basic_string, std::allocator >* $__first:struct basic_string, std::allocator >*=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_backward_a2<= false, std::pair*, std::pair*>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../i= nclude/c++/4.4.4/bits/stl_algobase.h:600")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_backward_a2<= false, std::pair, std::alloc= ator >, unsigned int>*, std::pair, std::allocator >, unsigned int>*>@/usr/lib/gcc/ppc64-red= hat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h:600")? $_= _last:struct pair, std::allo= cator >, unsigned int>* $__first:struct pair, std::allocator >, unsigned int>*=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_backward_a2<= false, symbol**, symbol**>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../.= ./include/c++/4.4.4/bits/stl_algobase.h:600")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_backward_a2<= false, target_symbol::component*, target_symbol::component*>@/usr/lib/gcc/p= pc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h:6= 00")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_backward_a2<= false, timer_derived_probe**, timer_derived_probe**>@/usr/lib/gcc/ppc64-red= hat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h:600")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_backward_a2<= false, tmpvar*, tmpvar*>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../= include/c++/4.4.4/bits/stl_algobase.h:600")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_backward_a2<= false, tracepoint_arg*, tracepoint_arg*>@/usr/lib/gcc/ppc64-redhat-linux/4.= 4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h:600")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_backward_a2<= false, tracepoint_derived_probe**, tracepoint_derived_probe**>@/usr/lib/gcc= /ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h= :600")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_backward_a2<= false, update_visitor**, update_visitor**>@/usr/lib/gcc/ppc64-redhat-linux/= 4.4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h:600")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_backward_a2<= false, uprobe_derived_probe**, uprobe_derived_probe**>@/usr/lib/gcc/ppc64-r= edhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h:600")?= =0D process("/home/prasadkr/systemtap/stap").function("__copy_move_backward_a2<= false, utrace_derived_probe**, utrace_derived_probe**>@/usr/lib/gcc/ppc64-r= edhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h:600")?= =0D process("/home/prasadkr/systemtap/stap").function("__copy_move_backward_a2<= false, vardecl**, vardecl**>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../..= /../include/c++/4.4.4/bits/stl_algobase.h:600")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_backward_a2<= false, void***, void***>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../= include/c++/4.4.4/bits/stl_algobase.h:600")? $__last:void*** $__first:void*= ** $__result:void***=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_backward_a@/usr/lib/gcc/ppc64-redhat-linux/4= .4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h:582")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_backward_a@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../.= ./../include/c++/4.4.4/bits/stl_algobase.h:582")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_backward_a@/usr/lib/gcc/ppc64-redhat-lin= ux/4.4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h:582")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_backward_a@/usr/lib/gcc/ppc64-redhat= -linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h:582")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_backward_a@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/.= ./../../../include/c++/4.4.4/bits/stl_algobase.h:582")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_backward_a@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/.= ./../../../include/c++/4.4.4/bits/stl_algobase.h:582")? $__last:struct defi= ned_op*** $__first:struct defined_op*** $__result:struct defined_op***=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_backward_a@/usr/lib/gcc/ppc64-redhat-linux/4.4= .4/../../../../include/c++/4.4.4/bits/stl_algobase.h:582")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_backward_a@/usr/lib/gcc/ppc64-= redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h:582")?= =0D process("/home/prasadkr/systemtap/stap").function("__copy_move_backward_a@/usr/lib/gcc/ppc64-redh= at-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h:582")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_backward_a@/usr/lib/gcc/ppc64-redhat-linux/4.4.4= /../../../../include/c++/4.4.4/bits/stl_algobase.h:582")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_backward_a@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../= ../include/c++/4.4.4/bits/stl_algobase.h:582")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_backward_a@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../= ../../../include/c++/4.4.4/bits/stl_algobase.h:582")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_backward_a@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../.= ./../include/c++/4.4.4/bits/stl_algobase.h:582")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_backward_a@/usr/lib/gcc/ppc64-redhat-linux/4= .4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h:582")? $__last:struc= t functioncall**** $__first:struct functioncall**** $__result:struct functi= oncall****=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_backward_a@/usr/lib/gcc/ppc64-redhat-linux/4.4.4= /../../../../include/c++/4.4.4/bits/stl_algobase.h:582")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_backward_a@/usr/lib/gcc/ppc64-= redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h:582")?= =0D process("/home/prasadkr/systemtap/stap").function("__copy_move_backward_a@/usr/lib/gcc/ppc64-re= dhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h:582")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_backward_a@/usr/lib/gcc/ppc64-redh= at-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h:582")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_backward_a@/usr/lib/gcc/ppc64-re= dhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h:582")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_backward_a@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../= ../include/c++/4.4.4/bits/stl_algobase.h:582")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_backward_a@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../.= ./../include/c++/4.4.4/bits/stl_algobase.h:582")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_backward_a@/usr/lib/gcc/ppc64-redhat= -linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h:582")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_backward_a@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../= ../../../include/c++/4.4.4/bits/stl_algobase.h:582")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_backward_a@/usr/lib/gcc/ppc64-redhat= -linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h:582")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_backward_a@/us= r/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_a= lgobase.h:582")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_backward_a@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../i= nclude/c++/4.4.4/bits/stl_algobase.h:582")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_backward_a@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/.= ./../../../include/c++/4.4.4/bits/stl_algobase.h:582")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_backward_a@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/.= ./../../../include/c++/4.4.4/bits/stl_algobase.h:582")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_backward_a@/usr/lib/gcc/ppc6= 4-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h:582"= )?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_backward_a@/usr/lib/gcc/ppc64-= redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h:582")?= =0D process("/home/prasadkr/systemtap/stap").function("__copy_move_backward_a@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../..= /include/c++/4.4.4/bits/stl_algobase.h:582")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_backward_a@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../.= ./../include/c++/4.4.4/bits/stl_algobase.h:582")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_backward_a@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../..= /../../include/c++/4.4.4/bits/stl_algobase.h:582")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_backward_a, std::allocator = >*, std::basic_string, std::allocator >*= >@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/= stl_algobase.h:582")? $__last:struct basic_string, std::allocator >* $__first:struct basic_string, std::allocator >* $__result:struct basic_string, std::allocator >*=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_backward_a*, std::pair*>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../in= clude/c++/4.4.4/bits/stl_algobase.h:582")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_backward_a, std::alloca= tor >, unsigned int>*, std::pair, std::allocator >, unsigned int>*>@/usr/lib/gcc/ppc64-redh= at-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h:582")? $__= last:struct pair, std::alloc= ator >, unsigned int>* $__first:struct pair, std::allocator >, unsigned int>*=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_backward_a@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../..= /include/c++/4.4.4/bits/stl_algobase.h:582")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_backward_a@/usr/lib/gcc/pp= c64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h:58= 2")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_backward_a@/usr/lib/gcc/ppc64-redh= at-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h:582")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_backward_a@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../i= nclude/c++/4.4.4/bits/stl_algobase.h:582")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_backward_a@/usr/lib/gcc/ppc64-redhat-linux/4.4= .4/../../../../include/c++/4.4.4/bits/stl_algobase.h:582")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_backward_a@/usr/lib/gcc/= ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h:= 582")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_backward_a@/usr/lib/gcc/ppc64-redhat-linux/4= .4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h:582")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_backward_a@/usr/lib/gcc/ppc64-re= dhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h:582")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_backward_a@/usr/lib/gcc/ppc64-re= dhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h:582")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_backward_a@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../= ../include/c++/4.4.4/bits/stl_algobase.h:582")?=0D process("/home/prasadkr/systemtap/stap").function("__copy_move_backward_a@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../i= nclude/c++/4.4.4/bits/stl_algobase.h:582")? $__last:void*** $__first:void**= * $__result:void***=0D process("/home/prasadkr/systemtap/stap").function("__destroy<__gnu_cxx::__n= ormal_iterator > > >@/usr/= lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_con= struct.h:90")? $__first:class __normal_iterator > >=0D process("/home/prasadkr/systemtap/stap").function("__destroy<__gnu_cxx::__n= ormal_iterator > > >@/usr/lib/gcc/ppc64-redh= at-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_construct.h:90")? $__= first:class __normal_iterator > >=0D process("/home/prasadkr/systemtap/stap").function("__destroy@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4= /bits/stl_construct.h:90")? $__first:struct compile_server_info*=0D process("/home/prasadkr/systemtap/stap").function("__destroy@/u= sr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_= construct.h:90")? $__first:struct func_info*=0D process("/home/prasadkr/systemtap/stap").function("__destroy@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.= 4/bits/stl_construct.h:90")? $__first:struct inline_instance_info*=0D process("/home/prasadkr/systemtap/stap").function("__destroy@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../includ= e/c++/4.4.4/bits/stl_construct.h:90")? $__first:struct format_component*=0D process("/home/prasadkr/systemtap/stap").function("__destroy, std::allocator >*>@/usr/lib/gcc/ppc= 64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_construct.h:90= ")?=0D process("/home/prasadkr/systemtap/stap").function("__destroy, std::allocator >, unsigne= d int>*>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.= 4/bits/stl_construct.h:90")?=0D process("/home/prasadkr/systemtap/stap").function("__destroy@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/= 4.4.4/bits/stl_construct.h:90")?=0D process("/home/prasadkr/systemtap/stap").function("__destroy@/usr/= lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_con= struct.h:90")? $__first:struct tmpvar*=0D process("/home/prasadkr/systemtap/stap").function("__destroy@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits= /stl_construct.h:90")? $__first:struct tracepoint_arg*=0D process("/home/prasadkr/systemtap/stap").function("__distance@/= usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl= _iterator_base_funcs.h:87")?=0D process("/home/prasadkr/systemtap/stap").function("__distance<__gnu_cxx::__= normal_iterator > > >@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.= 4.4/bits/stl_iterator_base_funcs.h:87")?=0D process("/home/prasadkr/systemtap/stap").function("__distance@/usr/l= ib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_iter= ator_base_funcs.h:87")? $__last:char* $__first:char*=0D process("/home/prasadkr/systemtap/stap").function("__distance, std::alloca= tor > > >@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c= ++/4.4.4/bits/stl_iterator_base_funcs.h:70")?=0D process("/home/prasadkr/systemtap/stap").function("__distance, std::allocator >, std::basic_string= , std::allocator > > > >@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../= ../../include/c++/4.4.4/bits/stl_iterator_base_funcs.h:70")? $__first:struc= t _Rb_tree_const_iterator, std::allocator >, std::basic_string, std::allocator > > >=0D process("/home/prasadkr/systemtap/stap").function("__distance, std::allocator >, Dwarf_Die>, false, false> >@/usr/li= b/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_itera= tor_base_funcs.h:70")?=0D process("/home/prasadkr/systemtap/stap").function("__distance_fw, std::allocator >, Dwarf_Die>, false, false> >@/usr= /lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/tr1_impl/ha= shtable_policy.h:46")?=0D process("/home/prasadkr/systemtap/stap").function("__distance_fw, std::allocator >, Dwarf_Die>, false, false> >@/usr= /lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/tr1_impl/ha= shtable_policy.h:52")?=0D process("/home/prasadkr/systemtap/stap").function("__equal_aux, std::alloc= ator > >, std::_Rb_tree_const_iterator, std::allocator > > >@/usr/lib/gcc/ppc64-redhat-linu= x/4.4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h:822")?=0D process("/home/prasadkr/systemtap/stap").function("__exchange_and_add@/usr/= lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/ext/atomicit= y.h:45")? $__mem:_Atomic_word volatile* $__val:int=0D process("/home/prasadkr/systemtap/stap").function("__exchange_and_add_dispa= tch@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/ext= /atomicity.h:75")? $__val:int $__mem:_Atomic_word*=0D process("/home/prasadkr/systemtap/stap").function("__exchange_and_add_singl= e@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/ext/a= tomicity.h:62")? $__val:int $__mem:_Atomic_word*=0D process("/home/prasadkr/systemtap/stap").function("__fill_a@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/b= its/stl_algobase.h:687")?=0D process("/home/prasadkr/systemtap/stap").function("__fill_a, false>**, st= d::tr1::__detail::_Hash_node,= false>*>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4= .4/bits/stl_algobase.h:697")? $__last:struct _Hash_node, false>** $__first:struct _Hash_node, false>**=0D process("/home/prasadkr/systemtap/stap").function("__fill_a >*>, false>**, std::tr1::__detail::_Hash_node >*>, false>*>@/us= r/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_a= lgobase.h:697")? $__last:struct _Hash_node >*>, false>** $__first:struct _Has= h_node >*>, false>**=0D process("/home/prasadkr/systemtap/stap").function("__fill_a, std::allocator >, Dwarf_Die>, false>**, std::tr1::__detail::_Has= h_node, std:= :allocator >, Dwarf_Die>, false>*>@/usr/lib/gcc/ppc64-redhat-linux/4.= 4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h:697")? $__last:struct= _Hash_node,= std::allocator >, Dwarf_Die>, false>** $__first:struct _Hash_node, std::allocato= r >, Dwarf_Die>, false>**=0D process("/home/prasadkr/systemtap/stap").function("__fill_a, false>**, std::tr1::__de= tail::_Hash_node, false>*>@/usr/lib/gcc/p= pc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h:6= 97")? $__last:struct _Hash_node, false>**= $__first:struct _Hash_node, false>**=0D process("/home/prasadkr/systemtap/stap").function("__fill_a, false>**, s= td::tr1::__detail::_Hash_node, false>*>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4= .4.4/bits/stl_algobase.h:697")? $__last:struct _Hash_node, false>** $__first:struct _Hash_node, false>**=0D process("/home/prasadkr/systemtap/stap").function("__fill_a, false>**, std= ::tr1::__detail::_Hash_node, f= alse>*>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4= /bits/stl_algobase.h:697")? $__last:struct _Hash_node, false>** $__first:struct _Hash_node, false>**=0D process("/home/prasadkr/systemtap/stap").function("__fill_a, false>**, std::tr= 1::__detail::_Hash_node, false>*>@= /usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/st= l_algobase.h:697")? $__last:struct _Hash_node, false>** $__first:struct _Hash_node, false>**=0D process("/home/prasadkr/systemtap/stap").function("__fill_a >*>, false>**, std::tr1::__detail::_Hash_node >*>, false>*>@/usr/= lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_alg= obase.h:697")? $__last:struct _Hash_node >*>, false>** $__first:struct _Hash_n= ode= >*>, false>**=0D process("/home/prasadkr/systemtap/stap").function("__fill_n_a@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../..= /../include/c++/4.4.4/bits/stl_algobase.h:744")?=0D process("/home/prasadkr/systemtap/stap").function("__fill_n_a@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../.= ./include/c++/4.4.4/bits/stl_algobase.h:744")? $__first:enum exp_type*=0D process("/home/prasadkr/systemtap/stap").function("__fill_n_a@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/..= /../../../include/c++/4.4.4/bits/stl_algobase.h:754")? $__n:long unsigned i= nt $__first:struct probe_point**=0D process("/home/prasadkr/systemtap/stap").function("__final_insertion_sort<_= _gnu_cxx::__normal_iterator > >, bool (*)(const be_derived_probe*= , const be_derived_probe*)>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../= ../include/c++/4.4.4/bits/stl_algo.h:2188")? $__comp:void*=0D process("/home/prasadkr/systemtap/stap").function("__find<__gnu_cxx::__norm= al_iterator > = >, stapfile*>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++= /4.4.4/bits/stl_algo.h:166")?=0D process("/home/prasadkr/systemtap/stap").function("__heap_select<__gnu_cxx:= :__normal_iterator > >, bool (*)(const be_derived_probe*, const b= e_derived_probe*)>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../includ= e/c++/4.4.4/bits/stl_algo.h:1913")? $__last:class __normal_iterator > > $__middle:class __normal_iterator > > $__first:class __nor= mal_iterator > >=0D process("/home/prasadkr/systemtap/stap").function("__insertion_sort<__gnu_c= xx::__normal_iterator > >, bool (*)(const be_derived_probe*, cons= t be_derived_probe*)>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../inc= lude/c++/4.4.4/bits/stl_algo.h:2119")? $__first:class __normal_iterator > > $__last:class __normal_iterator > > $__comp:void*=0D process("/home/prasadkr/systemtap/stap").function("__introsort_loop<__gnu_c= xx::__normal_iterator > >, long int, bool (*)(const be_derived_pr= obe*, const be_derived_probe*)>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../..= /../../include/c++/4.4.4/bits/stl_algo.h:2277")? $__first:class __normal_it= erator > > $__last:class __normal_iterator > > $__depth= _limit:long int $__comp:void*=0D process("/home/prasadkr/systemtap/stap").function("__lc@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c+= +/4.4.4/bits/stl_algobase.h:880")?=0D process("/home/prasadkr/systemtap/stap").function("__lexicographical_compar= e_aux@/usr/lib/gcc/ppc64-redhat-linux/4.4= .4/../../../../include/c++/4.4.4/bits/stl_algobase.h:918")?=0D process("/home/prasadkr/systemtap/stap").function("__lg@/usr/lib/gcc/ppc64-= redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_algo.h:2323")? $_= _n:long int=0D process("/home/prasadkr/systemtap/stap").function("__lower_bound@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../in= clude/c++/4.4.4/tr1_impl/hashtable_policy.h:60")?=0D process("/home/prasadkr/systemtap/stap").function("__lower_bound@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../i= nclude/c++/4.4.4/tr1_impl/hashtable_policy.h:60")?=0D process("/home/prasadkr/systemtap/stap").function("__median@/usr/lib/gc= c/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_algo.h:11= 9")?=0D process("/home/prasadkr/systemtap/stap").function("__newlast1@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../incl= ude/c++/4.4.4/bits/stl_algobase.h:854")?=0D process("/home/prasadkr/systemtap/stap").function("__normal_iterator@/usr/l= ib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_iter= ator.h:686")?=0D process("/home/prasadkr/systemtap/stap").function("__pop_heap<__gnu_cxx::__= normal_iterator > >, bool (*)(const be_derived_probe*, const be_d= erived_probe*)>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c= ++/4.4.4/bits/stl_heap.h:322")? $__last:class __normal_iterator >= > $__comp:void*=0D process("/home/prasadkr/systemtap/stap").function("__push_heap<__gnu_cxx::_= _normal_iterator > >, long int, be_derived_probe*, bool (*)(const= be_derived_probe*, const be_derived_probe*)>@/usr/lib/gcc/ppc64-redhat-lin= ux/4.4.4/../../../../include/c++/4.4.4/bits/stl_heap.h:176")? $__comp:void*= $__holeIndex:long int $__value:struct be_derived_probe* $__topIndex:long i= nt $__first:class __normal_iterator > >=0D process("/home/prasadkr/systemtap/stap").function("__shared_count@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/tr1/s= hared_ptr.h:109")?=0D process("/home/prasadkr/systemtap/stap").function("__shared_count@/usr/lib/= gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/tr1/shared_ptr.h= :104")? $this:class __shared_count<(__gnu_cxx::_Lock_policy)2u>* const=0D process("/home/prasadkr/systemtap/stap").function("__shared_count@/usr/lib/= gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/tr1/shared_ptr.h= :156")?=0D process("/home/prasadkr/systemtap/stap").function("__shared_ptr@/= usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/tr1/shar= ed_ptr.h:376")?=0D process("/home/prasadkr/systemtap/stap").function("__shared_ptr@/usr/lib/gc= c/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/tr1/shared_ptr.h:3= 58")?=0D process("/home/prasadkr/systemtap/stap").function("__shared_ptr@/usr/lib/gc= c/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/tr1/shared_ptr.h:3= 65")?=0D process("/home/prasadkr/systemtap/stap").function("__static_initialization_= and_destruction_0")?=0D process("/home/prasadkr/systemtap/stap").function("__unguarded_insertion_so= rt<__gnu_cxx::__normal_iterator > >, bool (*)(const be_derived_pr= obe*, const be_derived_probe*)>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../..= /../../include/c++/4.4.4/bits/stl_algo.h:2154")? $__first:class __normal_it= erator > > $__comp:void*=0D process("/home/prasadkr/systemtap/stap").function("__unguarded_linear_inser= t<__gnu_cxx::__normal_iterator > >, be_derived_probe*, bool (*)(c= onst be_derived_probe*, const be_derived_probe*)>@/usr/lib/gcc/ppc64-redhat= -linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_algo.h:2079")?=0D process("/home/prasadkr/systemtap/stap").function("__unguarded_partition<__= gnu_cxx::__normal_iterator > >, be_derived_probe*, bool (*)(const= be_derived_probe*, const be_derived_probe*)>@/usr/lib/gcc/ppc64-redhat-lin= ux/4.4.4/../../../../include/c++/4.4.4/bits/stl_algo.h:2224")? $__comp:void= * $__last:class __normal_iterator > > $__first:class __normal_ite= rator > >=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_copy_a@/usr/lib/gcc/ppc64-redh= at-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_uninitialized.h:255")= ? $__last:struct Dwarf_Attribute*=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_copy_a@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../= ../../../include/c++/4.4.4/bits/stl_uninitialized.h:255")?=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_copy_a<_= _gnu_cxx::__normal_iterator > >, Dwarf_Die*, Dwarf_Die>@/usr/lib/gcc/ppc64-redhat-l= inux/4.4.4/../../../../include/c++/4.4.4/bits/stl_uninitialized.h:255")? $_= _first:class __normal_iterator > >=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_copy_a<_= _gnu_cxx::__normal_iterator > >, exp_type*, exp_type>@/usr/lib/gcc/ppc64-redhat-linux/= 4.4.4/../../../../include/c++/4.4.4/bits/stl_uninitialized.h:255")?=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_copy_a<_= _gnu_cxx::__normal_iterator > >, long int*, long int>@/usr/lib/gcc/ppc64-redhat-linux/= 4.4.4/../../../../include/c++/4.4.4/bits/stl_uninitialized.h:255")?=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_copy_a<_= _gnu_cxx::__normal_iterator > >, print_format::format_component*, print_format::format_componen= t>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits= /stl_uninitialized.h:255")?=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_copy_a<_= _gnu_cxx::__normal_iterator, std::allocator >*, std::vector, std::allocator >, std::allocator, std::allocator > > > >, std::basic_strin= g, std::allocator >*, std::basic_string<= char, std::char_traits, std::allocator > >@/usr/lib/gcc/ppc64-r= edhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_uninitialized.h:25= 5")?=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_copy_a<_= _gnu_cxx::__normal_iterator > >, targe= t_symbol::component*, target_symbol::component>@/usr/lib/gcc/ppc64-redhat-l= inux/4.4.4/../../../../include/c++/4.4.4/bits/stl_uninitialized.h:255")?=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_copy_a<_= _gnu_cxx::__normal_iterator > >, derived_probe**, derived_probe*>@/u= sr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_= uninitialized.h:255")?=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_copy_a<_= _gnu_cxx::__normal_iterator > >, embeddedcode**, embeddedcode*>@/usr/li= b/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_unini= tialized.h:255")?=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_copy_a<_= _gnu_cxx::__normal_iterator > >, expression**, expression*>@/usr/lib/gcc/ppc6= 4-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_uninitialized.h= :255")?=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_copy_a<_= _gnu_cxx::__normal_iterator > >, functiondecl**, functiondecl*>@/usr/li= b/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_unini= tialized.h:255")?=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_copy_a<_= _gnu_cxx::__normal_iterator > >, itrace_derived= _probe**, itrace_derived_probe*>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../.= ./../../include/c++/4.4.4/bits/stl_uninitialized.h:255")?=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_copy_a<_= _gnu_cxx::__normal_iterator > >, probe_point**, probe_point*>@/usr/lib/gcc= /ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_uninitiali= zed.h:255")?=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_copy_a<_= _gnu_cxx::__normal_iterator > >, probe_po= int::component**, probe_point::component*>@/usr/lib/gcc/ppc64-redhat-linux/= 4.4.4/../../../../include/c++/4.4.4/bits/stl_uninitialized.h:255")?=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_copy_a<_= _gnu_cxx::__normal_iterator > >, remote**, remote*>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4= /../../../../include/c++/4.4.4/bits/stl_uninitialized.h:255")?=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_copy_a<_= _gnu_cxx::__normal_iterator > >, stapfile**, stapfile*>@/usr/lib/gcc/ppc64-redhat-l= inux/4.4.4/../../../../include/c++/4.4.4/bits/stl_uninitialized.h:255")?=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_copy_a<_= _gnu_cxx::__normal_iterator > >, statement**, statement*>@/usr/lib/gcc/ppc64-red= hat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_uninitialized.h:255"= )?=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_copy_a<_= _gnu_cxx::__normal_iterator > >, statement**, statement*>@/usr/lib/gcc/ppc64-redhat-li= nux/4.4.4/../../../../include/c++/4.4.4/bits/stl_uninitialized.h:255")?=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_copy_a<_= _gnu_cxx::__normal_iterator > >, symbol**, symbol*>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4= /../../../../include/c++/4.4.4/bits/stl_uninitialized.h:255")?=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_copy_a<_= _gnu_cxx::__normal_iterator > >, update_visitor**, update_visitor= *>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits= /stl_uninitialized.h:255")?=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_copy_a<_= _gnu_cxx::__normal_iterator > >, utrace_derived= _probe**, utrace_derived_probe*>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../.= ./../../include/c++/4.4.4/bits/stl_uninitialized.h:255")?=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_copy_a<_= _gnu_cxx::__normal_iterator > >, vardecl**, vardecl*>@/usr/lib/gcc/ppc64-redhat-linux/= 4.4.4/../../../../include/c++/4.4.4/bits/stl_uninitialized.h:255")?=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_copy_a@/usr/lib/gcc/ppc6= 4-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_uninitialized.h= :255")? $__last:struct be_derived_probe**=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_copy_a@/usr/lib/gc= c/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_uninitial= ized.h:255")? $__result:struct compile_server_info* $__last:struct compile_= server_info* $__first:struct compile_server_info*=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_copy_a@/usr/lib/gcc/ppc64-redhat-linux/= 4.4.4/../../../../include/c++/4.4.4/bits/stl_uninitialized.h:255")? $__last= :struct token const**=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_copy_a@/usr/lib/gcc/ppc64-redhat-= linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_uninitialized.h:255")? $= __last:struct derived_probe**=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_copy_a@/u= sr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_= uninitialized.h:255")? $__last:struct derived_probe_builder**=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_copy_a@/usr/lib= /gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_uninit= ialized.h:255")? $__last:struct derived_probe_group**=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_copy_a@/usr/lib/gcc/ppc64-redhat-lin= ux/4.4.4/../../../../include/c++/4.4.4/bits/stl_uninitialized.h:255")? $__l= ast:struct embeddedcode**=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_copy_a@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../= ../../include/c++/4.4.4/bits/stl_uninitialized.h:255")?=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_copy_a@/usr/lib/gcc/ppc64-redhat-linux/4.4= .4/../../../../include/c++/4.4.4/bits/stl_uninitialized.h:255")?=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_copy_a@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../= ../../../include/c++/4.4.4/bits/stl_uninitialized.h:255")? $__result:struct= func_info* $__last:struct func_info* $__first:struct func_info*=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_copy_a@/usr/lib/gcc/ppc64-redhat-lin= ux/4.4.4/../../../../include/c++/4.4.4/bits/stl_uninitialized.h:255")? $__l= ast:struct functiondecl**=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_copy_a@/u= sr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_= uninitialized.h:255")? $__last:struct hrtimer_derived_probe**=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_copy_a@/usr/= lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_uni= nitialized.h:255")? $__last:struct hwbkpt_derived_probe**=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_copy_a@/usr/lib= /gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_uninit= ialized.h:255")? $__result:struct inline_instance_info* $__last:struct inli= ne_instance_info* $__first:struct inline_instance_info*=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_copy_a@/usr/= lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_uni= nitialized.h:255")? $__last:struct itrace_derived_probe**=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_copy_a@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../= ../../include/c++/4.4.4/bits/stl_uninitialized.h:255")? $__last:long int*=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_copy_a@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../= ../../../include/c++/4.4.4/bits/stl_uninitialized.h:255")? $__last:struct m= ark_arg**=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_copy_a@/usr/lib/gc= c/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_uninitial= ized.h:255")? $__last:struct mark_derived_probe**=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_copy_a@/usr/lib/gcc/ppc64-redhat-linux/4.4= .4/../../../../include/c++/4.4.4/bits/stl_uninitialized.h:255")? $__last:st= ruct match_node**=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_copy_a@/usr/lib/gc= c/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_uninitial= ized.h:255")? $__last:struct perf_derived_probe**=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_copy_a@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../inc= lude/c++/4.4.4/bits/stl_uninitialized.h:255")?=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_copy_a@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../= include/c++/4.4.4/bits/stl_uninitialized.h:255")? $__last:struct probe**=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_copy_a@/usr/lib/gcc/ppc64-redhat-linux/= 4.4.4/../../../../include/c++/4.4.4/bits/stl_uninitialized.h:255")? $__last= :struct probe_alias**=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_copy_a@/usr/lib/gcc/ppc64-redhat-linux/= 4.4.4/../../../../include/c++/4.4.4/bits/stl_uninitialized.h:255")?=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_copy_a= @/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/s= tl_uninitialized.h:255")?=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_copy_a@/u= sr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_= uninitialized.h:255")? $__last:struct profile_derived_probe**=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_copy_a@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../= ../include/c++/4.4.4/bits/stl_uninitialized.h:255")? $__last:class remote**= =0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_copy_a@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../= ../../../include/c++/4.4.4/bits/stl_uninitialized.h:255")? $__last:struct s= tapfile**=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_copy_a@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/= ../../../../include/c++/4.4.4/bits/stl_uninitialized.h:255")?=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_copy_a, s= td::_Deque_iterator, defined_op*>@= /usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/st= l_uninitialized.h:255")?=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_copy_a, std::_Deque_iterator, functioncall**>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../incl= ude/c++/4.4.4/bits/stl_uninitialized.h:255")?=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_copy_a, std::_Deque_iterato= r, void*>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../.= ./../../include/c++/4.4.4/bits/stl_uninitialized.h:255")?=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_copy_a,= std::allocator > >, std::basic_string, = std::allocator >*, std::basic_string, st= d::allocator > >@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../in= clude/c++/4.4.4/bits/stl_uninitialized.h:255")? $__result:struct basic_stri= ng, std::allocator >*=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_copy_a, std::allocator >*, std= ::basic_string, std::allocator >*, std::= basic_string, std::allocator > >@/usr/li= b/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_unini= tialized.h:255")?=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_copy_a*, std::pair*, std::pair >@/usr/lib/gcc/= ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_uninitializ= ed.h:255")?=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_copy_a, std::allocator >, unsigned int>*, std::pair, std::allocator >, unsigned int>*, std::pair, std::allocator >, unsigned int> >@/usr/li= b/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_unini= tialized.h:255")? $__result:struct pair, std::allocator >, unsigned int>* $__last:struct pair, std::allocator >, unsign= ed int>* $__first:struct pair, std::allocator >, unsigned int>*=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_copy_a@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../= ../include/c++/4.4.4/bits/stl_uninitialized.h:255")? $__last:struct symbol*= *=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_copy_a@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bit= s/stl_uninitialized.h:255")? $__result:struct component* $__last:struct com= ponent* $__first:struct component*=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_copy_a@/usr/lib= /gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_uninit= ialized.h:255")? $__last:struct timer_derived_probe**=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_copy_a@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../= include/c++/4.4.4/bits/stl_uninitialized.h:255")? $__result:struct tmpvar* = $__last:struct tmpvar* $__first:struct tmpvar*=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_copy_a@/usr/lib/gcc/ppc64-redhat-= linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_uninitialized.h:255")? $= __result:struct tracepoint_arg* $__last:struct tracepoint_arg* $__first:str= uct tracepoint_arg*=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_copy_a@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/= bits/stl_uninitialized.h:255")? $__last:struct tracepoint_derived_probe**=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_copy_a@/usr/lib/gcc/ppc64-redh= at-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_uninitialized.h:255")= ? $__last:struct update_visitor**=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_copy_a@/usr/= lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_uni= nitialized.h:255")? $__last:struct uprobe_derived_probe**=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_copy_a@/usr/= lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_uni= nitialized.h:255")? $__last:struct utrace_derived_probe**=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_copy_a@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../= ../../include/c++/4.4.4/bits/stl_uninitialized.h:255")? $__last:struct vard= ecl**=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_fill_n_a= @/usr/lib/gcc/ppc64-re= dhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_uninitialized.h:316= ")?=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_fill_n_a= @/usr/lib/gcc/ppc64-redha= t-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_uninitialized.h:316")?= $__first:enum exp_type*=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_fill_n_a= @/usr/lib/gcc/ppc64-re= dhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_uninitialized.h:316= ")?=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_fill_n_a= @/usr/lib/gcc= /ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_uninitiali= zed.h:316")? $__n:long unsigned int $__first:struct probe_point**=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_fill_n_a= , std::allocator >*, l= ong unsigned int, std::basic_string, std::allo= cator >, std::basic_string, std::allocat= or > >@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/= 4.4.4/bits/stl_uninitialized.h:316")?=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_move_a >@/usr/l= ib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_unin= itialized.h:262")?=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_move_a >@/usr/lib/gcc/ppc64-redha= t-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_uninitialized.h:262")?= =0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_move_a >@= /usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/st= l_uninitialized.h:262")?=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_move_a >@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/b= its/stl_uninitialized.h:262")? $__alloc:class allocator& $__result:struct compile_server_info* $__last:struct compile_server_info= * $__first:struct compile_server_info*=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_move_a >@/usr/lib/gcc/pp= c64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_uninitialized= .h:262")?=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_move_a >@/usr/lib/= gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_uniniti= alized.h:262")?=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_move_a >@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c+= +/4.4.4/bits/stl_uninitialized.h:262")?=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_move_a >@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.= 4/bits/stl_uninitialized.h:262")?=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_move_a >@/usr/lib/gcc= /ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_uninitiali= zed.h:262")?=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_move_a >@/usr/lib/gcc/ppc64-redhat-l= inux/4.4.4/../../../../include/c++/4.4.4/bits/stl_uninitialized.h:262")?=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_move_a >@/usr/lib/gcc/ppc64= -redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_uninitialized.h:= 262")?=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_move_a >@/usr/lib/gcc/ppc64-redha= t-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_uninitialized.h:262")?= $__alloc:class allocator& $__result:struct func_info* $__last:s= truct func_info* $__first:struct func_info*=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_move_a >@/usr/lib/gcc= /ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_uninitiali= zed.h:262")?=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_move_a >@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c+= +/4.4.4/bits/stl_uninitialized.h:262")?=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_move_a >@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4= .4.4/bits/stl_uninitialized.h:262")?=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_move_a >@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.= 4/bits/stl_uninitialized.h:262")? $__alloc:class allocator& $__result:struct inline_instance_info* $__last:struct inline_instanc= e_info* $__first:struct inline_instance_info*=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_move_a >@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4= .4.4/bits/stl_uninitialized.h:262")?=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_move_a >@/usr/lib/gcc/ppc64-redhat-l= inux/4.4.4/../../../../include/c++/4.4.4/bits/stl_uninitialized.h:262")?=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_move_a >@/usr/lib/gcc/ppc64-redha= t-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_uninitialized.h:262")?= =0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_move_a >@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/b= its/stl_uninitialized.h:262")?=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_move_a >@/usr/lib/gcc/ppc64= -redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_uninitialized.h:= 262")?=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_move_a >@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/b= its/stl_uninitialized.h:262")?=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_move_a >@/usr/lib/gcc/ppc64-redhat-linux/4.4.= 4/../../../../include/c++/4.4.4/bits/stl_uninitialized.h:262")? $__first:st= ruct format_component* $__last:struct format_component* $__result:struct fo= rmat_component* $__alloc:class allocator&=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_move_a >@/usr/lib/gcc/ppc64-redhat-linux/4= .4.4/../../../../include/c++/4.4.4/bits/stl_uninitialized.h:262")?=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_move_a >@/usr/lib/gcc/pp= c64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_uninitialized= .h:262")?=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_move_a >@/usr/lib/gcc/pp= c64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_uninitialized= .h:262")?=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_move_a >@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include= /c++/4.4.4/bits/stl_uninitialized.h:262")?=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_move_a >@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c+= +/4.4.4/bits/stl_uninitialized.h:262")?=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_move_a >@/usr/lib/gcc/ppc64-redhat-linu= x/4.4.4/../../../../include/c++/4.4.4/bits/stl_uninitialized.h:262")?=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_move_a >@/usr/lib/gcc/ppc64-redha= t-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_uninitialized.h:262")?= =0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_move_a >@/usr/lib/gcc/ppc64-re= dhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_uninitialized.h:262= ")?=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_move_a, std::allocator >*, std= ::basic_string, std::allocator >*, std::= allocator, std::allocator > > >@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4= .4/bits/stl_uninitialized.h:262")? $__alloc:class allocator, std::allocator > >& $__result:struct= basic_string, std::allocator >* $__last= :struct basic_string, std::allocator >* = $__first:struct basic_string, std::allocator >*=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_move_a*, std::pair*, std::allocator = > >@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bit= s/stl_uninitialized.h:262")?=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_move_a, std::allocator >, unsigned int>*, std::pair, std::allocator >, unsigned int>*, std::allocator, std::allocator >, unsigned= int> > >@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4= .4/bits/stl_uninitialized.h:262")? $__alloc:class allocator, std::allocator >, unsigned= int> >& $__result:struct pair, std::allocator >, unsigned int>* $__last:struct pair, std::allocator >, unsigned int>* = $__first:struct pair, std::a= llocator >, unsigned int>*=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_move_a >@/usr/lib/gcc/ppc64-redhat-linu= x/4.4.4/../../../../include/c++/4.4.4/bits/stl_uninitialized.h:262")?=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_move_a >@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../incl= ude/c++/4.4.4/bits/stl_uninitialized.h:262")? $__alloc:class allocator& $__result:struct component* $__last:struct component= * $__first:struct component*=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_move_a >@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.= 4/bits/stl_uninitialized.h:262")?=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_move_a >@/usr/lib/gcc/ppc64-redhat-linux/4= .4.4/../../../../include/c++/4.4.4/bits/stl_uninitialized.h:262")? $__alloc= :class allocator& $__result:struct tmpvar* $__last:struct tmpvar* $= __first:struct tmpvar*=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_move_a >@/usr/lib/= gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_uniniti= alized.h:262")? $__alloc:class allocator& $__result:struct = tracepoint_arg* $__last:struct tracepoint_arg* $__first:struct tracepoint_a= rg*=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_move_a >@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../i= nclude/c++/4.4.4/bits/stl_uninitialized.h:262")?=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_move_a >@/usr/l= ib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_unin= itialized.h:262")?=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_move_a >@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4= .4.4/bits/stl_uninitialized.h:262")?=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_move_a >@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4= .4.4/bits/stl_uninitialized.h:262")?=0D process("/home/prasadkr/systemtap/stap").function("__uninitialized_move_a >@/usr/lib/gcc/ppc64-redhat-l= inux/4.4.4/../../../../include/c++/4.4.4/bits/stl_uninitialized.h:262")?=0D process("/home/prasadkr/systemtap/stap").function("__unordered_map@/usr/lib= /gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/tr1_impl/unorde= red_map:64")?=0D process("/home/prasadkr/systemtap/stap").function("__unordered_multimap@/us= r/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/tr1_impl/u= nordered_map:120")?=0D process("/home/prasadkr/systemtap/stap").function("abs@/usr/lib/gcc/ppc64-r= edhat-linux/4.4.4/../../../../include/c++/4.4.4/cstdlib:139")? $__i:long in= t=0D process("/home/prasadkr/systemtap/stap").function("add<__off_t>@/home/prasa= dkr/systemtap/hash.cxx:81")? $this:struct hash* const $x:__off_t const&=0D process("/home/prasadkr/systemtap/stap").function("add<__uid_t>@/home/prasa= dkr/systemtap/hash.cxx:81")?=0D process("/home/prasadkr/systemtap/stap").function("add@/home/prasadkr= /systemtap/hash.cxx:81")? $this:struct hash* const $x:bool const&=0D process("/home/prasadkr/systemtap/stap").function("add@/home/prasadkr/syste= mtap/hash.cxx:55")? $s:string const& $this:struct hash* const=0D process("/home/prasadkr/systemtap/stap").function("add@/home/prasadkr/syste= mtap/hash.cxx:73")? $this:struct hash* const $buffer:unsigned char const* $= size:size_t=0D process("/home/prasadkr/systemtap/stap").function("add@/home/prasadkr/syste= mtap/translate.cxx:648")? $this:struct mapvar const* const $indices:class v= ector > const& $val:struct tmpvar const&=0D process("/home/prasadkr/systemtap/stap").function("add_condition@/home/pras= adkr/systemtap/elaborate.cxx:43")? $a:struct expression* $b:struct expressi= on*=0D process("/home/prasadkr/systemtap/stap").function("add_global_var_display@/= home/prasadkr/systemtap/elaborate.cxx:1382")? $s:struct systemtap_session&= =0D process("/home/prasadkr/systemtap/stap").function("add_path@/home/prasadkr/= systemtap/hash.cxx:89")? $this:struct hash* const $path:string const&=0D process("/home/prasadkr/systemtap/stap").function("add_probe_point@/home/pr= asadkr/systemtap/tapsets.cxx:1070")? $this:struct dwarf_query* const $dw_fu= ncname:string const& $filename:char const* $line:int $scope_die:struct Dwar= f_Die* $addr:Dwarf_Addr=0D process("/home/prasadkr/systemtap/stap").function("add_script_to_cache@/hom= e/prasadkr/systemtap/cache.cxx:64")? $s:struct systemtap_session&=0D process("/home/prasadkr/systemtap/stap").function("add_server_info@/home/pr= asadkr/systemtap/csclient.cxx:2971")? $info:struct compile_server_info cons= t& $target:class vector >&=0D process("/home/prasadkr/systemtap/stap").function("add_server_info@/home/pr= asadkr/systemtap/csclient.cxx:2996")? $source:class vector > const& $target:class vector >&=0D process("/home/prasadkr/systemtap/stap").function("add_stapconf_to_cache@/h= ome/prasadkr/systemtap/cache.cxx:47")? $s:struct systemtap_session&=0D process("/home/prasadkr/systemtap/stap").function("add_symbol@/home/prasadk= r/systemtap/tapsets.cxx:6157")? $this:struct symbol_table* const $name:char= const* $weak:bool $descriptor:bool $addr:Dwarf_Addr $high_addr:Dwarf_Addr*= =0D process("/home/prasadkr/systemtap/stap").function("add_unwindsym_ldd@/home/= prasadkr/systemtap/translate.cxx:5450")? $s:struct systemtap_session&=0D process("/home/prasadkr/systemtap/stap").function("add_unwindsym_vdso@/home= /prasadkr/systemtap/translate.cxx:5543")? $s:struct systemtap_session&=0D process("/home/prasadkr/systemtap/stap").function("addr@/home/prasadkr/syst= emtap/dwarf_wrappers.h:95")?=0D process("/home/prasadkr/systemtap/stap").function("advance@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c+= +/4.4.4/bits/stl_iterator_base_funcs.h:168")? $__n:long unsigned int=0D process("/home/prasadkr/systemtap/stap").function("advance<__gnu_cxx::__nor= mal_iterator > >, long unsigned int>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../..= /include/c++/4.4.4/bits/stl_iterator_base_funcs.h:168")? $__n:long unsigned= int=0D process("/home/prasadkr/systemtap/stap").function("aggvar@/home/prasadkr/sy= stemtap/translate.cxx:515")?=0D process("/home/prasadkr/systemtap/stap").function("alias_derived_probe@/hom= e/prasadkr/systemtap/elaborate.cxx:614")?=0D process("/home/prasadkr/systemtap/stap").function("alias_expansion_builder@= /home/prasadkr/systemtap/elaborate.h:292")? $a:struct probe_alias* $this:st= ruct alias_expansion_builder* const=0D process("/home/prasadkr/systemtap/stap").function("all_session_groups@/home= /prasadkr/systemtap/tapsets.cxx:8782")? $s:struct systemtap_session&=0D process("/home/prasadkr/systemtap/stap").function("alloc_location@/home/pra= sadkr/systemtap/loc2c.c:116")? $ctx:struct location_context*=0D process("/home/prasadkr/systemtap/stap").function("allocate@/usr/lib/gcc/pp= c64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/ext/new_allocator.h:84= ")?=0D process("/home/prasadkr/systemtap/stap").function("almost_basest@/home/pras= adkr/systemtap/elaborate.h:131")? $this:struct derived_probe const* const=0D process("/home/prasadkr/systemtap/stap").function("almost_basest@/home/pras= adkr/systemtap/staptree.h:712")? $this:struct probe const* const=0D process("/home/prasadkr/systemtap/stap").function("append@/usr/lib/gcc/ppc6= 4-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/basic_string.h:868"= )?=0D process("/home/prasadkr/systemtap/stap").function("array_in@/home/prasadkr/= systemtap/staptree.h:154")?=0D process("/home/prasadkr/systemtap/stap").function("array_stride@/home/prasa= dkr/systemtap/loc2c.c:2265")?=0D process("/home/prasadkr/systemtap/stap").function("arrayindex@/home/prasadk= r/systemtap/staptree.cxx:68")? $this:struct arrayindex* const=0D process("/home/prasadkr/systemtap/stap").function("arrayindex@/home/prasadk= r/systemtap/staptree.h:306")?=0D process("/home/prasadkr/systemtap/stap").function("arrayindex_downcaster@/h= ome/prasadkr/systemtap/translate.cxx:2587")? $arr:struct arrayindex*&=0D process("/home/prasadkr/systemtap/stap").function("asprintf@/usr/include/bi= ts/stdio2.h:156")? $__fmt:char const* $__ptr:char**=0D process("/home/prasadkr/systemtap/stap").function("assert_0_indent@/home/pr= asadkr/systemtap/translate.h:36")? $this:class translator_output* const=0D process("/home/prasadkr/systemtap/stap").function("assert_hist_compatible@/= home/prasadkr/systemtap/translate.cxx:334")?=0D process("/home/prasadkr/systemtap/stap").function("assert_no_components@/ho= me/prasadkr/systemtap/staptree.cxx:242")? $this:struct target_symbol* const= $tapset:string const& $pretty_ok:bool=0D process("/home/prasadkr/systemtap/stap").function("assert_regexp_match@/hom= e/prasadkr/systemtap/util.cxx:556")? $name:string const& $value:string cons= t& $re:string const&=0D process("/home/prasadkr/systemtap/stap").function("assess_dbinfo_reqt@/home= /prasadkr/systemtap/tapsets.cxx:1137")? $this:struct dwarf_query* const=0D process("/home/prasadkr/systemtap/stap").function("assign@/usr/= lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_vec= tor.h:391")? $__last:struct Dwarf_Die* $__first:struct Dwarf_Die* $this:cla= ss vector >* const=0D process("/home/prasadkr/systemtap/stap").function("assign@/usr/lib/gcc/ppc6= 4-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/basic_string.h:944"= )? $__n:size_t $__str:struct basic_string, std= ::allocator > const& $this:struct basic_string, std::allocator >* const=0D process("/home/prasadkr/systemtap/stap").function("assign@/usr/lib/gcc/ppc6= 4-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/basic_string.h:972"= )?=0D process("/home/prasadkr/systemtap/stap").function("assign@/usr/lib/gcc/ppc6= 4-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/basic_string.h:988"= )?=0D process("/home/prasadkr/systemtap/stap").function("assign@/usr/lib/gcc/ppc6= 4-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/char_traits.h:246")= ?=0D process("/home/prasadkr/systemtap/stap").function("assignment@/home/prasadk= r/systemtap/staptree.h:184")?=0D process("/home/prasadkr/systemtap/stap").function("atoi@/usr/include/stdlib= .h:284")?=0D process("/home/prasadkr/systemtap/stap").function("back@/usr/lib/gcc/ppc64-= redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_deque.h:1140")?=0D process("/home/prasadkr/systemtap/stap").function("back@/usr/lib/gcc/ppc64-= redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_vector.h:695")?=0D process("/home/prasadkr/systemtap/stap").function("base_byte_size@/home/pra= sadkr/systemtap/loc2c.c:1770")? $typedie:Dwarf_Die* $origin:struct location= * $__PRETTY_FUNCTION__:char[] const $attr_mem:Dwarf_Attribute=0D process("/home/prasadkr/systemtap/stap").function("base_encoding@/home/pras= adkr/systemtap/loc2c.c:1789")? $typedie:Dwarf_Die* $origin:struct location*= $attr_mem:Dwarf_Attribute=0D process("/home/prasadkr/systemtap/stap").function("base_query@/home/prasadk= r/systemtap/tapsets.cxx:519")? $this:struct base_query* const $dw:struct dw= flpp& $params:literal_map_t const&=0D process("/home/prasadkr/systemtap/stap").function("base_query@/home/prasadk= r/systemtap/tapsets.cxx:546")? $this:struct base_query* const $dw:struct dw= flpp& $module_val:string const&=0D process("/home/prasadkr/systemtap/stap").function("basest@/home/prasadkr/sy= stemtap/elaborate.h:130")? $this:struct derived_probe const* const=0D process("/home/prasadkr/systemtap/stap").function("basest@/home/prasadkr/sy= stemtap/staptree.h:711")? $this:struct probe const* const=0D process("/home/prasadkr/systemtap/stap").function("basic_ifstream@/usr/lib/= gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/fstream:440")? $= this:struct basic_ifstream >* const=0D process("/home/prasadkr/systemtap/stap").function("basic_ifstream@/usr/lib/= gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/fstream:454")?=0D process("/home/prasadkr/systemtap/stap").function("basic_ios@/usr/lib/gcc/p= pc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/basic_ios.h:450"= )?=0D process("/home/prasadkr/systemtap/stap").function("basic_iostream@/usr/lib/= gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/istream:798")?=0D process("/home/prasadkr/systemtap/stap").function("basic_istream@/usr/lib/g= cc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/istream:581")?=0D process("/home/prasadkr/systemtap/stap").function("basic_istringstream@/usr= /lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/sstream:310= ")?=0D process("/home/prasadkr/systemtap/stap").function("basic_ofstream@/usr/lib/= gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/fstream:608")? $= this:struct basic_ofstream >* const=0D process("/home/prasadkr/systemtap/stap").function("basic_ofstream@/usr/lib/= gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/fstream:623")?=0D process("/home/prasadkr/systemtap/stap").function("basic_ostream@/usr/lib/g= cc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/ostream:361")?=0D process("/home/prasadkr/systemtap/stap").function("basic_ostringstream@/usr= /lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/sstream:402= ")?=0D process("/home/prasadkr/systemtap/stap").function("basic_streambuf@/usr/lib= /gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/streambuf:439")= ?=0D process("/home/prasadkr/systemtap/stap").function("basic_string@/usr= /lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/basic_= string.tcc:228")? $__end:char* $__beg:char* $this:struct basic_string, std::allocator >* const=0D process("/home/prasadkr/systemtap/stap").function("basic_string@/usr/lib/gc= c/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/basic_string.= h:2144")?=0D process("/home/prasadkr/systemtap/stap").function("basic_stringbuf@/usr/lib= /gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/sstream:105")?= =0D process("/home/prasadkr/systemtap/stap").function("basic_stringbuf@/usr/lib= /gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/sstream:92")?=0D process("/home/prasadkr/systemtap/stap").function("basic_stringstream@/usr/= lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/sstream:510"= )?=0D process("/home/prasadkr/systemtap/stap").function("basic_stringstream@/usr/= lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/sstream:526"= )?=0D process("/home/prasadkr/systemtap/stap").function("be_builder@/home/prasadk= r/systemtap/tapset-been.cxx:79")? $t:enum be_t=0D process("/home/prasadkr/systemtap/stap").function("be_derived_probe@/home/p= rasadkr/systemtap/tapset-been.cxx:41")?=0D process("/home/prasadkr/systemtap/stap").function("be_derived_probe_group@/= home/prasadkr/systemtap/tapset-been.cxx:68")?=0D process("/home/prasadkr/systemtap/stap").function("begin@/usr/lib/gcc/ppc64= -redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/basic_string.h:554")= ? $this:struct basic_string, std::allocator >* const=0D process("/home/prasadkr/systemtap/stap").function("begin@/usr/lib/gcc/ppc64= -redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/basic_string.h:565")= ? $this:struct basic_string, std::allocator > const* const=0D process("/home/prasadkr/systemtap/stap").function("begin@/usr/lib/gcc/ppc64= -redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_deque.h:908")?=0D process("/home/prasadkr/systemtap/stap").function("begin@/usr/lib/gcc/ppc64= -redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_list.h:689")?=0D process("/home/prasadkr/systemtap/stap").function("begin@/usr/lib/gcc/ppc64= -redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_list.h:698")?=0D process("/home/prasadkr/systemtap/stap").function("begin@/usr/lib/gcc/ppc64= -redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_map.h:306")?=0D process("/home/prasadkr/systemtap/stap").function("begin@/usr/lib/gcc/ppc64= -redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_multimap.h:303")= ?=0D process("/home/prasadkr/systemtap/stap").function("begin@/usr/lib/gcc/ppc64= -redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_set.h:291")?=0D process("/home/prasadkr/systemtap/stap").function("begin@/usr/lib/gcc/ppc64= -redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_tree.h:625")?=0D process("/home/prasadkr/systemtap/stap").function("begin@/usr/lib/gcc/ppc64= -redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_tree.h:632")?=0D process("/home/prasadkr/systemtap/stap").function("begin@/usr/lib/gcc/ppc64= -redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_vector.h:425")?= =0D process("/home/prasadkr/systemtap/stap").function("begin@/usr/lib/gcc/ppc64= -redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_vector.h:434")?= =0D process("/home/prasadkr/systemtap/stap").function("begin@/usr/lib/gcc/ppc64= -redhat-linux/4.4.4/../../../../include/c++/4.4.4/tr1_impl/hashtable:236")?= =0D process("/home/prasadkr/systemtap/stap").function("binary_expression@/home/= prasadkr/systemtap/staptree.h:109")?=0D process("/home/prasadkr/systemtap/stap").function("bind@/home/prasadkr/syst= emtap/elaborate.cxx:354")? $this:class match_node* const $k:struct match_ke= y const&=0D process("/home/prasadkr/systemtap/stap").function("bind@/home/prasadkr/syst= emtap/elaborate.cxx:368")? $this:class match_node* const $e:struct derived_= probe_builder*=0D process("/home/prasadkr/systemtap/stap").function("bind@/home/prasadkr/syst= emtap/elaborate.cxx:374")? $this:class match_node* const $k:string const&=0D process("/home/prasadkr/systemtap/stap").function("bind_num@/home/prasadkr/= systemtap/elaborate.cxx:386")? $this:class match_node* const $k:string cons= t&=0D process("/home/prasadkr/systemtap/stap").function("bind_str@/home/prasadkr/= systemtap/elaborate.cxx:380")? $this:class match_node* const $k:string cons= t&=0D process("/home/prasadkr/systemtap/stap").function("bind_unprivileged@/home/= prasadkr/systemtap/elaborate.cxx:392")? $this:class match_node* const $b:bo= ol=0D process("/home/prasadkr/systemtap/stap").function("blacklisted_p@/home/pras= adkr/systemtap/dwflpp.cxx:2798")? $this:struct dwflpp* const $funcname:stri= ng const& $filename:string const& $module:string const& $addr:Dwarf_Addr $h= as_return:bool=0D process("/home/prasadkr/systemtap/stap").function("block@/home/prasadkr/sys= temtap/staptree.cxx:963")? $this:struct block* const $car:struct statement*= $cdr:struct statement*=0D process("/home/prasadkr/systemtap/stap").function("block@/home/prasadkr/sys= temtap/staptree.h:542")?=0D process("/home/prasadkr/systemtap/stap").function("block@/home/prasadkr/sys= temtap/staptree.h:546")? $this:struct block* const=0D process("/home/prasadkr/systemtap/stap").function("break_statement@/home/pr= asadkr/systemtap/staptree.h:630")?=0D process("/home/prasadkr/systemtap/stap").function("buckets@/home/prasadkr/s= ystemtap/translate.cxx:376")? $this:class var const* const=0D process("/home/prasadkr/systemtap/stap").function("buckets@/home/prasadkr/s= ystemtap/translate.cxx:694")? $this:struct mapvar const* const=0D process("/home/prasadkr/systemtap/stap").function("build@/home/prasadkr/sys= temtap/elaborate.cxx:646")? $this:struct alias_expansion_builder* const $se= ss:struct systemtap_session& $use:struct probe* $location:struct probe_poin= t* $finished_results:class vector >&=0D process("/home/prasadkr/systemtap/stap").function("build@/home/prasadkr/sys= temtap/tapset-been.cxx:201")? $this:struct never_builder* const $base:struc= t probe* $location:struct probe_point* $finished_results:class vector >&=0D process("/home/prasadkr/systemtap/stap").function("build@/home/prasadkr/sys= temtap/tapset-been.cxx:81")? $this:struct be_builder* const $base:struct pr= obe* $location:struct probe_point* $parameters:literal_map_t const& $finish= ed_results:class vector >&=0D process("/home/prasadkr/systemtap/stap").function("build@/home/prasadkr/sys= temtap/tapset-itrace.cxx:97")? $this:struct itrace_builder* const $sess:str= uct systemtap_session& $base:struct probe* $location:struct probe_point* $p= arameters:class map, std::al= locator >, literal*, std::less, std::allocator > >, std::allocator, std::allocator >, literal*> >= > const& $finished_results:class vector >&=0D process("/home/prasadkr/systemtap/stap").function("build@/home/prasadkr/sys= temtap/tapset-mark.cxx:596")? $this:struct mark_builder* const $sess:struct= systemtap_session& $base:struct probe* $loc:struct probe_point* $parameter= s:literal_map_t const& $finished_results:class vector >&=0D process("/home/prasadkr/systemtap/stap").function("build@/home/prasadkr/sys= temtap/tapset-perfmon.cxx:186")? $this:struct perf_builder* const $sess:str= uct systemtap_session& $base:struct probe* $location:struct probe_point* $p= arameters:literal_map_t const& $finished_results:class vector >&=0D process("/home/prasadkr/systemtap/stap").function("build@/home/prasadkr/sys= temtap/tapset-procfs.cxx:519")? $this:struct procfs_builder* const $sess:st= ruct systemtap_session& $base:struct probe* $location:struct probe_point* $= parameters:literal_map_t const& $finished_results:class vector >&=0D process("/home/prasadkr/systemtap/stap").function("build@/home/prasadkr/sys= temtap/tapset-timers.cxx:524")? $this:struct timer_builder* const $sess:str= uct systemtap_session& $base:struct probe* $location:struct probe_point* $p= arameters:literal_map_t const& $finished_results:class vector >&=0D process("/home/prasadkr/systemtap/stap").function("build@/home/prasadkr/sys= temtap/tapset-utrace.cxx:626")? $this:struct utrace_builder* const $sess:st= ruct systemtap_session& $base:struct probe* $location:struct probe_point* $= parameters:literal_map_t const& $finished_results:class vector >&=0D process("/home/prasadkr/systemtap/stap").function("build@/home/prasadkr/sys= temtap/tapsets.cxx:5876")? $this:struct dwarf_builder* const $sess:struct s= ystemtap_session& $base:struct probe* $location:struct probe_point* $parame= ters:literal_map_t const& $finished_results:class vector >&=0D process("/home/prasadkr/systemtap/stap").function("build@/home/prasadkr/sys= temtap/tapsets.cxx:6565")? $this:struct uprobe_builder* const $sess:struct = systemtap_session& $base:struct probe* $location:struct probe_point* $param= eters:literal_map_t const& $finished_results:class vector >&=0D process("/home/prasadkr/systemtap/stap").function("build@/home/prasadkr/sys= temtap/tapsets.cxx:7354")? $this:struct kprobe_builder* const $sess:struct = systemtap_session& $base:struct probe* $location:struct probe_point* $param= eters:literal_map_t const& $finished_results:class vector >&=0D process("/home/prasadkr/systemtap/stap").function("build@/home/prasadkr/sys= temtap/tapsets.cxx:7707")? $this:struct hwbkpt_builder* const $sess:struct = systemtap_session& $base:struct probe* $location:struct probe_point* $param= eters:literal_map_t const& $finished_results:class vector >&=0D process("/home/prasadkr/systemtap/stap").function("build@/home/prasadkr/sys= temtap/tapsets.cxx:8695")? $this:struct tracepoint_builder* const $s:struct= systemtap_session& $base:struct probe* $location:struct probe_point* $para= meters:literal_map_t const& $finished_results:class vector >&=0D process("/home/prasadkr/systemtap/stap").function("build_args@/home/prasadk= r/systemtap/tapsets.cxx:8173")? $this:struct tracepoint_derived_probe* cons= t $dw:struct dwflpp& $func_die:struct Dwarf_Die&=0D process("/home/prasadkr/systemtap/stap").function("build_blacklist@/home/pr= asadkr/systemtap/dwflpp.cxx:2856")? $this:struct dwflpp* const=0D process("/home/prasadkr/systemtap/stap").function("build_no_more@/home/pras= adkr/systemtap/elaborate.cxx:596")? $this:class match_node* const $s:struct= systemtap_session&=0D process("/home/prasadkr/systemtap/stap").function("build_no_more@/home/pras= adkr/systemtap/elaborate.h:228")? $this:struct derived_probe_builder* const= =0D process("/home/prasadkr/systemtap/stap").function("build_no_more@/home/pras= adkr/systemtap/tapset-mark.cxx:577")? $this:struct mark_builder* const $s:s= truct systemtap_session&=0D process("/home/prasadkr/systemtap/stap").function("build_no_more@/home/pras= adkr/systemtap/tapsets.cxx:720")? $this:struct dwarf_builder* const $s:stru= ct systemtap_session&=0D process("/home/prasadkr/systemtap/stap").function("build_no_more@/home/pras= adkr/systemtap/tapsets.cxx:8514")? $this:struct tracepoint_builder* const $= s:struct systemtap_session&=0D process("/home/prasadkr/systemtap/stap").function("c_assign@/home/prasadkr/= systemtap/translate.cxx:2025")? $this:struct c_unparser* const $lvalue:clas= s var& $rvalue:string const& $tok:struct token const*=0D process("/home/prasadkr/systemtap/stap").function("c_assign@/home/prasadkr/= systemtap/translate.cxx:2041")? $this:struct c_unparser* const $lvalue:stri= ng const& $rvalue:struct expression* $msg:string const&=0D process("/home/prasadkr/systemtap/stap").function("c_assign@/home/prasadkr/= systemtap/translate.cxx:2063")? $this:struct c_unparser* const $lvalue:stri= ng const& $rvalue:string const& $type:enum exp_type $msg:string const& $tok= :struct token const*=0D process("/home/prasadkr/systemtap/stap").function("c_assignop@/home/prasadk= r/systemtap/translate.cxx:2083")? $this:struct c_unparser_assignment* const= $res:struct tmpvar& $lval:class var const& $rval:struct tmpvar const& $tok= :struct token const*=0D process("/home/prasadkr/systemtap/stap").function("c_assignop@/home/prasadk= r/systemtap/translate.cxx:3614")? $this:struct c_tmpcounter_assignment* con= st $res:struct tmpvar&=0D process("/home/prasadkr/systemtap/stap").function("c_declare@/home/prasadkr= /systemtap/translate.cxx:2198")? $this:struct c_unparser* const $ty:enum ex= p_type $name:string const&=0D process("/home/prasadkr/systemtap/stap").function("c_declare_static@/home/p= rasadkr/systemtap/translate.cxx:2205")? $this:struct c_unparser* const $ty:= enum exp_type $name:string const&=0D process("/home/prasadkr/systemtap/stap").function("c_emit_location@/home/pr= asadkr/systemtap/loc2c.c:2512")? $out:FILE* $loc:struct location* $indent:i= nt $max_stack:unsigned int*=0D process("/home/prasadkr/systemtap/stap").function("c_expression@/home/prasa= dkr/systemtap/translate.cxx:1985")? $this:struct c_unparser* const $e:struc= t expression*=0D process("/home/prasadkr/systemtap/stap").function("c_str@/usr/lib/gcc/ppc64= -redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/basic_string.h:1612"= )?=0D process("/home/prasadkr/systemtap/stap").function("c_strcat@/home/prasadkr/= systemtap/translate.cxx:2230")? $this:struct c_unparser* const $lvalue:stri= ng const& $rvalue:string const&=0D process("/home/prasadkr/systemtap/stap").function("c_strcat@/home/prasadkr/= systemtap/translate.cxx:2239")? $this:struct c_unparser* const $lvalue:stri= ng const& $rvalue:struct expression*=0D process("/home/prasadkr/systemtap/stap").function("c_strcpy@/home/prasadkr/= systemtap/translate.cxx:2212")? $this:struct c_unparser* const $lvalue:stri= ng const& $rvalue:string const&=0D process("/home/prasadkr/systemtap/stap").function("c_strcpy@/home/prasadkr/= systemtap/translate.cxx:2221")? $this:struct c_unparser* const $lvalue:stri= ng const& $rvalue:struct expression*=0D process("/home/prasadkr/systemtap/stap").function("c_tmpcounter@/home/prasa= dkr/systemtap/translate.cxx:186")? $p:struct c_unparser* $this:struct c_tmp= counter* const=0D process("/home/prasadkr/systemtap/stap").function("c_tmpcounter_assignment@= /home/prasadkr/systemtap/translate.cxx:255")? $pp:bool $this:struct c_tmpco= unter_assignment* const=0D process("/home/prasadkr/systemtap/stap").function("c_translate_addressof@/h= ome/prasadkr/systemtap/loc2c.c:2155")? $pool:struct obstack* $indent:int $d= wbias:Dwarf_Addr $die:Dwarf_Die* $typedie:Dwarf_Die* $input:struct location= ** $target:char const*=0D process("/home/prasadkr/systemtap/stap").function("c_translate_argument@/ho= me/prasadkr/systemtap/loc2c.c:1464")? $pool:struct obstack* $fail:void vola= tile* $fail_arg:void* $emit_address:void* $indent:int $value:char const*=0D process("/home/prasadkr/systemtap/stap").function("c_translate_array@/home/= prasadkr/systemtap/loc2c.c:2384")? $pool:struct obstack* $indent:int $dwbia= s:Dwarf_Addr $typedie:Dwarf_Die* $input:struct location** $idx:char const* = $const_idx:Dwarf_Word $__PRETTY_FUNCTION__:char[] const=0D process("/home/prasadkr/systemtap/stap").function("c_translate_array_pointe= r@/home/prasadkr/systemtap/loc2c.c:2398")? $pool:struct obstack* $indent:in= t $typedie:Dwarf_Die* $input:struct location** $idx:char const* $const_idx:= Dwarf_Word=0D process("/home/prasadkr/systemtap/stap").function("c_translate_constant@/ho= me/prasadkr/systemtap/loc2c.c:253")? $pool:struct obstack* $fail:void volat= ile* $fail_arg:void* $emit_address:void* $indent:int $dwbias:Dwarf_Addr $at= tr:Dwarf_Attribute*=0D process("/home/prasadkr/systemtap/stap").function("c_translate_fetch@/home/= prasadkr/systemtap/loc2c.c:1926")? $pool:struct obstack* $indent:int $dwbia= s:Dwarf_Addr $die:Dwarf_Die* $typedie:Dwarf_Die* $input:struct location** $= target:char const* $__PRETTY_FUNCTION__:char[] const $size_attr:Dwarf_Attri= bute $encoding_attr:Dwarf_Attribute=0D process("/home/prasadkr/systemtap/stap").function("c_translate_location@/ho= me/prasadkr/systemtap/loc2c.c:1404")? $pool:struct obstack* $fail:void vola= tile* $fail_arg:void* $emit_address:void* $indent:int $dwbias:Dwarf_Addr $p= c_address:Dwarf_Addr $attr:Dwarf_Attribute* $expr:Dwarf_Op const* $len:size= _t $input:struct location** $fb_attr:Dwarf_Attribute* $cfa_ops:Dwarf_Op con= st* $__PRETTY_FUNCTION__:char[] const=0D process("/home/prasadkr/systemtap/stap").function("c_translate_pointer@/hom= e/prasadkr/systemtap/loc2c.c:2116")? $pool:struct obstack* $indent:int $dwb= ias:Dwarf_Addr $typedie:Dwarf_Die* $input:struct location** $__PRETTY_FUNCT= ION__:char[] const $attr_mem:Dwarf_Attribute=0D process("/home/prasadkr/systemtap/stap").function("c_translate_pointer_stor= e@/home/prasadkr/systemtap/loc2c.c:2206")? $pool:struct obstack* $indent:in= t $dwbias:Dwarf_Addr $typedie:Dwarf_Die* $input:struct location** $rvalue:c= har const* $__PRETTY_FUNCTION__:char[] const $attr_mem:Dwarf_Attribute=0D process("/home/prasadkr/systemtap/stap").function("c_translate_store@/home/= prasadkr/systemtap/loc2c.c:2051")? $pool:struct obstack* $indent:int $dwbia= s:Dwarf_Addr $die:Dwarf_Die* $typedie:Dwarf_Die* $input:struct location** $= rvalue:char const* $__PRETTY_FUNCTION__:char[] const $size_attr:Dwarf_Attri= bute $encoding_attr:Dwarf_Attribute=0D process("/home/prasadkr/systemtap/stap").function("c_typename@/home/prasadk= r/systemtap/translate.cxx:1962")? $this:struct c_unparser* const $e:enum ex= p_type=0D process("/home/prasadkr/systemtap/stap").function("c_unparser@/home/prasadk= r/systemtap/translate.cxx:68")?=0D process("/home/prasadkr/systemtap/stap").function("c_unparser_assignment@/h= ome/prasadkr/systemtap/translate.cxx:225")? $e:struct expression* $o:string= const& $p:struct c_unparser* $this:struct c_unparser_assignment* const=0D process("/home/prasadkr/systemtap/stap").function("c_unparser_assignment@/h= ome/prasadkr/systemtap/translate.cxx:228")? $this:struct c_unparser_assignm= ent* const $p:struct c_unparser* $o:string const& $pp:bool=0D process("/home/prasadkr/systemtap/stap").function("c_varname@/home/prasadkr= /systemtap/translate.cxx:1977")?=0D process("/home/prasadkr/systemtap/stap").function("cache_die_parents@/home/= prasadkr/systemtap/dwflpp.cxx:514")? $this:struct dwflpp* const $parents:cu= _die_parent_cache_t* $die:struct Dwarf_Die*=0D process("/home/prasadkr/systemtap/stap").function("cache_ent_info@/home/pra= sadkr/systemtap/cache.cxx:33")? $this:struct cache_ent_info* const=0D process("/home/prasadkr/systemtap/stap").function("cache_ent_info@/home/pra= sadkr/systemtap/cache.cxx:381")? $this:struct cache_ent_info* const $path:s= tring const& $is_module:bool=0D process("/home/prasadkr/systemtap/stap").function("cache_inline_instances@/= home/prasadkr/systemtap/dwflpp.cxx:442")? $this:struct dwflpp* const $die:s= truct Dwarf_Die*=0D process("/home/prasadkr/systemtap/stap").function("cache_type_prefix@/home/= prasadkr/systemtap/dwflpp.cxx:716")? $type:struct Dwarf_Die*=0D process("/home/prasadkr/systemtap/stap").function("calculate_aggregate@/hom= e/prasadkr/systemtap/translate.cxx:603")?=0D process("/home/prasadkr/systemtap/stap").function("call_prefix@/home/prasad= kr/systemtap/translate.cxx:582")? $this:struct mapvar const* const $fname:s= tring const& $indices:class vector > const& = $pre_agg:bool=0D process("/home/prasadkr/systemtap/stap").function("capacity@/usr/lib/gcc/pp= c64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_vector.h:565"= )?=0D process("/home/prasadkr/systemtap/stap").function("cast_op@/home/prasadkr/s= ystemtap/staptree.h:281")?=0D process("/home/prasadkr/systemtap/stap").function("chain@/home/prasadkr/sys= temtap/staptree.cxx:272")? $this:struct target_symbol* const $er:struct sem= antic_error const&=0D process("/home/prasadkr/systemtap/stap").function("checkForRecursiveExpansi= on@/home/prasadkr/systemtap/elaborate.cxx:709")? $this:struct alias_expansi= on_builder* const $use:struct probe*=0D process("/home/prasadkr/systemtap/stap").function("check_arg_type@/home/pra= sadkr/systemtap/elaborate.cxx:4765")? $this:struct typeresolution_info* con= st $wanted:enum exp_type $arg:struct expression*=0D process("/home/prasadkr/systemtap/stap").function("check_local@/home/prasad= kr/systemtap/elaborate.cxx:4783")? $this:struct typeresolution_info* const = $v:struct vardecl*=0D process("/home/prasadkr/systemtap/stap").function("check_options@/home/pras= adkr/systemtap/session.cxx:947")? $this:struct systemtap_session* const $ar= gc:int $argv:char* const*=0D process("/home/prasadkr/systemtap/stap").function("classify_const_indexable= @/home/prasadkr/systemtap/staptree.cxx:1573")? $ix:struct indexable const* = $array_out:struct symbol const*& $hist_out:struct hist_op const*&=0D process("/home/prasadkr/systemtap/stap").function("classify_indexable@/home= /prasadkr/systemtap/staptree.cxx:1560")? $ix:struct indexable* $array_out:s= truct symbol*& $hist_out:struct hist_op*&=0D process("/home/prasadkr/systemtap/stap").function("clean_cache@/home/prasad= kr/systemtap/cache.cxx:226")? $s:struct systemtap_session&=0D process("/home/prasadkr/systemtap/stap").function("cleanup@/home/prasadkr/s= ystemtap/main.cxx:880")? $s:struct systemtap_session& $rc:int=0D process("/home/prasadkr/systemtap/stap").function("clear@/home/prasadkr/sys= temtap/staptree.h:392")?=0D process("/home/prasadkr/systemtap/stap").function("clear@/usr/lib/gcc/ppc64= -redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/basic_string.h:701")= ?=0D process("/home/prasadkr/systemtap/stap").function("clear@/usr/lib/gcc/ppc64= -redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_map.h:625")?=0D process("/home/prasadkr/systemtap/stap").function("clear@/usr/lib/gcc/ppc64= -redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_multimap.h:561")= ?=0D process("/home/prasadkr/systemtap/stap").function("clear@/usr/lib/gcc/ppc64= -redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_set.h:515")?=0D process("/home/prasadkr/systemtap/stap").function("clear@/usr/lib/gcc/ppc64= -redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_tree.h:724")?=0D process("/home/prasadkr/systemtap/stap").function("clear@/usr/lib/gcc/ppc64= -redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_vector.h:950")?= =0D process("/home/prasadkr/systemtap/stap").function("clear@/usr/lib/gcc/ppc64= -redhat-linux/4.4.4/../../../../include/c++/4.4.4/tr1_impl/hashtable:1205")= ?=0D process("/home/prasadkr/systemtap/stap").function("clone@/home/prasadkr/sys= temtap/session.cxx:226")? $this:struct systemtap_session* const $arch:strin= g const& $release:string const&=0D process("/home/prasadkr/systemtap/stap").function("close@/usr/lib/gcc/ppc64= -redhat-linux/4.4.4/../../../../include/c++/4.4.4/fstream:563")? $this:stru= ct basic_ifstream >* const=0D process("/home/prasadkr/systemtap/stap").function("close@/usr/lib/gcc/ppc64= -redhat-linux/4.4.4/../../../../include/c++/4.4.4/fstream:736")? $this:stru= ct basic_ofstream >* const=0D process("/home/prasadkr/systemtap/stap").function("cmdstr_quoted@/home/pras= adkr/systemtap/util.cxx:365")? $cmd:string const&=0D process("/home/prasadkr/systemtap/stap").function("collect_derivation_chain= @/home/prasadkr/systemtap/elaborate.cxx:111")? $this:struct derived_probe* = const $probes_list:class vector >&=0D process("/home/prasadkr/systemtap/stap").function("collect_derivation_chain= @/home/prasadkr/systemtap/staptree.cxx:1134")? $this:struct probe* const $p= robes_list:class vector >&=0D process("/home/prasadkr/systemtap/stap").function("collect_derivation_pp_ch= ain@/home/prasadkr/systemtap/elaborate.cxx:119")? $this:struct derived_prob= e* const $pp_list:class vector >= &=0D process("/home/prasadkr/systemtap/stap").function("collect_derivation_pp_ch= ain@/home/prasadkr/systemtap/staptree.h:708")? $this:struct probe* const $p= p_list:class vector >&=0D process("/home/prasadkr/systemtap/stap").function("collect_map_index_types@= /home/prasadkr/systemtap/translate.cxx:1837")? $this:struct c_unparser* con= st $vars:class vector > const& $types:cl= ass set >, exp_typ= e>, std::less >, e= xp_type> >, std::allocator >, exp_type> > >&=0D process("/home/prasadkr/systemtap/stap").function("collect_srcfiles_matchin= g@/home/prasadkr/systemtap/dwflpp.cxx:1356")? $this:struct dwflpp* const $p= attern:string const& $filtered_srcfiles:class set, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > > >&=0D process("/home/prasadkr/systemtap/stap").function("common_probe_entryfn_epi= logue@/home/prasadkr/systemtap/tapsets.cxx:188")? $o:class translator_outpu= t* $overload_processing:bool=0D process("/home/prasadkr/systemtap/stap").function("common_probe_entryfn_pro= logue@/home/prasadkr/systemtap/tapsets.cxx:81")? $o:class translator_output= * $statestr:string $probe:string $overload_processing:bool=0D process("/home/prasadkr/systemtap/stap").function("common_probe_init@/home/= prasadkr/systemtap/tapsets.cxx:73")? $p:struct derived_probe*=0D process("/home/prasadkr/systemtap/stap").function("comp@/home/prasadkr/syst= emtap/tapset-been.cxx:46")?=0D process("/home/prasadkr/systemtap/stap").function("compare@/usr/lib/gcc/ppc= 64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/basic_string.h:201= 9")?=0D process("/home/prasadkr/systemtap/stap").function("compare@/usr/lib/gcc/ppc= 64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/char_traits.h:258"= )?=0D process("/home/prasadkr/systemtap/stap").function("comparison@/home/prasadk= r/systemtap/staptree.h:162")?=0D process("/home/prasadkr/systemtap/stap").function("compatible_arity@/home/p= rasadkr/systemtap/staptree.cxx:184")? $this:struct vardecl* const $a:int=0D process("/home/prasadkr/systemtap/stap").function("compile_pass@/home/prasa= dkr/systemtap/buildrun.cxx:116")? $s:struct systemtap_session&=0D process("/home/prasadkr/systemtap/stap").function("compile_server_info@/hom= e/prasadkr/systemtap/csclient.cxx:69")?=0D process("/home/prasadkr/systemtap/stap").function("compile_server_info@/hom= e/prasadkr/systemtap/csclient.cxx:70")? $this:struct compile_server_info* c= onst=0D process("/home/prasadkr/systemtap/stap").function("compile_using_server@/ho= me/prasadkr/systemtap/csclient.cxx:1074")? $this:class compile_server_clien= t* const $servers:class vector > const&=0D process("/home/prasadkr/systemtap/stap").function("component@/home/prasadkr= /systemtap/staptree.cxx:136")? $this:struct component* const=0D process("/home/prasadkr/systemtap/stap").function("component@/home/prasadkr= /systemtap/staptree.cxx:142")? $this:struct component* const $f:string cons= t& $a:struct literal*=0D process("/home/prasadkr/systemtap/stap").function("component@/home/prasadkr= /systemtap/staptree.h:246")?=0D process("/home/prasadkr/systemtap/stap").function("component@/home/prasadkr= /systemtap/staptree.h:253")?=0D process("/home/prasadkr/systemtap/stap").function("component@/home/prasadkr= /systemtap/staptree.h:258")?=0D process("/home/prasadkr/systemtap/stap").function("component@/home/prasadkr= /systemtap/staptree.h:260")? $e:struct expression* $t:struct token const* $= this:struct component* const=0D process("/home/prasadkr/systemtap/stap").function("component@/home/prasadkr= /systemtap/staptree.h:673")?=0D process("/home/prasadkr/systemtap/stap").function("components_to_string@/ho= me/prasadkr/systemtap/staptree.cxx:553")? $components:class vector > co= nst&=0D process("/home/prasadkr/systemtap/stap").function("concatenation@/home/pras= adkr/systemtap/staptree.h:168")?=0D process("/home/prasadkr/systemtap/stap").function("const_folder@/home/prasa= dkr/systemtap/elaborate.cxx:3022")?=0D process("/home/prasadkr/systemtap/stap").function("construct@/usr/lib/gcc/p= pc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/ext/new_allocator.h:1= 04")?=0D process("/home/prasadkr/systemtap/stap").function("contains_glob_chars@/hom= e/prasadkr/systemtap/util.cxx:626")? $str:string const&=0D process("/home/prasadkr/systemtap/stap").function("continue_statement@/home= /prasadkr/systemtap/staptree.h:637")?=0D process("/home/prasadkr/systemtap/stap").function("convert_location@/home/p= rasadkr/systemtap/tapsets.cxx:5777")? $this:struct sdt_query* const=0D process("/home/prasadkr/systemtap/stap").function("convert_probe@/home/pras= adkr/systemtap/tapsets.cxx:5695")? $this:struct sdt_query* const $base:stru= ct probe*=0D process("/home/prasadkr/systemtap/stap").function("copy4@/home/prasadkr/sys= temtap/mdfour.c:100")? $x:uint32_t $out:unsigned char*=0D process("/home/prasadkr/systemtap/stap").function("copy64@/home/prasadkr/sy= stemtap/mdfour.c:90")? $M:uint32_t* $in:unsigned char const*=0D process("/home/prasadkr/systemtap/stap").function("copy@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/= c++/4.4.4/bits/stl_algobase.h:458")? $__last:struct Dwarf_Attribute* $__res= ult:struct Dwarf_Attribute*=0D process("/home/prasadkr/systemtap/stap").function("copy@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bi= ts/stl_algobase.h:458")?=0D process("/home/prasadkr/systemtap/stap").function("copy<__gnu_cxx::__normal= _iterator > >, __gnu_cxx::__normal_iterator= > > >@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/= bits/stl_algobase.h:458")? $__result:class __normal_iterator > > $__last:class __normal_iterator > > $__first:class __= normal_iterator > >=0D process("/home/prasadkr/systemtap/stap").function("copy<__gnu_cxx::__normal= _iterator > >, Dwarf_Die*>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../includ= e/c++/4.4.4/bits/stl_algobase.h:458")?=0D process("/home/prasadkr/systemtap/stap").function("copy<__gnu_cxx::__normal= _iterator > >, __gnu_cxx::__normal_iterator > > >@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../= ../include/c++/4.4.4/bits/stl_algobase.h:458")? $__result:class __normal_it= erator > > $__= last:class __normal_iterator > > $__first:class __normal_iterator > >=0D process("/home/prasadkr/systemtap/stap").function("copy<__gnu_cxx::__normal= _iterator >= >, exp_type*>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c+= +/4.4.4/bits/stl_algobase.h:458")?=0D process("/home/prasadkr/systemtap/stap").function("copy<__gnu_cxx::__normal= _iterator >= >, long int*>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c+= +/4.4.4/bits/stl_algobase.h:458")?=0D process("/home/prasadkr/systemtap/stap").function("copy<__gnu_cxx::__normal= _iterator > >, __gnu= _cxx::__normal_iterator > = > >@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bit= s/stl_algobase.h:458")?=0D process("/home/prasadkr/systemtap/stap").function("copy<__gnu_cxx::__normal= _iterator > >, __gnu_cxx::__normal_ite= rator > > >@/usr/lib/gcc/ppc64-redhat-linux/= 4.4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h:458")?=0D process("/home/prasadkr/systemtap/stap").function("copy<__gnu_cxx::__normal= _iterator > >, derived_probe**>@/usr/lib/gcc/ppc64-redhat-linux/4.4.= 4/../../../../include/c++/4.4.4/bits/stl_algobase.h:458")?=0D process("/home/prasadkr/systemtap/stap").function("copy<__gnu_cxx::__normal= _iterator > >, embeddedcode**>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/..= /../../../include/c++/4.4.4/bits/stl_algobase.h:458")?=0D process("/home/prasadkr/systemtap/stap").function("copy<__gnu_cxx::__normal= _iterator > >, __gnu_cxx::__normal_iterator > > >@/usr/lib/gcc/ppc64-redhat-linux/4.4= .4/../../../../include/c++/4.4.4/bits/stl_algobase.h:458")? $__result:class= __normal_iterator > > $__last:class __normal_iterator > > $__first:class __normal_it= erator > >=0D process("/home/prasadkr/systemtap/stap").function("copy<__gnu_cxx::__normal= _iterator > >, expression**>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../.= ./include/c++/4.4.4/bits/stl_algobase.h:458")?=0D process("/home/prasadkr/systemtap/stap").function("copy<__gnu_cxx::__normal= _iterator > >, functiondecl**>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/..= /../../../include/c++/4.4.4/bits/stl_algobase.h:458")?=0D process("/home/prasadkr/systemtap/stap").function("copy<__gnu_cxx::__normal= _iterator > >, itrace_derived_probe**>@/usr/lib= /gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_algoba= se.h:458")?=0D process("/home/prasadkr/systemtap/stap").function("copy<__gnu_cxx::__normal= _iterator > >, __gnu_cxx::__normal_iterator > > >@/usr/lib/gcc/ppc64-redhat-lin= ux/4.4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h:458")? $__result= :class __normal_iterator > > $__last:class __normal_iterator > > $__first:class= __normal_iterator > >=0D process("/home/prasadkr/systemtap/stap").function("copy<__gnu_cxx::__normal= _iterator > >, probe_point**>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../= ../../include/c++/4.4.4/bits/stl_algobase.h:458")?=0D process("/home/prasadkr/systemtap/stap").function("copy<__gnu_cxx::__normal= _iterator > >, __gnu_cxx::__normal_iterat= or > > >@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/= ../../../../include/c++/4.4.4/bits/stl_algobase.h:458")? $__result:class __= normal_iterator > > $__last:class __normal_iter= ator > > $__first:class __normal_iterator= > >=0D process("/home/prasadkr/systemtap/stap").function("copy<__gnu_cxx::__normal= _iterator > >, probe_point::component**>@= /usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/st= l_algobase.h:458")?=0D process("/home/prasadkr/systemtap/stap").function("copy<__gnu_cxx::__normal= _iterator > >,= remote**>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.= 4.4/bits/stl_algobase.h:458")?=0D process("/home/prasadkr/systemtap/stap").function("copy<__gnu_cxx::__normal= _iterator > >, stapfile**>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../includ= e/c++/4.4.4/bits/stl_algobase.h:458")?=0D process("/home/prasadkr/systemtap/stap").function("copy<__gnu_cxx::__normal= _iterator > >, __gnu_cxx::__normal_iterator > > >@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../= ../../../include/c++/4.4.4/bits/stl_algobase.h:458")? $__result:class __nor= mal_iterator > > $__last:class __normal_iterator > > $__first:class __normal_iterator > >=0D process("/home/prasadkr/systemtap/stap").function("copy<__gnu_cxx::__normal= _iterator > >, statement**>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../in= clude/c++/4.4.4/bits/stl_algobase.h:458")?=0D process("/home/prasadkr/systemtap/stap").function("copy<__gnu_cxx::__normal= _iterator >= >, __gnu_cxx::__normal_iterator > > >@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../= ../include/c++/4.4.4/bits/stl_algobase.h:458")?=0D process("/home/prasadkr/systemtap/stap").function("copy<__gnu_cxx::__normal= _iterator >= >, statement**>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/= c++/4.4.4/bits/stl_algobase.h:458")?=0D process("/home/prasadkr/systemtap/stap").function("copy<__gnu_cxx::__normal= _iterator > >,= symbol**>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.= 4.4/bits/stl_algobase.h:458")?=0D process("/home/prasadkr/systemtap/stap").function("copy<__gnu_cxx::__normal= _iterator > >, update_visitor**>@/usr/lib/gcc/ppc64-redhat-linux/= 4.4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h:458")?=0D process("/home/prasadkr/systemtap/stap").function("copy<__gnu_cxx::__normal= _iterator > >, utrace_derived_probe**>@/usr/lib= /gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_algoba= se.h:458")?=0D process("/home/prasadkr/systemtap/stap").function("copy<__gnu_cxx::__normal= _iterator >= >, vardecl**>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c+= +/4.4.4/bits/stl_algobase.h:458")?=0D process("/home/prasadkr/systemtap/stap").function("copy<__gnu_cxx::__normal= _iterator > >, __= gnu_cxx::__normal_iterator > > >@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c= ++/4.4.4/bits/stl_algobase.h:458")? $__result:class __normal_iterator > > $__last:class __no= rmal_iterator > >= $__first:class __normal_iterator > >=0D process("/home/prasadkr/systemtap/stap").function("copy@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../incl= ude/c++/4.4.4/bits/stl_algobase.h:458")? $__last:struct be_derived_probe** = $__result:struct be_derived_probe**=0D process("/home/prasadkr/systemtap/stap").function("copy@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.= 4.4/bits/stl_algobase.h:458")? $__last:struct token const** $__result:struc= t token const**=0D process("/home/prasadkr/systemtap/stap").function("copy@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.= 4.4/bits/stl_algobase.h:458")? $__result:struct defined_op*** $__last:struc= t defined_op*** $__first:struct defined_op***=0D process("/home/prasadkr/systemtap/stap").function("copy@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c+= +/4.4.4/bits/stl_algobase.h:458")? $__last:struct derived_probe** $__result= :struct derived_probe**=0D process("/home/prasadkr/systemtap/stap").function("copy@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../= ../../include/c++/4.4.4/bits/stl_algobase.h:458")? $__last:struct derived_p= robe_builder** $__result:struct derived_probe_builder**=0D process("/home/prasadkr/systemtap/stap").function("copy@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../.= ./include/c++/4.4.4/bits/stl_algobase.h:458")? $__last:struct derived_probe= _group** $__result:struct derived_probe_group**=0D process("/home/prasadkr/systemtap/stap").function("copy@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/= 4.4.4/bits/stl_algobase.h:458")? $__last:struct embeddedcode** $__result:st= ruct embeddedcode**=0D process("/home/prasadkr/systemtap/stap").function("copy@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits= /stl_algobase.h:458")?=0D process("/home/prasadkr/systemtap/stap").function("copy@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.= 4/bits/stl_algobase.h:458")?=0D process("/home/prasadkr/systemtap/stap").function("copy@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/= c++/4.4.4/bits/stl_algobase.h:458")? $__result:struct functioncall**** $__l= ast:struct functioncall**** $__first:struct functioncall****=0D process("/home/prasadkr/systemtap/stap").function("copy@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/= 4.4.4/bits/stl_algobase.h:458")? $__last:struct functiondecl** $__result:st= ruct functiondecl**=0D process("/home/prasadkr/systemtap/stap").function("copy@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../= ../../include/c++/4.4.4/bits/stl_algobase.h:458")? $__last:struct hrtimer_d= erived_probe** $__result:struct hrtimer_derived_probe**=0D process("/home/prasadkr/systemtap/stap").function("copy@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../..= /../include/c++/4.4.4/bits/stl_algobase.h:458")? $__last:struct hwbkpt_deri= ved_probe** $__result:struct hwbkpt_derived_probe**=0D process("/home/prasadkr/systemtap/stap").function("copy@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../..= /../include/c++/4.4.4/bits/stl_algobase.h:458")? $__last:struct itrace_deri= ved_probe**=0D process("/home/prasadkr/systemtap/stap").function("copy@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits= /stl_algobase.h:458")? $__last:long int* $__result:long int*=0D process("/home/prasadkr/systemtap/stap").function("copy@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bi= ts/stl_algobase.h:458")? $__last:struct mark_arg** $__result:struct mark_ar= g**=0D process("/home/prasadkr/systemtap/stap").function("copy@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../= include/c++/4.4.4/bits/stl_algobase.h:458")? $__last:struct mark_derived_pr= obe** $__result:struct mark_derived_probe**=0D process("/home/prasadkr/systemtap/stap").function("copy@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.= 4/bits/stl_algobase.h:458")? $__last:struct match_node** $__result:struct m= atch_node**=0D process("/home/prasadkr/systemtap/stap").function("copy@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../= include/c++/4.4.4/bits/stl_algobase.h:458")? $__last:struct perf_derived_pr= obe** $__result:struct perf_derived_probe**=0D process("/home/prasadkr/systemtap/stap").function("copy@/usr/lib/gcc/ppc64-redhat-li= nux/4.4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h:458")? $__resul= t:struct format_component* $__last:struct format_component* $__first:struct= format_component*=0D process("/home/prasadkr/systemtap/stap").function("copy@/= usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl= _algobase.h:458")? $__last:struct probe** $__result:struct probe**=0D process("/home/prasadkr/systemtap/stap").function("copy@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.= 4.4/bits/stl_algobase.h:458")? $__last:struct probe_alias** $__result:struc= t probe_alias**=0D process("/home/prasadkr/systemtap/stap").function("copy@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.= 4.4/bits/stl_algobase.h:458")?=0D process("/home/prasadkr/systemtap/stap").function("copy@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../.= ./../../include/c++/4.4.4/bits/stl_algobase.h:458")?=0D process("/home/prasadkr/systemtap/stap").function("copy@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../= ../../include/c++/4.4.4/bits/stl_algobase.h:458")? $__last:struct profile_d= erived_probe** $__result:struct profile_derived_probe**=0D process("/home/prasadkr/systemtap/stap").function("copy= @/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/s= tl_algobase.h:458")? $__last:class remote**=0D process("/home/prasadkr/systemtap/stap").function("copy@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bi= ts/stl_algobase.h:458")? $__last:struct stapfile** $__result:struct stapfil= e**=0D process("/home/prasadkr/systemtap/stap").function("copy@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/= bits/stl_algobase.h:458")?=0D process("/home/prasadkr/systemtap/stap").function("copy, std::_Deque_iterato= r >@/usr/lib/gcc/ppc64-redhat-linu= x/4.4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h:458")?=0D process("/home/prasadkr/systemtap/stap").function("copy, std::_Dequ= e_iterator >@/usr/lib/gcc= /ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h= :458")?=0D process("/home/prasadkr/systemtap/stap").function("copy, std::_Deque_iterator >@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.= 4/bits/stl_algobase.h:458")?=0D process("/home/prasadkr/systemtap/stap").function("copy= @/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/s= tl_algobase.h:458")? $__last:struct symbol** $__result:struct symbol**=0D process("/home/prasadkr/systemtap/stap").function("copy@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/..= /../../../include/c++/4.4.4/bits/stl_algobase.h:458")? $__result:struct com= ponent* $__last:struct component* $__first:struct component*=0D process("/home/prasadkr/systemtap/stap").function("copy@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../.= ./include/c++/4.4.4/bits/stl_algobase.h:458")? $__last:struct timer_derived= _probe** $__result:struct timer_derived_probe**=0D process("/home/prasadkr/systemtap/stap").function("copy@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/= ../../../../include/c++/4.4.4/bits/stl_algobase.h:458")? $__last:struct tra= cepoint_derived_probe** $__result:struct tracepoint_derived_probe**=0D process("/home/prasadkr/systemtap/stap").function("copy@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/= c++/4.4.4/bits/stl_algobase.h:458")? $__last:struct update_visitor** $__res= ult:struct update_visitor**=0D process("/home/prasadkr/systemtap/stap").function("copy@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../..= /../include/c++/4.4.4/bits/stl_algobase.h:458")? $__last:struct uprobe_deri= ved_probe** $__result:struct uprobe_derived_probe**=0D process("/home/prasadkr/systemtap/stap").function("copy@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../..= /../include/c++/4.4.4/bits/stl_algobase.h:458")? $__last:struct utrace_deri= ved_probe**=0D process("/home/prasadkr/systemtap/stap").function("copy@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits= /stl_algobase.h:458")? $__last:struct vardecl** $__result:struct vardecl**= =0D process("/home/prasadkr/systemtap/stap").function("copy@/= usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl= _algobase.h:458")? $__result:void*** $__last:void*** $__first:void***=0D process("/home/prasadkr/systemtap/stap").function("copy@/usr/lib/gcc/ppc64-= redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/char_traits.h:274")? = $__n:size_t $__s2:char_type const* $__s1:char_type*=0D process("/home/prasadkr/systemtap/stap").function("copy_backward@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../..= /include/c++/4.4.4/bits/stl_algobase.h:628")?=0D process("/home/prasadkr/systemtap/stap").function("copy_backward@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++= /4.4.4/bits/stl_algobase.h:628")?=0D process("/home/prasadkr/systemtap/stap").function("copy_backward<__gnu_cxx:= :__normal_iterator > >, __gnu_cxx::__normal_iterator > = > >@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bit= s/stl_algobase.h:628")?=0D process("/home/prasadkr/systemtap/stap").function("copy_backward@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../.= ./../include/c++/4.4.4/bits/stl_algobase.h:628")?=0D process("/home/prasadkr/systemtap/stap").function("copy_backward@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../= ../../../include/c++/4.4.4/bits/stl_algobase.h:628")?=0D process("/home/prasadkr/systemtap/stap").function("copy_backward@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../inclu= de/c++/4.4.4/bits/stl_algobase.h:628")?=0D process("/home/prasadkr/systemtap/stap").function("copy_backward@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../inclu= de/c++/4.4.4/bits/stl_algobase.h:628")? $__result:struct defined_op*** $__l= ast:struct defined_op*** $__first:struct defined_op***=0D process("/home/prasadkr/systemtap/stap").function("copy_backward@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../i= nclude/c++/4.4.4/bits/stl_algobase.h:628")?=0D process("/home/prasadkr/systemtap/stap").function("copy_backward@/usr/lib/gcc/ppc64-redhat-linux/4.4= .4/../../../../include/c++/4.4.4/bits/stl_algobase.h:628")?=0D process("/home/prasadkr/systemtap/stap").function("copy_backward@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/.= ./../../../include/c++/4.4.4/bits/stl_algobase.h:628")?=0D process("/home/prasadkr/systemtap/stap").function("copy_backward@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../inc= lude/c++/4.4.4/bits/stl_algobase.h:628")?=0D process("/home/prasadkr/systemtap/stap").function("copy_backward@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4= .4.4/bits/stl_algobase.h:628")?=0D process("/home/prasadkr/systemtap/stap").function("copy_backward@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include= /c++/4.4.4/bits/stl_algobase.h:628")?=0D process("/home/prasadkr/systemtap/stap").function("copy_backward@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++= /4.4.4/bits/stl_algobase.h:628")?=0D process("/home/prasadkr/systemtap/stap").function("copy_backward@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../..= /include/c++/4.4.4/bits/stl_algobase.h:628")? $__result:struct functioncall= **** $__last:struct functioncall**** $__first:struct functioncall****=0D process("/home/prasadkr/systemtap/stap").function("copy_backward@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../inc= lude/c++/4.4.4/bits/stl_algobase.h:628")?=0D process("/home/prasadkr/systemtap/stap").function("copy_backward@/usr/lib/gcc/ppc64-redhat-linux/4.4= .4/../../../../include/c++/4.4.4/bits/stl_algobase.h:628")?=0D process("/home/prasadkr/systemtap/stap").function("copy_backward@/usr/lib/gcc/ppc64-redhat-linux/4.4.4= /../../../../include/c++/4.4.4/bits/stl_algobase.h:628")?=0D process("/home/prasadkr/systemtap/stap").function("copy_backward@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/.= ./../../../include/c++/4.4.4/bits/stl_algobase.h:628")?=0D process("/home/prasadkr/systemtap/stap").function("copy_backward@/usr/lib/gcc/ppc64-redhat-linux/4.4.4= /../../../../include/c++/4.4.4/bits/stl_algobase.h:628")?=0D process("/home/prasadkr/systemtap/stap").function("copy_backward@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4= .4.4/bits/stl_algobase.h:628")?=0D process("/home/prasadkr/systemtap/stap").function("copy_backward@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++= /4.4.4/bits/stl_algobase.h:628")?=0D process("/home/prasadkr/systemtap/stap").function("copy_backward@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../= ../../../include/c++/4.4.4/bits/stl_algobase.h:628")?=0D process("/home/prasadkr/systemtap/stap").function("copy_backward@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include= /c++/4.4.4/bits/stl_algobase.h:628")?=0D process("/home/prasadkr/systemtap/stap").function("copy_backward@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../= ../../../include/c++/4.4.4/bits/stl_algobase.h:628")?=0D process("/home/prasadkr/systemtap/stap").function("copy_backward@/usr/lib/gcc/ppc64-= redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h:628")?= =0D process("/home/prasadkr/systemtap/stap").function("copy_backward@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4= /bits/stl_algobase.h:628")?=0D process("/home/prasadkr/systemtap/stap").function("copy_backward@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../inclu= de/c++/4.4.4/bits/stl_algobase.h:628")?=0D process("/home/prasadkr/systemtap/stap").function("copy_backward@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../inclu= de/c++/4.4.4/bits/stl_algobase.h:628")?=0D process("/home/prasadkr/systemtap/stap").function("copy_backward@/usr/lib/gcc/ppc64-redhat-linux/4= .4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h:628")?=0D process("/home/prasadkr/systemtap/stap").function("copy_backward@/usr/lib/gcc/ppc64-redhat-linux/4.4= .4/../../../../include/c++/4.4.4/bits/stl_algobase.h:628")?=0D process("/home/prasadkr/systemtap/stap").function("copy_backward@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4= .4/bits/stl_algobase.h:628")?=0D process("/home/prasadkr/systemtap/stap").function("copy_backward@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++= /4.4.4/bits/stl_algobase.h:628")?=0D process("/home/prasadkr/systemtap/stap").function("copy_backward@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c= ++/4.4.4/bits/stl_algobase.h:628")?=0D process("/home/prasadkr/systemtap/stap").function("copy_backward, std::allocator >*, std::basic_s= tring, std::allocator >*>@/usr/lib/gcc/p= pc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h:6= 28")? $__result:struct basic_string, std::allo= cator >* $__last:struct basic_string, st= d::allocator >* $__first:struct basic_string, std::allocator >*=0D process("/home/prasadkr/systemtap/stap").function("copy_backward*, std::pair*>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/= bits/stl_algobase.h:628")?=0D process("/home/prasadkr/systemtap/stap").function("copy_backward, std::allocator >, uns= igned int>*, std::pair, std:= :allocator >, unsigned int>*>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/.= ./../../../include/c++/4.4.4/bits/stl_algobase.h:628")? $__last:struct pair= , std::allocator >, un= signed int>* $__first:struct pair, std::allocator >, unsigned int>*=0D process("/home/prasadkr/systemtap/stap").function("copy_backward@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4= .4/bits/stl_algobase.h:628")?=0D process("/home/prasadkr/systemtap/stap").function("copy_backward@/usr/lib/gcc/ppc64-redhat-linux= /4.4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h:628")?=0D process("/home/prasadkr/systemtap/stap").function("copy_backward@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/.= ./../../../include/c++/4.4.4/bits/stl_algobase.h:628")?=0D process("/home/prasadkr/systemtap/stap").function("copy_backward@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4= /bits/stl_algobase.h:628")?=0D process("/home/prasadkr/systemtap/stap").function("copy_backward@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../i= nclude/c++/4.4.4/bits/stl_algobase.h:628")?=0D process("/home/prasadkr/systemtap/stap").function("copy_backward@/usr/lib/gcc/ppc64-redhat-lin= ux/4.4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h:628")?=0D process("/home/prasadkr/systemtap/stap").function("copy_backward@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../..= /include/c++/4.4.4/bits/stl_algobase.h:628")?=0D process("/home/prasadkr/systemtap/stap").function("copy_backward@/usr/lib/gcc/ppc64-redhat-linux/4.4.4= /../../../../include/c++/4.4.4/bits/stl_algobase.h:628")?=0D process("/home/prasadkr/systemtap/stap").function("copy_backward@/usr/lib/gcc/ppc64-redhat-linux/4.4.4= /../../../../include/c++/4.4.4/bits/stl_algobase.h:628")?=0D process("/home/prasadkr/systemtap/stap").function("copy_backward@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4= .4.4/bits/stl_algobase.h:628")?=0D process("/home/prasadkr/systemtap/stap").function("copy_backward@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4= /bits/stl_algobase.h:628")? $__result:void*** $__last:void*** $__first:void= ***=0D process("/home/prasadkr/systemtap/stap").function("copy_file@/home/prasadkr= /systemtap/util.cxx:101")? $src:string const& $dest:string const& $verbose:= bool=0D process("/home/prasadkr/systemtap/stap").function("copy_uprobes_symbols@/ho= me/prasadkr/systemtap/buildrun.cxx:396")?=0D process("/home/prasadkr/systemtap/stap").function("count@/usr/lib/gcc/ppc64= -redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_map.h:685")?=0D process("/home/prasadkr/systemtap/stap").function("count@/usr/lib/gcc/ppc64= -redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_multimap.h:618")= ?=0D process("/home/prasadkr/systemtap/stap").function("count@/usr/lib/gcc/ppc64= -redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_set.h:529")?=0D process("/home/prasadkr/systemtap/stap").function("count@/usr/lib/gcc/ppc64= -redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_tree.h:1443")?=0D process("/home/prasadkr/systemtap/stap").function("coverage_element@/home/p= rasadkr/systemtap/coveragedb.h:69")?=0D process("/home/prasadkr/systemtap/stap").function("create@/home/prasadkr/sy= stemtap/remote.cxx:231")? $s:struct systemtap_session& $uri:string const&=0D process("/home/prasadkr/systemtap/stap").function("create@/home/prasadkr/sy= stemtap/staptree.cxx:500")? $t:struct token const*=0D process("/home/prasadkr/systemtap/stap").function("create_alias@/home/prasa= dkr/systemtap/elaborate.cxx:632")? $this:struct probe* const $l:struct prob= e_point* $a:struct probe_point*=0D process("/home/prasadkr/systemtap/stap").function("create_debug_frame_hdr@/= home/prasadkr/systemtap/translate.cxx:4664")? $mod:Dwfl_Module* $session:st= ruct systemtap_session& $debug_frame_hdr_len:size_t* $debug_frame:struct El= f_Data* $e_ident:unsigned char const*=0D process("/home/prasadkr/systemtap/stap").function("create_dir@/home/prasadk= r/systemtap/util.cxx:173")? $dir:char const* $mode:int=0D process("/home/prasadkr/systemtap/stap").function("create_hash_log@/home/pr= asadkr/systemtap/hash.cxx:120")? $type_str:string const& $parms:string cons= t& $result:string const& $hash_log_path:string const&=0D process("/home/prasadkr/systemtap/stap").function("create_hashdir@/home/pra= sadkr/systemtap/hash.cxx:185")? $s:struct systemtap_session& $result:string= const& $hashdir:string&=0D process("/home/prasadkr/systemtap/stap").function("create_temp_dir@/home/pr= asadkr/systemtap/main.cxx:355")?=0D process("/home/prasadkr/systemtap/stap").function("cu_function_caching_call= back@/home/prasadkr/systemtap/dwflpp.cxx:818")? $func:struct Dwarf_Die* $ar= g:void*=0D process("/home/prasadkr/systemtap/stap").function("cu_name@/home/prasadkr/s= ystemtap/dwflpp.cxx:194")? $this:struct dwflpp* const=0D process("/home/prasadkr/systemtap/stap").function("data@/usr/lib/gcc/ppc64-= redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/basic_string.h:1622")= ?=0D process("/home/prasadkr/systemtap/stap").function("dead_assignment_remover@= /home/prasadkr/systemtap/elaborate.cxx:2195")? $v:struct varuse_collecting_= visitor const& $r:bool& $s:struct systemtap_session& $this:struct dead_assi= gnment_remover* const=0D process("/home/prasadkr/systemtap/stap").function("dead_stmtexpr_remover@/h= ome/prasadkr/systemtap/elaborate.cxx:2313")? $this:struct dead_stmtexpr_rem= over* const=0D process("/home/prasadkr/systemtap/stap").function("deallocate@/usr/lib/gcc/= ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/ext/new_allocator.h:= 94")?=0D process("/home/prasadkr/systemtap/stap").function("dec@/usr/lib/gcc/ppc64-r= edhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/ios_base.h:937")?=0D process("/home/prasadkr/systemtap/stap").function("declaration_resolve@/hom= e/prasadkr/systemtap/dwflpp.cxx:781")? $this:struct dwflpp* const $name:str= ing const&=0D process("/home/prasadkr/systemtap/stap").function("declaration_resolve@/hom= e/prasadkr/systemtap/dwflpp.cxx:806")? $this:struct dwflpp* const $type:str= uct Dwarf_Die*=0D process("/home/prasadkr/systemtap/stap").function("declaration_resolve_othe= r_cus@/home/prasadkr/systemtap/dwflpp.cxx:766")? $this:struct dwflpp* const= $name:string const&=0D process("/home/prasadkr/systemtap/stap").function("declare@/home/prasadkr/s= ystemtap/translate.cxx:449")?=0D process("/home/prasadkr/systemtap/stap").function("declare@/home/prasadkr/s= ystemtap/translate.cxx:525")?=0D process("/home/prasadkr/systemtap/stap").function("declare@/home/prasadkr/s= ystemtap/translate.cxx:768")?=0D process("/home/prasadkr/systemtap/stap").function("declare_noncontig_union@= /home/prasadkr/systemtap/loc2c.c:1728")? $pool:struct obstack* $indent:int = $input:struct location** $loc:struct location* $depth:int=0D process("/home/prasadkr/systemtap/stap").function("deep_copy@/h= ome/prasadkr/systemtap/staptree.h:1006")? $e:struct expression*=0D process("/home/prasadkr/systemtap/stap").function("deep_copy@/home/prasadkr/systemtap/staptree.h:1006")?=0D process("/home/prasadkr/systemtap/stap").function("deep_copy@/ho= me/prasadkr/systemtap/staptree.h:1006")?=0D process("/home/prasadkr/systemtap/stap").function("deep_copy= @/home/prasadkr/systemtap/staptree.h:1006")? $e:struct target_symbol*=0D process("/home/prasadkr/systemtap/stap").function("deep_copy_visitor@/home/= prasadkr/systemtap/staptree.h:1005")?=0D process("/home/prasadkr/systemtap/stap").function("default_emit_address@/ho= me/prasadkr/systemtap/loc2c.c:131")? $fail_arg:void* $pool:struct obstack* = $address:Dwarf_Addr=0D process("/home/prasadkr/systemtap/stap").function("default_server_spec@/hom= e/prasadkr/systemtap/csclient.cxx:1469")? $s:struct systemtap_session const= &=0D process("/home/prasadkr/systemtap/stap").function("defined_op@/home/prasadk= r/systemtap/staptree.h:290")?=0D process("/home/prasadkr/systemtap/stap").function("del@/home/prasadkr/syste= mtap/translate.cxx:619")?=0D process("/home/prasadkr/systemtap/stap").function("delete_map@/home/prasadkr/systemtap/util.h:139")?=0D process("/home/prasadkr/systemtap/stap").function("delete_map@/home/prasadkr/systemtap/util.h:139")?=0D process("/home/prasadkr/systemtap/stap").function("delete_map@/home/prasadkr/systemtap/util.h:139")?=0D process("/home/prasadkr/systemtap/stap").function("delete_map@/home/prasadkr/systemtap/util.h:139")?=0D process("/home/prasadkr/systemtap/stap").function("delete_map@/home/prasadkr/systemtap/util.h:139")?=0D process("/home/prasadkr/systemtap/stap").function("delete_map@/home/prasadkr/systemtap/util.h:139")?=0D process("/home/prasadkr/systemtap/stap").function("delete_map, std::allocator >, dwflpp*= , std::less, std::allocator<= char> > >, std::allocator, std::allocator >, dwflpp*> > > >@/home/prasadkr/system= tap/util.h:139")? $t:class map, std::allocator >, dwflpp*, std::less, std::allocator > >, std::allocator, std::allocator >, d= wflpp*> > >&=0D process("/home/prasadkr/systemtap/stap").function("delete_map, std::allocator >, module_= info*, std::less, std::alloc= ator > >, std::allocator, std::allocator >, module_info*> > > >@/home/prasa= dkr/systemtap/util.h:139")?=0D process("/home/prasadkr/systemtap/stap").function("delete_map, std::allocato= r > > >@/home/prasadkr/syste= mtap/util.h:139")?=0D process("/home/prasadkr/systemtap/stap").function("delete_map@/home/prasadkr/systemtap/util.h:139")?=0D process("/home/prasadkr/systemtap/stap").function("delete_session_module_ca= che@/home/prasadkr/systemtap/tapsets.cxx:1957")? $s:struct systemtap_sessio= n&=0D process("/home/prasadkr/systemtap/stap").function("delete_statement@/home/p= rasadkr/systemtap/staptree.h:623")?=0D process("/home/prasadkr/systemtap/stap").function("delete_statement_operand= _tmp_visitor@/home/prasadkr/systemtap/translate.cxx:2992")? $this:struct de= lete_statement_operand_tmp_visitor* const=0D process("/home/prasadkr/systemtap/stap").function("delete_statement_operand= _visitor@/home/prasadkr/systemtap/translate.cxx:3004")? $this:struct delete= _statement_operand_visitor* const=0D process("/home/prasadkr/systemtap/stap").function("delete_statement_symreso= lution_info@/home/prasadkr/systemtap/elaborate.cxx:1744")? $this:struct del= ete_statement_symresolution_info* const=0D process("/home/prasadkr/systemtap/stap").function("delete_statement_typeres= olution_info@/home/prasadkr/systemtap/elaborate.cxx:4520")? $this:struct de= lete_statement_typeresolution_info* const=0D process("/home/prasadkr/systemtap/stap").function("deque@/usr/lib/gcc/ppc64= -redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_deque.h:690")?=0D process("/home/prasadkr/systemtap/stap").function("deque@/usr/lib/gcc/ppc64= -redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_deque.h:722")?=0D process("/home/prasadkr/systemtap/stap").function("deref@/home/prasadkr/sys= temtap/tapsets.cxx:2620")? $this:struct dwarf_pretty_print* const $e:struct= target_symbol*=0D process("/home/prasadkr/systemtap/stap").function("derive_probes@/home/pras= adkr/systemtap/elaborate.cxx:754")? $s:struct systemtap_session& $p:struct = probe* $dps:class vector >& = $optional:bool=0D process("/home/prasadkr/systemtap/stap").function("derived_locations@/home/= prasadkr/systemtap/elaborate.cxx:127")? $this:struct derived_probe* const=0D process("/home/prasadkr/systemtap/stap").function("derived_probe@/home/pras= adkr/systemtap/elaborate.cxx:60")? $this:struct derived_probe* const $p:str= uct probe* $l:struct probe_point* $rewrite_loc:bool=0D process("/home/prasadkr/systemtap/stap").function("destroy@/usr/lib/gcc/ppc= 64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/ext/new_allocator.h:115= ")?=0D process("/home/prasadkr/systemtap/stap").function("die_entrypc@/home/prasad= kr/systemtap/dwflpp.cxx:1542")? $this:struct dwflpp* const $die:struct Dwar= f_Die* $addr:Dwarf_Addr*=0D process("/home/prasadkr/systemtap/stap").function("die_has_pc@/home/prasadk= r/systemtap/dwflpp.cxx:1627")?=0D process("/home/prasadkr/systemtap/stap").function("direct@/home/prasadkr/sy= stemtap/remote.cxx:70")? $s:struct systemtap_session& $this:class direct* c= onst=0D process("/home/prasadkr/systemtap/stap").function("discontiguify@/home/pras= adkr/systemtap/loc2c.c:1603")? $ctx:struct location_context* $indent:int=0D process("/home/prasadkr/systemtap/stap").function("distance@/us= r/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_i= terator_base_funcs.h:110")?=0D process("/home/prasadkr/systemtap/stap").function("distance<__gnu_cxx::__no= rmal_iterator > > >@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.= 4/bits/stl_iterator_base_funcs.h:110")? $__last:class __normal_iterator > > $__first:c= lass __normal_iterator > >=0D process("/home/prasadkr/systemtap/stap").function("distance@/usr/lib= /gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_iterat= or_base_funcs.h:110")? $__last:char* $__first:char*=0D process("/home/prasadkr/systemtap/stap").function("distance, std::allocato= r > > >@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++= /4.4.4/bits/stl_iterator_base_funcs.h:110")?=0D process("/home/prasadkr/systemtap/stap").function("distance, std::allocator >, std::basic_string, = std::allocator > > > >@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../..= /../include/c++/4.4.4/bits/stl_iterator_base_funcs.h:110")? $__first:struct= _Rb_tree_const_iterator, std::allocator >, std::basic_string, std::allocator > > >=0D process("/home/prasadkr/systemtap/stap").function("distance, std::allocator >, Dwarf_Die>, false, false> >@/usr/lib/= gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_iterato= r_base_funcs.h:110")?=0D process("/home/prasadkr/systemtap/stap").function("dump_unwindsyms@/home/pr= asadkr/systemtap/translate.cxx:4856")? $m:Dwfl_Module* $userdata:void** $na= me:char const* $base:Dwarf_Addr $arg:void*=0D process("/home/prasadkr/systemtap/stap").function("duplicate_function_remov= er@/home/prasadkr/systemtap/elaborate.cxx:3566")? $dfm:class map, std::allocator > >& $sess:struct systemtap_session& $this:= struct duplicate_function_remover* const=0D process("/home/prasadkr/systemtap/stap").function("dwarf_assert@/home/prasa= dkr/systemtap/dwarf_wrappers.cxx:32")? $desc:string const& $rc:int=0D process("/home/prasadkr/systemtap/stap").function("dwarf_assert@/home/prasa= dkr/systemtap/dwarf_wrappers.h:62")? $ptr:void const* $desc:string const&=0D process("/home/prasadkr/systemtap/stap").function("dwarf_attr_die@/home/pra= sadkr/systemtap/dwarf_wrappers.h:115")?=0D process("/home/prasadkr/systemtap/stap").function("dwarf_build_no_more@/hom= e/prasadkr/systemtap/tapsets.cxx:714")?=0D process("/home/prasadkr/systemtap/stap").function("dwarf_builder@/home/pras= adkr/systemtap/tapsets.cxx:697")?=0D process("/home/prasadkr/systemtap/stap").function("dwarf_cast_expanding_vis= itor@/home/prasadkr/systemtap/tapsets.cxx:3441")? $db:struct dwarf_builder&= $s:struct systemtap_session& $this:struct dwarf_cast_expanding_visitor* co= nst=0D process("/home/prasadkr/systemtap/stap").function("dwarf_cast_query@/home/p= rasadkr/systemtap/tapsets.cxx:3455")?=0D process("/home/prasadkr/systemtap/stap").function("dwarf_derived_probe@/hom= e/prasadkr/systemtap/tapsets.cxx:3752")? $this:struct dwarf_derived_probe* = const $funcname:string const& $filename:string const& $line:int $module:str= ing const& $section:string const& $dwfl_addr:Dwarf_Addr $addr:Dwarf_Addr $q= :struct dwarf_query& $scope_die:struct Dwarf_Die*=0D process("/home/prasadkr/systemtap/stap").function("dwarf_derived_probe@/hom= e/prasadkr/systemtap/tapsets.cxx:420")?=0D process("/home/prasadkr/systemtap/stap").function("dwarf_derived_probe_grou= p@/home/prasadkr/systemtap/tapsets.cxx:479")? $this:struct dwarf_derived_pr= obe_group* const=0D process("/home/prasadkr/systemtap/stap").function("dwarf_die_type@/home/pra= sadkr/systemtap/dwflpp.cxx:2108")?=0D process("/home/prasadkr/systemtap/stap").function("dwarf_line_t@/home/prasa= dkr/systemtap/dwarf_wrappers.h:74")? $line_:Dwarf_Line const* $this:class d= warf_line_t* const=0D process("/home/prasadkr/systemtap/stap").function("dwarf_linkage_name@/home= /prasadkr/systemtap/dwarf_wrappers.h:126")?=0D process("/home/prasadkr/systemtap/stap").function("dwarf_pretty_print@/home= /prasadkr/systemtap/tapsets.cxx:2179")?=0D process("/home/prasadkr/systemtap/stap").function("dwarf_pretty_print@/home= /prasadkr/systemtap/tapsets.cxx:2189")?=0D process("/home/prasadkr/systemtap/stap").function("dwarf_pretty_print@/home= /prasadkr/systemtap/tapsets.cxx:2198")?=0D process("/home/prasadkr/systemtap/stap").function("dwarf_query@/home/prasad= kr/systemtap/tapsets.cxx:739")? $this:struct dwarf_query* const $base_probe= :struct probe* $base_loc:struct probe_point* $dw:struct dwflpp& $params:lit= eral_map_t const& $results:class vector >& $user_path:string const $user_lib:string const=0D process("/home/prasadkr/systemtap/stap").function("dwarf_type_name@/home/pr= asadkr/systemtap/dwarf_wrappers.cxx:188")? $type_die:struct Dwarf_Die* $typ= e_name:string&=0D process("/home/prasadkr/systemtap/stap").function("dwarf_type_name@/home/pr= asadkr/systemtap/dwarf_wrappers.cxx:198")? $type_die:struct Dwarf_Die*=0D process("/home/prasadkr/systemtap/stap").function("dwarf_type_name@/home/pr= asadkr/systemtap/dwarf_wrappers.cxx:88")? $type_die:struct Dwarf_Die* $o:os= tream&=0D process("/home/prasadkr/systemtap/stap").function("dwarf_var_expanding_visi= tor@/home/prasadkr/systemtap/tapsets.cxx:1981")? $a:Dwarf_Addr $sd:struct D= warf_Die* $q:struct dwarf_query& $this:struct dwarf_var_expanding_visitor* = const=0D process("/home/prasadkr/systemtap/stap").function("dwarf_whatattr@/usr/incl= ude/elfutils/libdw.h:848")?=0D process("/home/prasadkr/systemtap/stap").function("dwarf_whatform@/usr/incl= ude/elfutils/libdw.h:855")?=0D process("/home/prasadkr/systemtap/stap").function("dwfl_assert@/home/prasad= kr/systemtap/dwarf_wrappers.cxx:20")? $desc:string const& $rc:int=0D process("/home/prasadkr/systemtap/stap").function("dwfl_assert@/home/prasad= kr/systemtap/dwarf_wrappers.h:43")? $ptr:void const* $desc:string const&=0D process("/home/prasadkr/systemtap/stap").function("dwfl_assert@/home/prasad= kr/systemtap/dwarf_wrappers.h:51")? $condition:bool $desc:string const&=0D process("/home/prasadkr/systemtap/stap").function("dwflpp@/home/prasadkr/sy= stemtap/dwflpp.cxx:71")? $this:struct dwflpp* const $session:struct systemt= ap_session& $name:string const& $kernel_p:bool=0D process("/home/prasadkr/systemtap/stap").function("dwflpp@/home/prasadkr/sy= stemtap/dwflpp.cxx:86")? $this:struct dwflpp* const $session:struct systemt= ap_session& $names:class vector, std::allocator >, std::allocator, std::allocator > > > const& $kernel_p:bool=0D process("/home/prasadkr/systemtap/stap").function("egptr@/usr/lib/gcc/ppc64= -redhat-linux/4.4.4/../../../../include/c++/4.4.4/streambuf:464")? $this:st= ruct basic_streambuf > const* const=0D process("/home/prasadkr/systemtap/stap").function("embedded_expr@/home/pras= adkr/systemtap/staptree.h:101")?=0D process("/home/prasadkr/systemtap/stap").function("embeddedcode@/home/prasa= dkr/systemtap/staptree.h:534")?=0D process("/home/prasadkr/systemtap/stap").function("embeddedcode_info@/home/= prasadkr/systemtap/elaborate.cxx:1220")? $this:struct embeddedcode_info* co= nst=0D process("/home/prasadkr/systemtap/stap").function("embeddedcode_info_pass@/= home/prasadkr/systemtap/elaborate.cxx:1235")? $s:struct systemtap_session&= =0D process("/home/prasadkr/systemtap/stap").function("emit_address@/home/prasa= dkr/systemtap/dwflpp.cxx:1697")? $this:struct dwflpp* const $pool:struct ob= stack* $address:Dwarf_Addr=0D process("/home/prasadkr/systemtap/stap").function("emit_base_fetch@/home/pr= asadkr/systemtap/loc2c.c:1498")?=0D process("/home/prasadkr/systemtap/stap").function("emit_base_store@/home/pr= asadkr/systemtap/loc2c.c:1551")?=0D process("/home/prasadkr/systemtap/stap").function("emit_common_header@/home= /prasadkr/systemtap/translate.cxx:902")? $this:struct c_unparser* const=0D process("/home/prasadkr/systemtap/stap").function("emit_function@/home/pras= adkr/systemtap/translate.cxx:1514")? $this:struct c_unparser* const $v:stru= ct functiondecl*=0D process("/home/prasadkr/systemtap/stap").function("emit_functionsig@/home/p= rasadkr/systemtap/translate.cxx:1171")? $this:struct c_unparser* const $v:s= truct functiondecl*=0D process("/home/prasadkr/systemtap/stap").function("emit_global@/home/prasad= kr/systemtap/translate.cxx:1128")? $this:struct c_unparser* const $v:struct= vardecl*=0D process("/home/prasadkr/systemtap/stap").function("emit_global_init@/home/p= rasadkr/systemtap/translate.cxx:1150")? $this:struct c_unparser* const $v:s= truct vardecl*=0D process("/home/prasadkr/systemtap/stap").function("emit_global_param@/home/= prasadkr/systemtap/translate.cxx:1100")? $this:struct c_unparser* const $v:= struct vardecl*=0D process("/home/prasadkr/systemtap/stap").function("emit_header@/home/prasad= kr/systemtap/loc2c.c:2413")?=0D process("/home/prasadkr/systemtap/stap").function("emit_interval@/home/pras= adkr/systemtap/tapset-timers.cxx:237")? $this:struct hrtimer_derived_probe_= group* const $o:struct translator_output*=0D process("/home/prasadkr/systemtap/stap").function("emit_interval@/home/pras= adkr/systemtap/tapset-timers.cxx:84")? $this:struct timer_derived_probe_gro= up* const $o:struct translator_output*=0D process("/home/prasadkr/systemtap/stap").function("emit_loc_address@/home/p= rasadkr/systemtap/loc2c.c:2453")? $target:char const* $indent:unsigned int = $loc:struct location*=0D process("/home/prasadkr/systemtap/stap").function("emit_loc_register@/home/= prasadkr/systemtap/loc2c.c:2439")? $target:char const* $indent:unsigned int= $loc:struct location*=0D process("/home/prasadkr/systemtap/stap").function("emit_loc_value@/home/pra= sadkr/systemtap/loc2c.c:2480")? $out:FILE* $loc:struct location* $indent:un= signed int $target:char const* $declare:_Bool $used_deref:_Bool* $max_stack= :unsigned int*=0D process("/home/prasadkr/systemtap/stap").function("emit_lock_decls@/home/pr= asadkr/systemtap/translate.cxx:1754")? $this:struct c_unparser* const $vut:= struct varuse_collecting_visitor const&=0D process("/home/prasadkr/systemtap/stap").function("emit_locks@/home/prasadk= r/systemtap/translate.cxx:1821")? $this:struct c_unparser* const=0D process("/home/prasadkr/systemtap/stap").function("emit_map_type_instantiat= ions@/home/prasadkr/systemtap/translate.cxx:1899")? $this:struct c_unparser= * const=0D process("/home/prasadkr/systemtap/stap").function("emit_module_decls@/home/= prasadkr/systemtap/tapset-been.cxx:108")? $this:struct be_derived_probe_gro= up* const $s:struct systemtap_session&=0D process("/home/prasadkr/systemtap/stap").function("emit_module_decls@/home/= prasadkr/systemtap/tapset-itrace.cxx:171")? $this:struct itrace_derived_pro= be_group* const $s:struct systemtap_session&=0D process("/home/prasadkr/systemtap/stap").function("emit_module_decls@/home/= prasadkr/systemtap/tapset-mark.cxx:484")? $this:struct mark_derived_probe_g= roup* const $s:struct systemtap_session&=0D process("/home/prasadkr/systemtap/stap").function("emit_module_decls@/home/= prasadkr/systemtap/tapset-perfmon.cxx:78")? $this:struct perf_derived_probe= _group* const $s:struct systemtap_session&=0D process("/home/prasadkr/systemtap/stap").function("emit_module_decls@/home/= prasadkr/systemtap/tapset-procfs.cxx:168")? $this:struct procfs_derived_pro= be_group* const $s:struct systemtap_session&=0D process("/home/prasadkr/systemtap/stap").function("emit_module_decls@/home/= prasadkr/systemtap/tapset-timers.cxx:262")? $this:struct hrtimer_derived_pr= obe_group* const $s:struct systemtap_session&=0D process("/home/prasadkr/systemtap/stap").function("emit_module_decls@/home/= prasadkr/systemtap/tapset-timers.cxx:414")? $this:struct profile_derived_pr= obe_group* const $s:struct systemtap_session&=0D process("/home/prasadkr/systemtap/stap").function("emit_module_decls@/home/= prasadkr/systemtap/tapset-timers.cxx:96")? $this:struct timer_derived_probe= _group* const $s:struct systemtap_session&=0D process("/home/prasadkr/systemtap/stap").function("emit_module_decls@/home/= prasadkr/systemtap/tapset-utrace.cxx:782")? $this:struct utrace_derived_pro= be_group* const $s:struct systemtap_session&=0D process("/home/prasadkr/systemtap/stap").function("emit_module_decls@/home/= prasadkr/systemtap/tapsets.cxx:4198")? $this:struct dwarf_derived_probe_gro= up* const $s:struct systemtap_session&=0D process("/home/prasadkr/systemtap/stap").function("emit_module_decls@/home/= prasadkr/systemtap/tapsets.cxx:6586")? $this:struct uprobe_derived_probe_gr= oup* const $s:struct systemtap_session&=0D process("/home/prasadkr/systemtap/stap").function("emit_module_decls@/home/= prasadkr/systemtap/tapsets.cxx:7003")? $this:struct kprobe_derived_probe_gr= oup* const $s:struct systemtap_session&=0D process("/home/prasadkr/systemtap/stap").function("emit_module_decls@/home/= prasadkr/systemtap/tapsets.cxx:7539")? $this:struct hwbkpt_derived_probe_gr= oup* const $s:struct systemtap_session&=0D process("/home/prasadkr/systemtap/stap").function("emit_module_decls@/home/= prasadkr/systemtap/tapsets.cxx:8261")? $this:struct tracepoint_derived_prob= e_group* const $s:struct systemtap_session&=0D process("/home/prasadkr/systemtap/stap").function("emit_module_decls@/home/= prasadkr/systemtap/task_finder.cxx:43")? $this:struct task_finder_derived_p= robe_group* const=0D process("/home/prasadkr/systemtap/stap").function("emit_module_exit@/home/p= rasadkr/systemtap/tapset-been.cxx:166")? $this:struct be_derived_probe_grou= p* const $s:struct systemtap_session&=0D process("/home/prasadkr/systemtap/stap").function("emit_module_exit@/home/p= rasadkr/systemtap/tapset-itrace.cxx:288")? $this:struct itrace_derived_prob= e_group* const $s:struct systemtap_session&=0D process("/home/prasadkr/systemtap/stap").function("emit_module_exit@/home/p= rasadkr/systemtap/tapset-mark.cxx:551")? $this:struct mark_derived_probe_gr= oup* const $s:struct systemtap_session&=0D process("/home/prasadkr/systemtap/stap").function("emit_module_exit@/home/p= rasadkr/systemtap/tapset-perfmon.cxx:164")? $this:struct perf_derived_probe= _group* const $s:struct systemtap_session&=0D process("/home/prasadkr/systemtap/stap").function("emit_module_exit@/home/p= rasadkr/systemtap/tapset-procfs.cxx:373")? $this:struct procfs_derived_prob= e_group* const $s:struct systemtap_session&=0D process("/home/prasadkr/systemtap/stap").function("emit_module_exit@/home/p= rasadkr/systemtap/tapset-timers.cxx:159")? $this:struct timer_derived_probe= _group* const $s:struct systemtap_session&=0D process("/home/prasadkr/systemtap/stap").function("emit_module_exit@/home/p= rasadkr/systemtap/tapset-timers.cxx:354")? $this:struct hrtimer_derived_pro= be_group* const $s:struct systemtap_session&=0D process("/home/prasadkr/systemtap/stap").function("emit_module_exit@/home/p= rasadkr/systemtap/tapset-timers.cxx:493")? $this:struct profile_derived_pro= be_group* const $s:struct systemtap_session&=0D process("/home/prasadkr/systemtap/stap").function("emit_module_exit@/home/p= rasadkr/systemtap/tapset-utrace.cxx:1058")? $this:struct utrace_derived_pro= be_group* const $s:struct systemtap_session&=0D process("/home/prasadkr/systemtap/stap").function("emit_module_exit@/home/p= rasadkr/systemtap/tapsets.cxx:4546")? $this:struct dwarf_derived_probe_grou= p* const $s:struct systemtap_session&=0D process("/home/prasadkr/systemtap/stap").function("emit_module_exit@/home/p= rasadkr/systemtap/tapsets.cxx:6796")? $this:struct uprobe_derived_probe_gro= up* const $s:struct systemtap_session&=0D process("/home/prasadkr/systemtap/stap").function("emit_module_exit@/home/p= rasadkr/systemtap/tapsets.cxx:7273")? $this:struct kprobe_derived_probe_gro= up* const $s:struct systemtap_session&=0D process("/home/prasadkr/systemtap/stap").function("emit_module_exit@/home/p= rasadkr/systemtap/tapsets.cxx:7685")? $this:struct hwbkpt_derived_probe_gro= up* const $s:struct systemtap_session&=0D process("/home/prasadkr/systemtap/stap").function("emit_module_exit@/home/p= rasadkr/systemtap/tapsets.cxx:8402")? $this:struct tracepoint_derived_probe= _group* const $s:struct systemtap_session&=0D process("/home/prasadkr/systemtap/stap").function("emit_module_exit@/home/p= rasadkr/systemtap/task_finder.cxx:75")? $this:struct task_finder_derived_pr= obe_group* const $s:struct systemtap_session&=0D process("/home/prasadkr/systemtap/stap").function("emit_module_exit@/home/p= rasadkr/systemtap/translate.cxx:1363")? $this:struct c_unparser* const=0D process("/home/prasadkr/systemtap/stap").function("emit_module_init@/home/p= rasadkr/systemtap/tapset-been.cxx:149")? $this:struct be_derived_probe_grou= p* const $s:struct systemtap_session&=0D process("/home/prasadkr/systemtap/stap").function("emit_module_init@/home/p= rasadkr/systemtap/tapset-itrace.cxx:255")? $this:struct itrace_derived_prob= e_group* const $s:struct systemtap_session&=0D process("/home/prasadkr/systemtap/stap").function("emit_module_init@/home/p= rasadkr/systemtap/tapset-mark.cxx:529")? $this:struct mark_derived_probe_gr= oup* const $s:struct systemtap_session&=0D process("/home/prasadkr/systemtap/stap").function("emit_module_init@/home/p= rasadkr/systemtap/tapset-perfmon.cxx:145")? $this:struct perf_derived_probe= _group* const $s:struct systemtap_session&=0D process("/home/prasadkr/systemtap/stap").function("emit_module_init@/home/p= rasadkr/systemtap/tapset-procfs.cxx:340")? $this:struct procfs_derived_prob= e_group* const $s:struct systemtap_session&=0D process("/home/prasadkr/systemtap/stap").function("emit_module_init@/home/p= rasadkr/systemtap/tapset-timers.cxx:138")? $this:struct timer_derived_probe= _group* const $s:struct systemtap_session&=0D process("/home/prasadkr/systemtap/stap").function("emit_module_init@/home/p= rasadkr/systemtap/tapset-timers.cxx:327")? $this:struct hrtimer_derived_pro= be_group* const $s:struct systemtap_session&=0D process("/home/prasadkr/systemtap/stap").function("emit_module_init@/home/p= rasadkr/systemtap/tapset-timers.cxx:479")? $this:struct profile_derived_pro= be_group* const $s:struct systemtap_session&=0D process("/home/prasadkr/systemtap/stap").function("emit_module_init@/home/p= rasadkr/systemtap/tapset-utrace.cxx:1035")? $this:struct utrace_derived_pro= be_group* const $s:struct systemtap_session&=0D process("/home/prasadkr/systemtap/stap").function("emit_module_init@/home/p= rasadkr/systemtap/tapsets.cxx:4450")? $this:struct dwarf_derived_probe_grou= p* const $s:struct systemtap_session&=0D process("/home/prasadkr/systemtap/stap").function("emit_module_init@/home/p= rasadkr/systemtap/tapsets.cxx:6763")? $this:struct uprobe_derived_probe_gro= up* const $s:struct systemtap_session&=0D process("/home/prasadkr/systemtap/stap").function("emit_module_init@/home/p= rasadkr/systemtap/tapsets.cxx:7188")? $this:struct kprobe_derived_probe_gro= up* const $s:struct systemtap_session&=0D process("/home/prasadkr/systemtap/stap").function("emit_module_init@/home/p= rasadkr/systemtap/tapsets.cxx:7629")? $this:struct hwbkpt_derived_probe_gro= up* const $s:struct systemtap_session&=0D process("/home/prasadkr/systemtap/stap").function("emit_module_init@/home/p= rasadkr/systemtap/tapsets.cxx:8375")? $this:struct tracepoint_derived_probe= _group* const $s:struct systemtap_session&=0D process("/home/prasadkr/systemtap/stap").function("emit_module_init@/home/p= rasadkr/systemtap/task_finder.cxx:53")? $this:struct task_finder_derived_pr= obe_group* const $s:struct systemtap_session&=0D process("/home/prasadkr/systemtap/stap").function("emit_module_init@/home/p= rasadkr/systemtap/translate.cxx:1179")? $this:struct c_unparser* const=0D process("/home/prasadkr/systemtap/stap").function("emit_probe@/home/prasadk= r/systemtap/translate.cxx:1600")? $this:struct c_unparser* const $v:struct = derived_probe*=0D process("/home/prasadkr/systemtap/stap").function("emit_probe_decl@/home/pr= asadkr/systemtap/tapset-itrace.cxx:145")? $this:struct itrace_derived_probe= _group* const $s:struct systemtap_session& $p:struct itrace_derived_probe*= =0D process("/home/prasadkr/systemtap/stap").function("emit_probe_decl@/home/pr= asadkr/systemtap/tapset-utrace.cxx:706")? $this:struct utrace_derived_probe= _group* const $s:struct systemtap_session& $p:struct utrace_derived_probe*= =0D process("/home/prasadkr/systemtap/stap").function("emit_probe_local_init@/h= ome/prasadkr/systemtap/elaborate.h:153")? $this:struct derived_probe* const= =0D process("/home/prasadkr/systemtap/stap").function("emit_probe_local_init@/h= ome/prasadkr/systemtap/tapsets.cxx:4172")? $this:struct dwarf_derived_probe= * const $o:class translator_output*=0D process("/home/prasadkr/systemtap/stap").function("emit_process_owner_asser= tion@/home/prasadkr/systemtap/elaborate.cxx:179")? $o:class translator_outp= ut*=0D process("/home/prasadkr/systemtap/stap").function("emit_symbol_data@/home/p= rasadkr/systemtap/translate.cxx:5585")? $s:struct systemtap_session&=0D process("/home/prasadkr/systemtap/stap").function("emit_symbol_data_done@/h= ome/prasadkr/systemtap/translate.cxx:5663")? $ctx:struct unwindsym_dump_con= text* $s:struct systemtap_session&=0D process("/home/prasadkr/systemtap/stap").function("emit_unlocks@/home/prasa= dkr/systemtap/translate.cxx:1830")? $this:struct c_unparser* const $vut:str= uct varuse_collecting_visitor const&=0D process("/home/prasadkr/systemtap/stap").function("emit_unprivileged_assert= ion@/home/prasadkr/systemtap/elaborate.cxx:166")? $this:struct derived_prob= e* const $o:class translator_output*=0D process("/home/prasadkr/systemtap/stap").function("emit_unprivileged_assert= ion@/home/prasadkr/systemtap/tapset-been.cxx:193")? $this:struct never_deri= ved_probe* const=0D process("/home/prasadkr/systemtap/stap").function("emit_unprivileged_assert= ion@/home/prasadkr/systemtap/tapset-been.cxx:57")? $this:struct be_derived_= probe* const=0D process("/home/prasadkr/systemtap/stap").function("emit_unprivileged_assert= ion@/home/prasadkr/systemtap/tapset-timers.cxx:212")? $this:struct hrtimer_= derived_probe* const=0D process("/home/prasadkr/systemtap/stap").function("emit_unprivileged_assert= ion@/home/prasadkr/systemtap/tapset-timers.cxx:43")? $this:struct timer_der= ived_probe* const=0D process("/home/prasadkr/systemtap/stap").function("emit_unprivileged_assert= ion@/home/prasadkr/systemtap/tapset-utrace.cxx:206")? $this:struct utrace_d= erived_probe* const $o:struct translator_output*=0D process("/home/prasadkr/systemtap/stap").function("emit_unprivileged_assert= ion@/home/prasadkr/systemtap/tapsets.cxx:4051")? $this:struct dwarf_derived= _probe* const $o:class translator_output*=0D process("/home/prasadkr/systemtap/stap").function("emit_unprivileged_assert= ion@/home/prasadkr/systemtap/tapsets.cxx:6554")? $this:struct uprobe_derive= d_probe* const $o:class translator_output*=0D process("/home/prasadkr/systemtap/stap").function("empty@/home/prasadkr/sys= temtap/csclient.cxx:78")?=0D process("/home/prasadkr/systemtap/stap").function("empty@/usr/lib/gcc/ppc64= -redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/basic_string.h:708")= ?=0D process("/home/prasadkr/systemtap/stap").function("empty@/usr/lib/gcc/ppc64= -redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_deque.h:1039")?= =0D process("/home/prasadkr/systemtap/stap").function("empty@/usr/lib/gcc/ppc64= -redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_map.h:415")? $th= is:class map, std::allocator= >, statistic_decl, std::less, std::allocator > >, std::allocator, std::allocator >, statistic_de= cl> > > const* const=0D process("/home/prasadkr/systemtap/stap").function("empty@/usr/lib/gcc/ppc64= -redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_set.h:361")?=0D process("/home/prasadkr/systemtap/stap").function("empty@/usr/lib/gcc/ppc64= -redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_stack.h:142")?=0D process("/home/prasadkr/systemtap/stap").function("empty@/usr/lib/gcc/ppc64= -redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_tree.h:666")?=0D process("/home/prasadkr/systemtap/stap").function("empty@/usr/lib/gcc/ppc64= -redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_vector.h:574")?= =0D process("/home/prasadkr/systemtap/stap").function("enable_task_finder@/home= /prasadkr/systemtap/task_finder.cxx:85")? $s:struct systemtap_session&=0D process("/home/prasadkr/systemtap/stap").function("enable_vma_tracker@/home= /prasadkr/systemtap/task_finder.cxx:97")? $s:struct systemtap_session&=0D process("/home/prasadkr/systemtap/stap").function("end@/usr/lib/gcc/ppc64-r= edhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/basic_string.h:573")? = $this:struct basic_string, std::allocator >* const=0D process("/home/prasadkr/systemtap/stap").function("end@/usr/lib/gcc/ppc64-r= edhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/basic_string.h:584")?= =0D process("/home/prasadkr/systemtap/stap").function("end@/usr/lib/gcc/ppc64-r= edhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_deque.h:917")?=0D process("/home/prasadkr/systemtap/stap").function("end@/usr/lib/gcc/ppc64-r= edhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_list.h:707")?=0D process("/home/prasadkr/systemtap/stap").function("end@/usr/lib/gcc/ppc64-r= edhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_map.h:324")?=0D process("/home/prasadkr/systemtap/stap").function("end@/usr/lib/gcc/ppc64-r= edhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_multimap.h:321")?= =0D process("/home/prasadkr/systemtap/stap").function("end@/usr/lib/gcc/ppc64-r= edhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_set.h:300")?=0D process("/home/prasadkr/systemtap/stap").function("end@/usr/lib/gcc/ppc64-r= edhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_tree.h:639")?=0D process("/home/prasadkr/systemtap/stap").function("end@/usr/lib/gcc/ppc64-r= edhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_tree.h:643")?=0D process("/home/prasadkr/systemtap/stap").function("end@/usr/lib/gcc/ppc64-r= edhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_vector.h:443")?=0D process("/home/prasadkr/systemtap/stap").function("end@/usr/lib/gcc/ppc64-r= edhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_vector.h:452")?=0D process("/home/prasadkr/systemtap/stap").function("end@/usr/lib/gcc/ppc64-r= edhat-linux/4.4.4/../../../../include/c++/4.4.4/tr1_impl/hashtable:254")?=0D process("/home/prasadkr/systemtap/stap").function("endl >@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4= .4.4/ostream:538")?=0D process("/home/prasadkr/systemtap/stap").function("endswith@/home/prasadkr/= systemtap/util.h:157")?=0D process("/home/prasadkr/systemtap/stap").function("enroll@/home/prasadkr/sy= stemtap/tapset-itrace.cxx:130")? $this:struct itrace_derived_probe_group* c= onst $p:struct itrace_derived_probe*=0D process("/home/prasadkr/systemtap/stap").function("enroll@/home/prasadkr/sy= stemtap/tapset-procfs.cxx:132")? $this:struct procfs_derived_probe_group* c= onst $p:struct procfs_derived_probe*=0D process("/home/prasadkr/systemtap/stap").function("enroll@/home/prasadkr/sy= stemtap/tapset-utrace.cxx:690")? $this:struct utrace_derived_probe_group* c= onst $p:struct utrace_derived_probe*=0D process("/home/prasadkr/systemtap/stap").function("enroll@/home/prasadkr/sy= stemtap/tapsets.cxx:4186")? $this:struct dwarf_derived_probe_group* const $= p:struct dwarf_derived_probe*=0D process("/home/prasadkr/systemtap/stap").function("enroll@/home/prasadkr/sy= stemtap/tapsets.cxx:6996")? $this:struct kprobe_derived_probe_group* const = $p:struct kprobe_derived_probe*=0D process("/home/prasadkr/systemtap/stap").function("enroll@/home/prasadkr/sy= stemtap/tapsets.cxx:7521")? $this:struct hwbkpt_derived_probe_group* const = $p:struct hwbkpt_derived_probe* $s:struct systemtap_session&=0D process("/home/prasadkr/systemtap/stap").function("enroll@/home/prasadkr/sy= stemtap/tapsets.h:42")?=0D process("/home/prasadkr/systemtap/stap").function("enter_element@/home/pras= adkr/systemtap/coveragedb.cxx:156")? $db:sqlite3* $x:class coverage_element= &=0D process("/home/prasadkr/systemtap/stap").function("entry_op@/home/prasadkr/= systemtap/staptree.h:298")?=0D process("/home/prasadkr/systemtap/stap").function("eof@/usr/lib/gcc/ppc64-r= edhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/basic_ios.h:180")? $th= is:struct basic_ios > const* const=0D process("/home/prasadkr/systemtap/stap").function("equal, std::allocator > >, std::_Rb_tree_const_iterator, std::allocator > > >@/usr/lib/gcc/ppc64-redhat-linux/4.4.= 4/../../../../include/c++/4.4.4/bits/stl_algobase.h:799")?=0D process("/home/prasadkr/systemtap/stap").function("equal, std::allocator > >, std::_Rb_tree_const_iterator, std::allocator > > >@/usr/lib/gcc/ppc64-redhat-linux/4.4.= 4/../../../../include/c++/4.4.4/bits/stl_algobase.h:952")?=0D process("/home/prasadkr/systemtap/stap").function("equal_range@/usr/lib/gcc= /ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_multimap.h= :685")?=0D process("/home/prasadkr/systemtap/stap").function("equal_range@/usr/lib/gcc= /ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_tree.h:104= 7")?=0D process("/home/prasadkr/systemtap/stap").function("equal_range@/usr/lib/gcc= /ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_tree.h:107= 8")?=0D process("/home/prasadkr/systemtap/stap").function("equal_range@/usr/lib/gcc= /ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/tr1_impl/hashtable:= 839")? $this:class _Hashtable, std::allocator >, std::pair, std::allocator >, Dwarf_Die>, std::allocator, std::allocator >, Dwarf_Die> >, std::_Select1st, std::allocator >, Dwarf_Die> >, std::equal_to= , std::allocator > >, = std::tr1::hash, std::allocat= or > >, std::tr1::__detail::_Mod_range_hashing, std::tr1::__detail::_= Default_ranged_hash, std::tr1::__detail::_Prime_rehash_policy, false, false= , false>* const $__k:struct basic_string, std:= :allocator > const&=0D process("/home/prasadkr/systemtap/stap").function("erase@/usr/lib/gcc/ppc64= -redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/basic_string.h:1198"= )? $this:struct basic_string, std::allocator >* const=0D process("/home/prasadkr/systemtap/stap").function("erase@/usr/lib/gcc/ppc64= -redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/list.tcc:107")?=0D process("/home/prasadkr/systemtap/stap").function("erase@/usr/lib/gcc/ppc64= -redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_map.h:566")? $__= position:struct _Rb_tree_iterator, std::allocator >, functiondecl*> > $this:class= map, std::allocator >= , functiondecl*, std::less, = std::allocator > >, std::allocator, std::allocator >, functiondecl*> > >* c= onst=0D process("/home/prasadkr/systemtap/stap").function("erase@/usr/lib/gcc/ppc64= -redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_map.h:581")?=0D process("/home/prasadkr/systemtap/stap").function("erase@/usr/lib/gcc/ppc64= -redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_multimap.h:502")= ?=0D process("/home/prasadkr/systemtap/stap").function("erase@/usr/lib/gcc/ppc64= -redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_set.h:490")?=0D process("/home/prasadkr/systemtap/stap").function("erase@/usr/lib/gcc/ppc64= -redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_tree.h:1341")?=0D process("/home/prasadkr/systemtap/stap").function("erase@/usr/lib/gcc/ppc64= -redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_tree.h:1369")?=0D process("/home/prasadkr/systemtap/stap").function("erase@/usr/lib/gcc/ppc64= -redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_tree.h:1381")?=0D process("/home/prasadkr/systemtap/stap").function("erase@/usr/lib/gcc/ppc64= -redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/vector.tcc:133")?=0D process("/home/prasadkr/systemtap/stap").function("erase@/usr/lib/gcc/ppc64= -redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/vector.tcc:145")? $_= _last:class __normal_iterator, std::allocator >*, std::vector, std::allocator >, std::allocator, std::allocator > > > > $__first:class __norm= al_iterator, std::allocator<= char> >*, std::vector, std::= allocator >, std::allocator, std::allocator > > > > $this:class vector, std::allocator >, std::allocator, std::allocator > > >* const=0D process("/home/prasadkr/systemtap/stap").function("eval_comparison= @/home/prasadkr/systemtap/parse.cxx:296")? $lhs:int64_t const& $op:struct t= oken const* $rhs:int64_t const&=0D process("/home/prasadkr/systemtap/stap").function("eval_comparison@/home/prasadkr/systemtap/parse.cxx:296")? $lhs:string const& $op:struc= t token const* $rhs:string const&=0D process("/home/prasadkr/systemtap/stap").function("eval_pp_conditional@/hom= e/prasadkr/systemtap/parse.cxx:335")? $s:struct systemtap_session& $l:struc= t token const* $op:struct token const* $r:struct token const*=0D process("/home/prasadkr/systemtap/stap").function("exists@/home/prasadkr/sy= stemtap/translate.cxx:624")? $this:struct mapvar const* const $indices:clas= s vector > const&=0D process("/home/prasadkr/systemtap/stap").function("expand@/home/prasadkr/sy= stemtap/tapsets.cxx:2262")? $this:struct dwarf_pretty_print* const=0D process("/home/prasadkr/systemtap/stap").function("expect_ident@/home/prasa= dkr/systemtap/parse.cxx:761")? $this:class parser* const $target:string&=0D process("/home/prasadkr/systemtap/stap").function("expect_ident_or_keyword@= /home/prasadkr/systemtap/parse.cxx:768")? $this:class parser* const $target= :string&=0D process("/home/prasadkr/systemtap/stap").function("expect_known@/home/prasa= dkr/systemtap/parse.cxx:681")? $this:class parser* const $tt:enum token_typ= e $expected:string const&=0D process("/home/prasadkr/systemtap/stap").function("expect_kw@/home/prasadkr= /systemtap/parse.cxx:720")? $this:class parser* const $expected:string cons= t&=0D process("/home/prasadkr/systemtap/stap").function("expect_number@/home/pras= adkr/systemtap/parse.cxx:726")? $this:class parser* const $value:int64_t&=0D process("/home/prasadkr/systemtap/stap").function("expect_op@/home/prasadkr= /systemtap/parse.cxx:713")? $this:class parser* const $expected:string cons= t&=0D process("/home/prasadkr/systemtap/stap").function("expect_unknown2@/home/pr= asadkr/systemtap/parse.cxx:702")? $this:class parser* const $tt1:enum token= _type $tt2:enum token_type $target:string&=0D process("/home/prasadkr/systemtap/stap").function("expect_unknown@/home/pra= sadkr/systemtap/parse.cxx:691")? $this:class parser* const $tt:enum token_t= ype $target:string&=0D process("/home/prasadkr/systemtap/stap").function("expr_statement@/home/pra= sadkr/systemtap/staptree.h:598")?=0D process("/home/prasadkr/systemtap/stap").function("express_as_string@/home/= prasadkr/systemtap/dwflpp.cxx:2418")? $this:struct dwflpp* const $prelude:s= tring $postlude:string $head:struct location*=0D process("/home/prasadkr/systemtap/stap").function("expression@/home/prasadk= r/systemtap/staptree.cxx:28")?=0D process("/home/prasadkr/systemtap/stap").function("expression@/home/prasadk= r/systemtap/staptree.h:64")?=0D process("/home/prasadkr/systemtap/stap").function("expression_is_arrayindex= @/home/prasadkr/systemtap/translate.cxx:2599")? $e:struct expression* $hist= :struct arrayindex*&=0D process("/home/prasadkr/systemtap/stap").function("fail@/usr/lib/gcc/ppc64-= redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/basic_ios.h:191")? $t= his:struct basic_ios > const* const=0D process("/home/prasadkr/systemtap/stap").function("fetch_existing_aggregate= @/home/prasadkr/systemtap/translate.cxx:611")? $this:struct mapvar const* c= onst=0D process("/home/prasadkr/systemtap/stap").function("fgets@/usr/include/bits/= stdio2.h:245")?=0D process("/home/prasadkr/systemtap/stap").function("file_exists@/home/prasad= kr/systemtap/util.cxx:88")? $path:string const&=0D process("/home/prasadkr/systemtap/stap").function("fill@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/= stl_algobase.h:730")?=0D process("/home/prasadkr/systemtap/stap").function("fill, false>**, std::t= r1::__detail::_Hash_node, fal= se>*>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/b= its/stl_algobase.h:730")? $__last:struct _Hash_node, false>** $__first:struct _Hash_node, false>**=0D process("/home/prasadkr/systemtap/stap").function("fill >*>, false>**, std::tr1::__detail::_Hash_node >*>, false>*>@/usr/li= b/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_algob= ase.h:730")? $__last:struct _Hash_node >*>, false>** $__first:struct _Hash_no= de= >*>, false>**=0D process("/home/prasadkr/systemtap/stap").function("fill,= std::allocator >, Dwarf_Die>, false>**, std::tr1::__detail::_Hash_no= de, std::all= ocator >, Dwarf_Die>, false>*>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/= ../../../../include/c++/4.4.4/bits/stl_algobase.h:730")? $__last:struct _Ha= sh_node, std= ::allocator >, Dwarf_Die>, false>**=0D process("/home/prasadkr/systemtap/stap").function("fill, false>**, std::tr1::__detail= ::_Hash_node, false>*>@/usr/lib/gcc/ppc64= -redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h:730")= ? $__last:struct _Hash_node, false>** $__= first:struct _Hash_node, false>**=0D process("/home/prasadkr/systemtap/stap").function("fill, false>**, std::= tr1::__detail::_Hash_node, f= alse>*>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4= /bits/stl_algobase.h:730")? $__last:struct _Hash_node, false>** $__first:struct _Hash_node, false>**=0D process("/home/prasadkr/systemtap/stap").function("fill, false>**, std::tr= 1::__detail::_Hash_node, false= >*>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bit= s/stl_algobase.h:730")? $__last:struct _Hash_node, false>** $__first:struct _Hash_node, false>**=0D process("/home/prasadkr/systemtap/stap").function("fill, false>**, std::tr1::_= _detail::_Hash_node, false>*>@/usr= /lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_al= gobase.h:730")? $__last:struct _Hash_node, false>** $__first:struct _Hash_node, false>**=0D process("/home/prasadkr/systemtap/stap").function("fill >*>, false>**, std::tr1::__detail::_Hash_node >*>, false>*>@/usr/lib/= gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_algobas= e.h:730")? $__last:struct _Hash_node >*>, false>** $__first:struct _Hash_node<= std::pair >*>= , false>**=0D process("/home/prasadkr/systemtap/stap").function("fill@/usr/lib/gcc/ppc64-= redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/basic_ios.h:360")?=0D process("/home/prasadkr/systemtap/stap").function("fill@/usr/lib/gcc/ppc64-= redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/basic_ios.h:380")?=0D process("/home/prasadkr/systemtap/stap").function("fill_n@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../= include/c++/4.4.4/bits/stl_algobase.h:785")?=0D process("/home/prasadkr/systemtap/stap").function("fill_n@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../in= clude/c++/4.4.4/bits/stl_algobase.h:785")?=0D process("/home/prasadkr/systemtap/stap").function("fill_n@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../= ../../include/c++/4.4.4/bits/stl_algobase.h:785")? $__n:long unsigned int $= __first:struct probe_point**=0D process("/home/prasadkr/systemtap/stap").function("filter_special_modules@/= home/prasadkr/systemtap/tapsets.cxx:3616")? $this:struct dwarf_cast_expandi= ng_visitor* const $module:string&=0D process("/home/prasadkr/systemtap/stap").function("find<__gnu_cxx::__normal= _iterator > >,= stapfile*>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4= .4.4/bits/stl_algo.h:4216")?=0D process("/home/prasadkr/systemtap/stap").function("find@/usr/lib/gcc/ppc64-= redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/basic_string.h:1657")= ?=0D process("/home/prasadkr/systemtap/stap").function("find@/usr/lib/gcc/ppc64-= redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/basic_string.h:1671")= ?=0D process("/home/prasadkr/systemtap/stap").function("find@/usr/lib/gcc/ppc64-= redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_map.h:658")?=0D process("/home/prasadkr/systemtap/stap").function("find@/usr/lib/gcc/ppc64-= redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_map.h:673")?=0D process("/home/prasadkr/systemtap/stap").function("find@/usr/lib/gcc/ppc64-= redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_set.h:547")?=0D process("/home/prasadkr/systemtap/stap").function("find@/usr/lib/gcc/ppc64-= redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_set.h:551")?=0D process("/home/prasadkr/systemtap/stap").function("find@/usr/lib/gcc/ppc64-= redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_tree.h:1418")?=0D process("/home/prasadkr/systemtap/stap").function("find@/usr/lib/gcc/ppc64-= redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_tree.h:1431")?=0D process("/home/prasadkr/systemtap/stap").function("find@/usr/lib/gcc/ppc64-= redhat-linux/4.4.4/../../../../include/c++/4.4.4/tr1_impl/hashtable:780")?= =0D process("/home/prasadkr/systemtap/stap").function("find_and_build@/home/pra= sadkr/systemtap/elaborate.cxx:399")? $this:class match_node* const $s:struc= t systemtap_session& $p:struct probe* $loc:struct probe_point* $pos:unsigne= d int $results:class vector = >&=0D process("/home/prasadkr/systemtap/stap").function("find_debug_rpms@/home/pr= asadkr/systemtap/rpm_finder.cxx:227")? $sess:struct systemtap_session& $fil= ename:char const*=0D process("/home/prasadkr/systemtap/stap").function("find_devel_rpms@/home/pr= asadkr/systemtap/rpm_finder.cxx:237")? $sess:struct systemtap_session& $fil= ename:char const*=0D process("/home/prasadkr/systemtap/stap").function("find_executable@/home/pr= asadkr/systemtap/util.cxx:306")? $name:string const& $env_path:string const= &=0D process("/home/prasadkr/systemtap/stap").function("find_first_not_of@/usr/l= ib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/basic_st= ring.h:1881")? $__pos:size_t=0D process("/home/prasadkr/systemtap/stap").function("find_first_not_of@/usr/l= ib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/basic_st= ring.h:1910")? $this:struct basic_string, std:= :allocator > const* const=0D process("/home/prasadkr/systemtap/stap").function("find_first_of@/usr/lib/g= cc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/basic_string= .h:1759")?=0D process("/home/prasadkr/systemtap/stap").function("find_first_of@/usr/lib/g= cc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/basic_string= .h:1787")? $__pos:size_t $this:struct basic_string, std::allocator > const* const=0D process("/home/prasadkr/systemtap/stap").function("find_function@/home/pras= adkr/systemtap/elaborate.cxx:1945")? $this:struct symresolution_info* const= $name:string const& $arity:unsigned int=0D process("/home/prasadkr/systemtap/stap").function("find_last_not_of@/usr/li= b/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/basic_str= ing.h:1969")? $this:struct basic_string, std::= allocator > const* const=0D process("/home/prasadkr/systemtap/stap").function("find_last_of@/usr/lib/gc= c/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/basic_string.= h:1867")?=0D process("/home/prasadkr/systemtap/stap").function("find_script_hash@/home/p= rasadkr/systemtap/hash.cxx:219")? $s:struct systemtap_session& $script:stri= ng const&=0D process("/home/prasadkr/systemtap/stap").function("find_stapconf_hash@/home= /prasadkr/systemtap/hash.cxx:302")? $s:struct systemtap_session&=0D process("/home/prasadkr/systemtap/stap").function("find_struct_member@/home= /prasadkr/systemtap/dwflpp.cxx:2039")? $this:struct dwflpp* const $c:struct= component const& $parentdie:struct Dwarf_Die* $memberdie:struct Dwarf_Die*= $dies:class vector >& $locs:class vec= tor >&=0D process("/home/prasadkr/systemtap/stap").function("find_tracequery_hash@/ho= me/prasadkr/systemtap/hash.cxx:324")? $s:struct systemtap_session& $headers= :class vector, std::allocato= r >, std::allocator, s= td::allocator > > > const&=0D process("/home/prasadkr/systemtap/stap").function("find_typequery_hash@/hom= e/prasadkr/systemtap/hash.cxx:349")? $s:struct systemtap_session& $name:str= ing const&=0D process("/home/prasadkr/systemtap/stap").function("find_var@/home/prasadkr/= systemtap/elaborate.cxx:1873")? $this:struct symresolution_info* const $nam= e:string const& $arity:int $tok:struct token const*=0D process("/home/prasadkr/systemtap/stap").function("find_variable_and_frame_= base@/home/prasadkr/systemtap/dwflpp.cxx:1822")? $this:struct dwflpp* const= $scopes:class vector >& $pc:Dwarf_Add= r $local:string const& $e:struct target_symbol const* $vardie:struct Dwarf_= Die* $fb_attr_mem:struct Dwarf_Attribute*=0D process("/home/prasadkr/systemtap/stap").function("find_vdso@/home/prasadkr= /systemtap/translate.cxx:5524")? $path:char const* $status:struct stat cons= t* $type:int=0D process("/home/prasadkr/systemtap/stap").function("fini@/home/prasadkr/syst= emtap/translate.cxx:435")?=0D process("/home/prasadkr/systemtap/stap").function("fini@/home/prasadkr/syst= emtap/translate.cxx:738")?=0D process("/home/prasadkr/systemtap/stap").function("finish@/home/prasadkr/sy= stemtap/remote.cxx:200")? $this:class ssh_remote* const=0D process("/home/prasadkr/systemtap/stap").function("finish@/home/prasadkr/sy= stemtap/remote.cxx:87")? $this:class direct* const=0D process("/home/prasadkr/systemtap/stap").function("flags@/usr/lib/gcc/ppc64= -redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/ios_base.h:566")? $_= _fmtfl:fmtflags=0D process("/home/prasadkr/systemtap/stap").function("flush >@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/= 4.4.4/ostream:559")?=0D process("/home/prasadkr/systemtap/stap").function("focus_on_cu@/home/prasad= kr/systemtap/dwflpp.cxx:180")? $this:struct dwflpp* const $c:struct Dwarf_D= ie*=0D process("/home/prasadkr/systemtap/stap").function("focus_on_function@/home/= prasadkr/systemtap/dwflpp.cxx:201")? $this:struct dwflpp* const $f:struct D= warf_Die*=0D process("/home/prasadkr/systemtap/stap").function("focus_on_module@/home/pr= asadkr/systemtap/dwflpp.cxx:150")? $this:struct dwflpp* const $m:Dwfl_Modul= e* $mi:struct module_info*=0D process("/home/prasadkr/systemtap/stap").function("for_loop@/home/prasadkr/= systemtap/staptree.h:563")?=0D process("/home/prasadkr/systemtap/stap").function("foreach_loop@/home/prasa= dkr/systemtap/staptree.h:574")?=0D process("/home/prasadkr/systemtap/stap").function("format_component@/home/p= rasadkr/systemtap/staptree.h:376")?=0D process("/home/prasadkr/systemtap/stap").function("fprintf@/usr/include/bit= s/stdio2.h:96")?=0D process("/home/prasadkr/systemtap/stap").function("front@/usr/lib/gcc/ppc64= -redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_vector.h:679")?= =0D process("/home/prasadkr/systemtap/stap").function("fstat@/usr/include/sys/s= tat.h:469")?=0D process("/home/prasadkr/systemtap/stap").function("func_info@/home/prasadkr= /systemtap/dwflpp.h:129")?=0D process("/home/prasadkr/systemtap/stap").function("func_info@/home/prasadkr= /systemtap/dwflpp.h:130")?=0D process("/home/prasadkr/systemtap/stap").function("func_is_inline@/home/pra= sadkr/systemtap/dwflpp.cxx:434")? $this:struct dwflpp* const=0D process("/home/prasadkr/systemtap/stap").function("function_die@/home/prasa= dkr/systemtap/dwflpp.cxx:1602")? $this:struct dwflpp* const $d:struct Dwarf= _Die*=0D process("/home/prasadkr/systemtap/stap").function("function_entrypc@/home/p= rasadkr/systemtap/dwflpp.cxx:1534")? $this:struct dwflpp* const $addr:Dwarf= _Addr*=0D process("/home/prasadkr/systemtap/stap").function("function_file@/home/pras= adkr/systemtap/dwflpp.cxx:1610")? $this:struct dwflpp* const $c:char const*= *=0D process("/home/prasadkr/systemtap/stap").function("function_line@/home/pras= adkr/systemtap/dwflpp.cxx:1619")? $this:struct dwflpp* const $linep:int*=0D process("/home/prasadkr/systemtap/stap").function("function_name_matches@/h= ome/prasadkr/systemtap/dwflpp.cxx:274")? $this:struct dwflpp* const $patter= n:string const&=0D process("/home/prasadkr/systemtap/stap").function("function_name_matches_pa= ttern@/home/prasadkr/systemtap/dwflpp.cxx:262")? $this:struct dwflpp* const= $name:string const& $pattern:string const&=0D process("/home/prasadkr/systemtap/stap").function("function_scope_matches@/= home/prasadkr/systemtap/dwflpp.cxx:282")? $this:struct dwflpp* const $scope= s:class vector, std::allocat= or >, std::allocator, = std::allocator > > > const&=0D process("/home/prasadkr/systemtap/stap").function("functioncall@/home/prasa= dkr/systemtap/staptree.cxx:74")? $this:struct functioncall* const=0D process("/home/prasadkr/systemtap/stap").function("functioncall@/home/prasa= dkr/systemtap/staptree.h:317")?=0D process("/home/prasadkr/systemtap/stap").function("functioncall_traversing_= visitor@/home/prasadkr/systemtap/staptree.h:829")?=0D process("/home/prasadkr/systemtap/stap").function("functiondecl@/home/prasa= dkr/systemtap/staptree.cxx:194")? $this:struct functiondecl* const=0D process("/home/prasadkr/systemtap/stap").function("gen_kretprobe_saved_retu= rn@/home/prasadkr/systemtap/tapsets.cxx:3008")? $this:struct dwarf_var_expa= nding_visitor* const $e:struct expression*=0D process("/home/prasadkr/systemtap/stap").function("gen_mapped_saved_return@= /home/prasadkr/systemtap/tapsets.cxx:2764")? $this:struct dwarf_var_expandi= ng_visitor* const $e:struct expression* $name:string const&=0D process("/home/prasadkr/systemtap/stap").function("generic_dpg@/home/prasad= kr/systemtap/tapsets.h:41")?=0D process("/home/prasadkr/systemtap/stap").function("gensym@/home/prasadkr/sy= stemtap/translate.cxx:2287")? $this:struct c_unparser* const $ty:enum exp_t= ype=0D process("/home/prasadkr/systemtap/stap").function("gensym_aggregate@/home/p= rasadkr/systemtap/translate.cxx:2293")? $this:struct c_unparser* const=0D process("/home/prasadkr/systemtap/stap").function("get@/home/prasadkr/syste= mtap/translate.cxx:635")? $this:struct mapvar const* const $indices:class v= ector > const& $pre_agg:bool=0D process("/home/prasadkr/systemtap/stap").function("get_alias@/home/prasadkr= /systemtap/elaborate.cxx:625")? $this:struct alias_derived_probe const* con= st=0D process("/home/prasadkr/systemtap/stap").function("get_alias@/home/prasadkr= /systemtap/staptree.h:709")? $this:struct probe const* const=0D process("/home/prasadkr/systemtap/stap").function("get_all_server_info@/hom= e/prasadkr/systemtap/csclient.cxx:2109")? $s:struct systemtap_session& $ser= vers:class vector = >&=0D process("/home/prasadkr/systemtap/stap").function("get_base_hash@/home/pras= adkr/systemtap/hash.cxx:136")? $s:struct systemtap_session&=0D process("/home/prasadkr/systemtap/stap").function("get_bitfield@/home/prasa= dkr/systemtap/loc2c.c:1815")? $loc:struct location* $die:Dwarf_Die* $bit_of= fset:Dwarf_Word* $bit_size:Dwarf_Word* $attr_mem:Dwarf_Attribute=0D process("/home/prasadkr/systemtap/stap").function("get_blacklist_section@/h= ome/prasadkr/systemtap/dwflpp.cxx:3005")? $this:struct dwflpp* const $addr:= Dwarf_Addr=0D process("/home/prasadkr/systemtap/stap").function("get_cfa_ops@/home/prasad= kr/systemtap/dwflpp.cxx:3136")? $this:struct dwflpp* const $pc:Dwarf_Addr=0D process("/home/prasadkr/systemtap/stap").function("get_default_server_info@= /home/prasadkr/systemtap/csclient.cxx:2120")? $s:struct systemtap_session& = $servers:class vector >&=0D process("/home/prasadkr/systemtap/stap").function("get_die_parents@/home/pr= asadkr/systemtap/dwflpp.cxx:564")? $this:struct dwflpp* const=0D process("/home/prasadkr/systemtap/stap").function("get_file_size@/home/pras= adkr/systemtap/util.cxx:64")? $path:string const&=0D process("/home/prasadkr/systemtap/stap").function("get_file_size@/home/pras= adkr/systemtap/util.cxx:76")? $fd:int=0D process("/home/prasadkr/systemtap/stap").function("get_file_weight@/home/pr= asadkr/systemtap/cache.cxx:366")? $path:string const&=0D process("/home/prasadkr/systemtap/stap").function("get_filtered_functions@/= home/prasadkr/systemtap/tapsets.cxx:778")? $q:struct dwarf_query*=0D process("/home/prasadkr/systemtap/stap").function("get_filtered_inlines@/ho= me/prasadkr/systemtap/tapsets.cxx:785")? $q:struct dwarf_query*=0D process("/home/prasadkr/systemtap/stap").function("get_foreach_loop_value@/= home/prasadkr/systemtap/translate.cxx:2669")? $this:struct c_unparser* cons= t $ai:struct arrayindex* $value:string&=0D process("/home/prasadkr/systemtap/stap").function("get_from_elf@/home/prasa= dkr/systemtap/tapsets.cxx:6317")? $this:struct symbol_table* const=0D process("/home/prasadkr/systemtap/stap").function("get_func_containing_addr= ess@/home/prasadkr/systemtap/tapsets.cxx:6337")? $this:struct symbol_table*= const $addr:Dwarf_Addr=0D process("/home/prasadkr/systemtap/stap").function("get_functionsig@/home/pr= asadkr/systemtap/elaborate.cxx:3594")?=0D process("/home/prasadkr/systemtap/stap").function("get_hist@/home/prasadkr/= systemtap/translate.cxx:531")? $index:class var& $this:struct aggvar const*= const=0D process("/home/prasadkr/systemtap/stap").function("get_home_directory@/home= /prasadkr/systemtap/util.cxx:47")?=0D process("/home/prasadkr/systemtap/stap").function("get_kern_dw@/home/prasad= kr/systemtap/tapsets.cxx:699")? $module:string const& $sess:struct systemta= p_session& $this:struct dwarf_builder* const=0D process("/home/prasadkr/systemtap/stap").function("get_key@/home/prasadkr/s= ystemtap/translate.cxx:802")? $this:class itervar const* const $ty:enum exp= _type $i:unsigned int=0D process("/home/prasadkr/systemtap/stap").function("get_literal@/home/prasad= kr/systemtap/elaborate.cxx:3050")? $this:struct const_folder* const $e:stru= ct expression*& $n:struct literal_number*& $s:struct literal_string*&=0D process("/home/prasadkr/systemtap/stap").function("get_module_dwarf@/home/p= rasadkr/systemtap/dwflpp.cxx:121")? $this:struct dwflpp* const $required:bo= ol $report:bool=0D process("/home/prasadkr/systemtap/stap").function("get_number@/home/prasadk= r/systemtap/elaborate.cxx:3060")? $this:struct const_folder* const $e:struc= t expression*&=0D process("/home/prasadkr/systemtap/stap").function("get_number_param@/home/p= rasadkr/systemtap/tapsets.cxx:581")? $params:literal_map_t const& $k:string= const& $v:long int&=0D process("/home/prasadkr/systemtap/stap").function("get_number_param@/home/p= rasadkr/systemtap/tapsets.cxx:592")? $params:literal_map_t const& $k:string= const& $v:Dwarf_Addr&=0D process("/home/prasadkr/systemtap/stap").function("get_or_keep_compatible_s= erver_info@/home/prasadkr/systemtap/csclient.cxx:2508")? $keep:bool $server= s:class vector >& = $s:struct systemtap_session&=0D process("/home/prasadkr/systemtap/stap").function("get_or_keep_online_serve= r_info@/home/prasadkr/systemtap/csclient.cxx:2842")? $s:struct systemtap_se= ssion& $servers:class vector >& $keep:bool=0D process("/home/prasadkr/systemtap/stap").function("get_or_keep_signing_serv= er_info@/home/prasadkr/systemtap/csclient.cxx:2322")? $s:struct systemtap_s= ession& $servers:class vector >& $keep:bool=0D process("/home/prasadkr/systemtap/stap").function("get_or_keep_trusted_serv= er_info@/home/prasadkr/systemtap/csclient.cxx:2272")? $s:struct systemtap_s= ession& $servers:class vector >& $keep:bool=0D process("/home/prasadkr/systemtap/stap").function("get_param@/home/prasadkr= /systemtap/elaborate.cxx:212")? $params:class map, std::allocator >, literal*, std::less, std::allocator > >, std::allo= cator, std::= allocator >, literal*> > > const& $key:string const& $value:string&=0D process("/home/prasadkr/systemtap/stap").function("get_param@/home/prasadkr= /systemtap/elaborate.cxx:228")? $params:class map, std::allocator >, literal*, std::less, std::allocator > >, std::allo= cator, std::= allocator >, literal*> > > const& $key:string const& $value:int64_t&= =0D process("/home/prasadkr/systemtap/stap").function("get_parent_scope@/home/p= rasadkr/systemtap/dwflpp.cxx:689")? $this:struct dwflpp* const $die:struct = Dwarf_Die*=0D process("/home/prasadkr/systemtap/stap").function("get_parms@/home/prasadkr= /systemtap/hash.cxx:61")? $this:struct hash* const=0D process("/home/prasadkr/systemtap/stap").function("get_script_from_cache@/h= ome/prasadkr/systemtap/cache.cxx:135")? $s:struct systemtap_session&=0D process("/home/prasadkr/systemtap/stap").function("get_section@/home/prasad= kr/systemtap/dwflpp.cxx:3048")? $this:struct dwflpp* const $section_name:st= ring $shdr_mem:GElf_Shdr* $elf_ret:Elf**=0D process("/home/prasadkr/systemtap/stap").function("get_server_info@/home/pr= asadkr/systemtap/csclient.cxx:2061")? $s:struct systemtap_session& $pmask:i= nt $servers:class vector >&=0D process("/home/prasadkr/systemtap/stap").function("get_session@/home/prasad= kr/systemtap/remote.h:25")?=0D process("/home/prasadkr/systemtap/stap").function("get_specified_server_inf= o@/home/prasadkr/systemtap/csclient.cxx:2142")? $s:struct systemtap_session= & $servers:class vector >& $no_default:bool=0D process("/home/prasadkr/systemtap/stap").function("get_stapconf_from_cache@= /home/prasadkr/systemtap/cache.cxx:100")? $s:struct systemtap_session&=0D process("/home/prasadkr/systemtap/stap").function("get_string@/home/prasadk= r/systemtap/elaborate.cxx:3074")? $this:struct const_folder* const $e:struc= t expression*&=0D process("/home/prasadkr/systemtap/stap").function("get_string_param@/home/p= rasadkr/systemtap/tapsets.cxx:573")?=0D process("/home/prasadkr/systemtap/stap").function("get_symbol_within_expres= sion@/home/prasadkr/systemtap/elaborate.cxx:870")? $e:struct expression*=0D process("/home/prasadkr/systemtap/stap").function("get_symbol_within_indexa= ble@/home/prasadkr/systemtap/elaborate.cxx:879")? $ix:struct indexable*=0D process("/home/prasadkr/systemtap/stap").function("get_symtab@/home/prasadk= r/systemtap/tapsets.cxx:6396")? $this:struct module_info* const $q:struct d= warf_query*=0D process("/home/prasadkr/systemtap/stap").function("get_tok@/home/prasadkr/s= ystemtap/staptree.cxx:1534")? $this:struct symbol const* const=0D process("/home/prasadkr/systemtap/stap").function("get_tok@/home/prasadkr/s= ystemtap/staptree.cxx:1554")? $this:struct hist_op const* const=0D process("/home/prasadkr/systemtap/stap").function("get_tracequery_module@/h= ome/prasadkr/systemtap/tapsets.cxx:8532")? $this:struct tracepoint_builder*= const $s:struct systemtap_session& $headers:class vector, std::allocator >, std::allocator, std::allocator > > > const= &=0D process("/home/prasadkr/systemtap/stap").function("get_uname@/home/prasadkr= /systemtap/remote.cxx:126")? $this:class ssh_remote* const=0D process("/home/prasadkr/systemtap/stap").function("get_unwind_data@/home/pr= asadkr/systemtap/translate.cxx:4774")?=0D process("/home/prasadkr/systemtap/stap").function("get_user_dw@/home/prasad= kr/systemtap/tapsets.cxx:706")?=0D process("/home/prasadkr/systemtap/stap").function("get_value@/home/prasadkr= /systemtap/translate.cxx:818")? $this:class itervar const* const $ty:enum e= xp_type=0D process("/home/prasadkr/systemtap/stap").function("getargs@/home/prasadkr/s= ystemtap/elaborate.h:138")? $this:struct derived_probe const* const $arg_se= t:class list, std::allocator= >, std::allocator, st= d::allocator > > >&=0D process("/home/prasadkr/systemtap/stap").function("getargs@/home/prasadkr/s= ystemtap/tapset-mark.cxx:459")? $this:struct mark_derived_probe const* cons= t $arg_set:class list, std::= allocator >, std::allocator, std::allocator > > >&=0D process("/home/prasadkr/systemtap/stap").function("getargs@/home/prasadkr/s= ystemtap/tapsets.cxx:4044")? $this:struct dwarf_derived_probe const* const = $arg_set:class list, std::al= locator >, std::allocator, std::allocator > > >&=0D process("/home/prasadkr/systemtap/stap").function("getargs@/home/prasadkr/s= ystemtap/tapsets.cxx:6538")? $this:struct uprobe_derived_probe const* const= $arg_set:class list, std::a= llocator >, std::allocator, std::allocator > > >&=0D process("/home/prasadkr/systemtap/stap").function("getargs@/home/prasadkr/s= ystemtap/tapsets.cxx:8202")? $this:struct tracepoint_derived_probe const* c= onst $arg_set:class list, st= d::allocator >, std::allocator, std::allocator > > >&=0D process("/home/prasadkr/systemtap/stap").function("getcwd@/usr/include/bits= /unistd.h:201")? $__size:size_t $__buf:char*=0D process("/home/prasadkr/systemtap/stap").function("getgroups@/usr/include/b= its/unistd.h:266")? $__list:__gid_t*=0D process("/home/prasadkr/systemtap/stap").function("getiter@/home/prasadkr/s= ystemtap/translate.cxx:2333")? $this:struct c_unparser* const $s:struct sym= bol*=0D process("/home/prasadkr/systemtap/stap").function("getline, std::allocator >@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/= ../../../../include/c++/4.4.4/bits/basic_string.h:2538")? $__str:struct bas= ic_string, std::allocator >& $__is:struc= t basic_istream >&=0D process("/home/prasadkr/systemtap/stap").function("getline@/usr/lib/gcc/ppc= 64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/istream:405")?=0D process("/home/prasadkr/systemtap/stap").function("getmap@/home/prasadkr/sy= stemtap/translate.cxx:2318")? $this:struct c_unparser* const $v:struct vard= ecl* $tok:struct token const*=0D process("/home/prasadkr/systemtap/stap").function("getmemusage@/home/prasad= kr/systemtap/util.cxx:262")?=0D process("/home/prasadkr/systemtap/stap").function("getscopes@/home/prasadkr= /systemtap/dwflpp.cxx:612")? $this:struct dwflpp* const $die:struct Dwarf_D= ie*=0D process("/home/prasadkr/systemtap/stap").function("getscopes@/home/prasadkr= /systemtap/dwflpp.cxx:656")? $this:struct dwflpp* const $pc:Dwarf_Addr=0D process("/home/prasadkr/systemtap/stap").function("getscopes@/home/prasadkr= /systemtap/tapsets.cxx:3415")? $this:struct dwarf_var_expanding_visitor* co= nst $e:struct target_symbol*=0D process("/home/prasadkr/systemtap/stap").function("getscopes_die@/home/pras= adkr/systemtap/dwflpp.cxx:582")? $this:struct dwflpp* const $die:struct Dwa= rf_Die*=0D process("/home/prasadkr/systemtap/stap").function("getvar@/home/prasadkr/sy= stemtap/translate.cxx:2300")? $this:struct c_unparser* const $v:struct vard= ecl* $tok:struct token const*=0D process("/home/prasadkr/systemtap/stap").function("git_revision@/home/prasa= dkr/systemtap/util.cxx:397")? $path:string const&=0D process("/home/prasadkr/systemtap/stap").function("global_alias_caching_cal= lback@/home/prasadkr/systemtap/dwflpp.cxx:733")? $die:struct Dwarf_Die* $ar= g:void*=0D process("/home/prasadkr/systemtap/stap").function("global_alias_caching_cal= lback_cus@/home/prasadkr/systemtap/dwflpp.cxx:749")? $die:struct Dwarf_Die*= $arg:void*=0D process("/home/prasadkr/systemtap/stap").function("globmatch@/home/prasadkr= /systemtap/elaborate.cxx:334")? $this:struct match_key const* const $other:= struct match_key const&=0D process("/home/prasadkr/systemtap/stap").function("handle_interrupt@/home/p= rasadkr/systemtap/main.cxx:254")? $sig:int=0D process("/home/prasadkr/systemtap/stap").function("handle_probe_entry@/home= /prasadkr/systemtap/tapsets.cxx:5324")? $this:struct sdt_query* const=0D process("/home/prasadkr/systemtap/stap").function("handle_query_cu@/home/pr= asadkr/systemtap/tapsets.cxx:8452")? $this:struct tracepoint_query* const $= cudie:struct Dwarf_Die*=0D process("/home/prasadkr/systemtap/stap").function("handle_query_func@/home/= prasadkr/systemtap/tapsets.cxx:8463")? $this:struct tracepoint_query* const= $func:struct Dwarf_Die*=0D process("/home/prasadkr/systemtap/stap").function("handle_query_module@/hom= e/prasadkr/systemtap/tapsets.cxx:3465")? $this:struct dwarf_cast_query* con= st=0D process("/home/prasadkr/systemtap/stap").function("handle_query_module@/hom= e/prasadkr/systemtap/tapsets.cxx:5439")? $this:struct sdt_query* const=0D process("/home/prasadkr/systemtap/stap").function("handle_query_module@/hom= e/prasadkr/systemtap/tapsets.cxx:8444")? $this:struct tracepoint_query* con= st=0D process("/home/prasadkr/systemtap/stap").function("handle_query_module@/hom= e/prasadkr/systemtap/tapsets.cxx:923")? $this:struct dwarf_query* const=0D process("/home/prasadkr/systemtap/stap").function("has_index@/home/prasadkr= /systemtap/coveragedb.cxx:119")? $db:sqlite3* $index:char const*=0D process("/home/prasadkr/systemtap/stap").function("has_null_param@/home/pra= sadkr/systemtap/elaborate.cxx:246")? $params:class map, std::allocator >, literal*, std::less, std::allocator > >, std:= :allocator, = std::allocator >, literal*> > > const& $key:string const&=0D process("/home/prasadkr/systemtap/stap").function("has_null_param@/home/pra= sadkr/systemtap/tapsets.cxx:565")? $k:string const&=0D process("/home/prasadkr/systemtap/stap").function("has_single_line_record@/= home/prasadkr/systemtap/dwflpp.cxx:1071")? $this:struct dwflpp* const $q:st= ruct dwarf_query* $srcfile:char const* $lineno:int=0D process("/home/prasadkr/systemtap/stap").function("has_table@/home/prasadkr= /systemtap/coveragedb.cxx:96")? $db:sqlite3* $table:char const*=0D process("/home/prasadkr/systemtap/stap").function("hash@/home/prasadkr/syst= emtap/hash.cxx:47")?=0D process("/home/prasadkr/systemtap/stap").function("hash@/home/prasadkr/syst= emtap/hash.cxx:48")? $this:struct hash* const=0D process("/home/prasadkr/systemtap/stap").function("have_debuginfo_uprobe@/h= ome/prasadkr/systemtap/tapsets.cxx:5291")?=0D process("/home/prasadkr/systemtap/stap").function("have_debuginfoless_uprob= e@/home/prasadkr/systemtap/tapsets.cxx:5295")? $this:struct sdt_query* cons= t=0D process("/home/prasadkr/systemtap/stap").function("have_kprobe@/home/prasad= kr/systemtap/tapsets.cxx:5290")?=0D process("/home/prasadkr/systemtap/stap").function("have_uprobe@/home/prasad= kr/systemtap/tapsets.cxx:5289")?=0D process("/home/prasadkr/systemtap/stap").function("hex@/usr/lib/gcc/ppc64-r= edhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/ios_base.h:945")?=0D process("/home/prasadkr/systemtap/stap").function("hist@/home/prasadkr/syst= emtap/translate.cxx:369")? $this:class var const* const=0D process("/home/prasadkr/systemtap/stap").function("hist@/home/prasadkr/syst= emtap/translate.cxx:687")? $this:struct mapvar const* const=0D process("/home/prasadkr/systemtap/stap").function("hist_op@/home/prasadkr/s= ystemtap/staptree.h:448")?=0D process("/home/prasadkr/systemtap/stap").function("histogram_index_check@/h= ome/prasadkr/systemtap/translate.cxx:3888")? $this:struct c_unparser const*= const $base:class var& $idx:struct tmpvar&=0D process("/home/prasadkr/systemtap/stap").function("hrtimer_derived_probe@/h= ome/prasadkr/systemtap/tapset-timers.cxx:192")? $this:struct hrtimer_derive= d_probe* const $p:struct probe* $l:struct probe_point* $i:int64_t $r:int64_= t $scale:int64_t=0D process("/home/prasadkr/systemtap/stap").function("hrtimer_derived_probe_gr= oup@/home/prasadkr/systemtap/tapset-timers.cxx:218")?=0D process("/home/prasadkr/systemtap/stap").function("hwbkpt_builder@/home/pra= sadkr/systemtap/tapsets.cxx:7698")?=0D process("/home/prasadkr/systemtap/stap").function("hwbkpt_derived_probe@/ho= me/prasadkr/systemtap/tapsets.cxx:7460")? $this:struct hwbkpt_derived_probe= * const $base:struct probe* $location:struct probe_point* $addr:uint64_t $s= ymname:string $len:unsigned int $has_only_read_access:bool $has_only_write_= access:bool $has_rw_access:bool=0D process("/home/prasadkr/systemtap/stap").function("hwbkpt_derived_probe_gro= up@/home/prasadkr/systemtap/tapsets.cxx:7449")?=0D process("/home/prasadkr/systemtap/stap").function("if_statement@/home/prasa= dkr/systemtap/staptree.h:606")?=0D process("/home/prasadkr/systemtap/stap").function("in_group_id@/home/prasad= kr/systemtap/util.cxx:229")? $target_gid:gid_t=0D process("/home/prasadkr/systemtap/stap").function("in_kprobes_function@/hom= e/prasadkr/systemtap/dwflpp.cxx:2784")? $addr:Dwarf_Addr $sess:struct syste= mtap_session&=0D process("/home/prasadkr/systemtap/stap").function("increment_element@/home/= prasadkr/systemtap/coveragedb.cxx:171")? $db:sqlite3* $x:class coverage_ele= ment&=0D process("/home/prasadkr/systemtap/stap").function("indent@/home/prasadkr/sy= stemtap/translate.cxx:884")? $this:class translator_output* const $indent:i= nt=0D process("/home/prasadkr/systemtap/stap").function("indexable@/home/prasadkr= /systemtap/staptree.h:191")?=0D process("/home/prasadkr/systemtap/stap").function("init@/home/prasadkr/syst= emtap/translate.cxx:383")? $this:class var const* const=0D process("/home/prasadkr/systemtap/stap").function("init@/home/prasadkr/syst= emtap/translate.cxx:701")? $this:struct mapvar const* const=0D process("/home/prasadkr/systemtap/stap").function("init_dw@/home/prasadkr/s= ystemtap/tapsets.cxx:8592")? $this:struct tracepoint_builder* const $s:stru= ct systemtap_session&=0D process("/home/prasadkr/systemtap/stap").function("init_probe_scn@/home/pra= sadkr/systemtap/tapsets.cxx:5464")? $this:struct sdt_query* const=0D process("/home/prasadkr/systemtap/stap").function("init_try_server@/home/pr= asadkr/systemtap/session.cxx:1080")? $this:struct systemtap_session* const= =0D process("/home/prasadkr/systemtap/stap").function("init_ts@/home/prasadkr/s= ystemtap/tapsets.cxx:2245")? $this:struct dwarf_pretty_print* const $e:stru= ct target_symbol const&=0D process("/home/prasadkr/systemtap/stap").function("initialize_probe_context= _vars@/home/prasadkr/systemtap/elaborate.h:149")? $this:struct derived_prob= e* const=0D process("/home/prasadkr/systemtap/stap").function("initialize_probe_context= _vars@/home/prasadkr/systemtap/tapset-mark.cxx:420")? $this:struct mark_der= ived_probe* const $o:struct translator_output*=0D process("/home/prasadkr/systemtap/stap").function("inline_instance_info@/ho= me/prasadkr/systemtap/dwflpp.h:147")?=0D process("/home/prasadkr/systemtap/stap").function("inline_instance_info@/ho= me/prasadkr/systemtap/dwflpp.h:148")? $this:struct inline_instance_info* co= nst=0D process("/home/prasadkr/systemtap/stap").function("inner_die_containing_pc@= /home/prasadkr/systemtap/dwflpp.cxx:1638")? $this:struct dwflpp* const $sco= pe:struct Dwarf_Die& $addr:Dwarf_Addr $result:struct Dwarf_Die&=0D process("/home/prasadkr/systemtap/stap").function("input_get@/home/prasadkr= /systemtap/parse.cxx:847")?=0D process("/home/prasadkr/systemtap/stap").function("input_peek@/home/prasadk= r/systemtap/parse.cxx:838")?=0D process("/home/prasadkr/systemtap/stap").function("input_put@/home/prasadkr= /systemtap/parse.cxx:882")? $this:class lexer* const $chars:string const& $= t:struct token const*=0D process("/home/prasadkr/systemtap/stap").function("insert<__gnu_cxx::__norm= al_iterator= > > >@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/= bits/stl_vector.h:869")? $__last:class __normal_iterator > > $__first:class __normal_i= terator > >= $__position:class __normal_iterator > > $this:class vector >* const=0D process("/home/prasadkr/systemtap/stap").function("insert<__gnu_cxx::__norm= al_iterator > > >= @/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/s= tl_set.h:449")?=0D process("/home/prasadkr/systemtap/stap").function("insert, std::allocator > > >@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.= 4/bits/stl_list.h:1048")? $__last:struct _List_const_iterator, std::allocator > > $__first:struct= _List_const_iterator, std::= allocator > > $__position:struct _List_iterator, std::allocator > > $this:class list, std::allocator >, std::allo= cator, std::allocator = > > >* const=0D process("/home/prasadkr/systemtap/stap").function("insert, std::allocator<= char> > > >@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4= .4.4/bits/stl_set.h:449")? $__last:struct _Rb_tree_const_iterator, std::allocator > > $__first:st= ruct _Rb_tree_const_iterator= , std::allocator > > $this:class set, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > > >* const=0D process("/home/prasadkr/systemtap/stap").function("insert, std::allocator >, Dwarf_Die>, false, false> >@/usr/lib/gc= c/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/tr1_impl/hashtable= :1064")?=0D process("/home/prasadkr/systemtap/stap").function("insert@/usr/lib/gcc/ppc6= 4-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/basic_string.h:1071= ")?=0D process("/home/prasadkr/systemtap/stap").function("insert@/usr/lib/gcc/ppc6= 4-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/basic_string.h:1093= ")?=0D process("/home/prasadkr/systemtap/stap").function("insert@/usr/lib/gcc/ppc6= 4-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_map.h:499")?=0D process("/home/prasadkr/systemtap/stap").function("insert@/usr/lib/gcc/ppc6= 4-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_map.h:539")?=0D process("/home/prasadkr/systemtap/stap").function("insert@/usr/lib/gcc/ppc6= 4-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_multimap.h:437"= )?=0D process("/home/prasadkr/systemtap/stap").function("insert@/usr/lib/gcc/ppc6= 4-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_set.h:408")?=0D process("/home/prasadkr/systemtap/stap").function("insert@/usr/lib/gcc/ppc6= 4-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_set.h:435")?=0D process("/home/prasadkr/systemtap/stap").function("insert@/usr/lib/gcc/ppc6= 4-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_vector.h:850")?= $__x:enum exp_type const& $__n:size_t $__position:class __normal_iterator<= exp_type*, std::vector > > $this:class v= ector >* const=0D process("/home/prasadkr/systemtap/stap").function("insert@/usr/lib/gcc/ppc6= 4-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/vector.tcc:106")?=0D process("/home/prasadkr/systemtap/stap").function("insert@/usr/lib/gcc/ppc6= 4-redhat-linux/4.4.4/../../../../include/c++/4.4.4/tr1_impl/hashtable:418")= ?=0D process("/home/prasadkr/systemtap/stap").function("insert_loaded_modules@/h= ome/prasadkr/systemtap/session.cxx:1103")? $this:struct systemtap_session* = const=0D process("/home/prasadkr/systemtap/stap").function("invalid@/home/prasadkr/s= ystemtap/elaborate.cxx:4822")? $this:struct typeresolution_info* const $tok= :struct token const* $pe:enum exp_type=0D process("/home/prasadkr/systemtap/stap").function("is_active_lvalue@/home/p= rasadkr/systemtap/staptree.cxx:1586")? $this:struct visitor* const $e:struc= t expression*=0D process("/home/prasadkr/systemtap/stap").function("is_comma_dash@/home/pras= adkr/systemtap/setupdwfl.cxx:91")?=0D process("/home/prasadkr/systemtap/stap").function("is_const_hist_op@/home/p= rasadkr/systemtap/staptree.cxx:1513")? $this:struct indexable const* const = $hist_out:struct hist_op const*&=0D process("/home/prasadkr/systemtap/stap").function("is_const_hist_op@/home/p= rasadkr/systemtap/staptree.cxx:1547")? $this:struct hist_op const* const $h= ist_out:struct hist_op const*&=0D process("/home/prasadkr/systemtap/stap").function("is_const_symbol@/home/pr= asadkr/systemtap/staptree.cxx:1506")? $this:struct indexable const* const $= sym_out:struct symbol const*&=0D process("/home/prasadkr/systemtap/stap").function("is_const_symbol@/home/pr= asadkr/systemtap/staptree.cxx:1527")? $this:struct symbol const* const $sym= _out:struct symbol const*&=0D process("/home/prasadkr/systemtap/stap").function("is_empty@/home/prasadkr/= systemtap/staptree.h:384")? $this:struct format_component const* const=0D process("/home/prasadkr/systemtap/stap").function("is_hist_op@/home/prasadk= r/systemtap/staptree.cxx:1499")? $this:struct indexable* const $hist_out:st= ruct hist_op*&=0D process("/home/prasadkr/systemtap/stap").function("is_hist_op@/home/prasadk= r/systemtap/staptree.cxx:1540")? $this:struct hist_op* const $hist_out:stru= ct hist_op*&=0D process("/home/prasadkr/systemtap/stap").function("is_local@/home/prasadkr/= systemtap/translate.cxx:2248")? $this:struct c_unparser* const $r:struct va= rdecl const* $tok:struct token const*=0D process("/home/prasadkr/systemtap/stap").function("is_open@/usr/lib/gcc/ppc= 64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/fstream:222")? $this:st= ruct basic_filebuf > const* const=0D process("/home/prasadkr/systemtap/stap").function("is_open@/usr/lib/gcc/ppc= 64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/fstream:504")? $this:st= ruct basic_ifstream >* const=0D process("/home/prasadkr/systemtap/stap").function("is_symbol@/home/prasadkr= /systemtap/staptree.cxx:1492")? $this:struct indexable* const $sym_out:stru= ct symbol*&=0D process("/home/prasadkr/systemtap/stap").function("is_symbol@/home/prasadkr= /systemtap/staptree.cxx:1520")? $this:struct symbol* const $sym_out:struct = symbol*&=0D process("/home/prasadkr/systemtap/stap").function("is_user_module@/home/pra= sadkr/systemtap/setupdwfl.cxx:440")? $m:string const&=0D process("/home/prasadkr/systemtap/stap").function("isdoubleglob@/home/prasa= dkr/systemtap/elaborate.cxx:328")?=0D process("/home/prasadkr/systemtap/stap").function("isglob@/home/prasadkr/sy= stemtap/elaborate.cxx:322")? $str:string const&=0D process("/home/prasadkr/systemtap/stap").function("iter_swap<__gnu_cxx::__n= ormal_iterator > >, __gnu_cxx::__normal_iterator > > >@= /usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/st= l_algobase.h:117")? $__a:class __normal_iterator > >=0D process("/home/prasadkr/systemtap/stap").function("iter_swap<__gnu_cxx::__n= ormal_iterator > >, __gnu_cxx::__normal_iterator > > >@= /usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/st= l_algobase.h:99")?=0D process("/home/prasadkr/systemtap/stap").function("iterate_over_cus@/home/p= rasadkr/systemtap/dwflpp.cxx:397")? $this:struct dwflpp* const $callback:vo= id* $data:void*=0D process("/home/prasadkr/systemtap/stap").function("iterate_over_functions@/= home/prasadkr/systemtap/dwflpp.cxx:839")? $this:struct dwflpp* const $callb= ack:void* $q:struct base_query* $function:string const&=0D process("/home/prasadkr/systemtap/stap").function("iterate_over_globals@/ho= me/prasadkr/systemtap/dwflpp.cxx:977")? $cu_die:struct Dwarf_Die* $callback= :void* $data:void*=0D process("/home/prasadkr/systemtap/stap").function("iterate_over_inline_inst= ances@/home/prasadkr/systemtap/dwflpp.cxx:491")? $this:struct dwflpp* const= $callback:void* $data:void*=0D process("/home/prasadkr/systemtap/stap").function("iterate_over_labels@/hom= e/prasadkr/systemtap/dwflpp.cxx:1276")? $this:struct dwflpp* const $begin_d= ie:struct Dwarf_Die* $sym:string const& $function:string const& $q:struct d= warf_query* $callback:void*=0D process("/home/prasadkr/systemtap/stap").function("iterate_over_modules@/ho= me/prasadkr/systemtap/dwflpp.cxx:378")? $this:struct dwflpp* const $callbac= k:void* $data:struct base_query*=0D process("/home/prasadkr/systemtap/stap").function("iterate_over_notes@/home= /prasadkr/systemtap/dwflpp.cxx:1015")? $this:struct dwflpp* const $object:v= oid* $callback:void*=0D process("/home/prasadkr/systemtap/stap").function("iterate_over_probe_entri= es@/home/prasadkr/systemtap/tapsets.cxx:5592")? $this:struct sdt_query* con= st=0D process("/home/prasadkr/systemtap/stap").function("iterate_over_srcfile_lin= es@/home/prasadkr/systemtap/dwflpp.cxx:1128")? $this:struct dwflpp* const $= srcfile:char const* $lines:int* $need_single_match:bool $line_type:enum lin= e_t $callback:void* $func_pattern:string const& $data:void*=0D process("/home/prasadkr/systemtap/stap").function("iterate_single_function@= /home/prasadkr/systemtap/dwflpp.cxx:923")? $this:struct dwflpp* const $call= back:void* $q:struct base_query* $function:string const&=0D process("/home/prasadkr/systemtap/stap").function("itervar@/home/prasadkr/s= ystemtap/translate.cxx:760")?=0D process("/home/prasadkr/systemtap/stap").function("itrace_builder@/home/pra= sadkr/systemtap/tapset-itrace.cxx:96")?=0D process("/home/prasadkr/systemtap/stap").function("itrace_derived_probe@/ho= me/prasadkr/systemtap/tapset-itrace.cxx:71")? $this:struct itrace_derived_p= robe* const $s:struct systemtap_session& $p:struct probe* $l:struct probe_p= oint* $hp:bool $pn:string& $pd:int64_t $ss:int=0D process("/home/prasadkr/systemtap/stap").function("itrace_derived_probe_gro= up@/home/prasadkr/systemtap/tapset-itrace.cxx:62")? $this:struct itrace_der= ived_probe_group* const=0D process("/home/prasadkr/systemtap/stap").function("join@/home/prasadkr/syst= emtap/staptree.cxx:200")? $this:struct functiondecl* const $s:struct system= tap_session&=0D process("/home/prasadkr/systemtap/stap").function("join_group@/home/prasadk= r/systemtap/elaborate.cxx:623")? $this:struct alias_derived_probe* const=0D process("/home/prasadkr/systemtap/stap").function("join_group@/home/prasadk= r/systemtap/tapset-been.cxx:192")? $this:struct never_derived_probe* const= =0D process("/home/prasadkr/systemtap/stap").function("join_group@/home/prasadk= r/systemtap/tapset-been.cxx:99")? $this:struct be_derived_probe* const $s:s= truct systemtap_session&=0D process("/home/prasadkr/systemtap/stap").function("join_group@/home/prasadk= r/systemtap/tapset-itrace.cxx:84")? $this:struct itrace_derived_probe* cons= t $s:struct systemtap_session&=0D process("/home/prasadkr/systemtap/stap").function("join_group@/home/prasadk= r/systemtap/tapset-mark.cxx:390")? $this:struct mark_derived_probe* const $= s:struct systemtap_session&=0D process("/home/prasadkr/systemtap/stap").function("join_group@/home/prasadk= r/systemtap/tapset-perfmon.cxx:69")? $this:struct perf_derived_probe* const= $s:struct systemtap_session&=0D process("/home/prasadkr/systemtap/stap").function("join_group@/home/prasadk= r/systemtap/tapset-procfs.cxx:108")? $this:struct procfs_derived_probe* con= st $s:struct systemtap_session&=0D process("/home/prasadkr/systemtap/stap").function("join_group@/home/prasadk= r/systemtap/tapset-timers.cxx:228")? $this:struct hrtimer_derived_probe* co= nst $s:struct systemtap_session&=0D process("/home/prasadkr/systemtap/stap").function("join_group@/home/prasadk= r/systemtap/tapset-timers.cxx:398")? $this:struct profile_derived_probe* co= nst $s:struct systemtap_session&=0D process("/home/prasadkr/systemtap/stap").function("join_group@/home/prasadk= r/systemtap/tapset-timers.cxx:75")? $this:struct timer_derived_probe* const= $s:struct systemtap_session&=0D process("/home/prasadkr/systemtap/stap").function("join_group@/home/prasadk= r/systemtap/tapset-utrace.cxx:193")? $this:struct utrace_derived_probe* con= st $s:struct systemtap_session&=0D process("/home/prasadkr/systemtap/stap").function("join_group@/home/prasadk= r/systemtap/tapsets.cxx:3737")? $this:struct dwarf_derived_probe* const $s:= struct systemtap_session&=0D process("/home/prasadkr/systemtap/stap").function("join_group@/home/prasadk= r/systemtap/tapsets.cxx:6524")? $this:struct uprobe_derived_probe* const $s= :struct systemtap_session&=0D process("/home/prasadkr/systemtap/stap").function("join_group@/home/prasadk= r/systemtap/tapsets.cxx:6987")? $this:struct kprobe_derived_probe* const $s= :struct systemtap_session&=0D process("/home/prasadkr/systemtap/stap").function("join_group@/home/prasadk= r/systemtap/tapsets.cxx:7514")? $this:struct hwbkpt_derived_probe* const $s= :struct systemtap_session&=0D process("/home/prasadkr/systemtap/stap").function("join_group@/home/prasadk= r/systemtap/tapsets.cxx:8210")? $this:struct tracepoint_derived_probe* cons= t $s:struct systemtap_session&=0D process("/home/prasadkr/systemtap/stap").function("keep_common_server_info@= /home/prasadkr/systemtap/csclient.cxx:3011")? $info_to_keep:struct compile_= server_info const& $filtered_info:class vector >&=0D process("/home/prasadkr/systemtap/stap").function("keep_common_server_info@= /home/prasadkr/systemtap/csclient.cxx:3042")? $info_to_keep:class vector > const& $filtered_i= nfo:class vector >= &=0D process("/home/prasadkr/systemtap/stap").function("keep_server_info_with_ce= rt_and_port@/home/prasadkr/systemtap/csclient.cxx:2563")?=0D process("/home/prasadkr/systemtap/stap").function("kernel_built_uprobes@/ho= me/prasadkr/systemtap/buildrun.cxx:293")? $s:struct systemtap_session&=0D process("/home/prasadkr/systemtap/stap").function("key_typename@/home/prasa= dkr/systemtap/translate.cxx:1868")? $e:enum exp_type=0D process("/home/prasadkr/systemtap/stap").function("keysym@/home/prasadkr/sy= stemtap/translate.cxx:556")? $this:struct mapvar const* const=0D process("/home/prasadkr/systemtap/stap").function("kill_stap_spawn@/home/pr= asadkr/systemtap/util.cxx:540")? $sig:int=0D process("/home/prasadkr/systemtap/stap").function("kprobe_builder@/home/pra= sadkr/systemtap/tapsets.cxx:7344")?=0D process("/home/prasadkr/systemtap/stap").function("kprobe_derived_probe@/ho= me/prasadkr/systemtap/tapsets.cxx:6918")? $this:struct kprobe_derived_probe= * const $base:struct probe* $location:struct probe_point* $name:string cons= t& $stmt_addr:int64_t $has_return:bool $has_statement:bool $has_maxactive:b= ool $has_path:bool $has_library:bool $maxactive_val:long int $path:string c= onst& $library:string const&=0D process("/home/prasadkr/systemtap/stap").function("kprobe_derived_probe_gro= up@/home/prasadkr/systemtap/tapsets.cxx:6906")?=0D process("/home/prasadkr/systemtap/stap").function("last@/home/prasadkr/syst= emtap/parse.cxx:288")? $this:class parser* const=0D process("/home/prasadkr/systemtap/stap").function("length@/usr/lib/gcc/ppc6= 4-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/basic_string.h:634"= )?=0D process("/home/prasadkr/systemtap/stap").function("length@/usr/lib/gcc/ppc6= 4-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/char_traits.h:262")= ?=0D process("/home/prasadkr/systemtap/stap").function("lex_cast@/ho= me/prasadkr/systemtap/util.h:43")? $in:Dwarf_Word const&=0D process("/home/prasadkr/systemtap/stap").function("lex_cast<__pid_t>@/home/= prasadkr/systemtap/util.h:43")? $in:__pid_t const&=0D process("/home/prasadkr/systemtap/stap").function("lex_cast@/ho= me/prasadkr/systemtap/util.h:43")? $in:struct arrayindex const&=0D process("/home/prasadkr/systemtap/stap").function("lex_cast@/home/= prasadkr/systemtap/util.h:43")? $in:int64_t const&=0D process("/home/prasadkr/systemtap/stap").function("lex_cast@/home/p= rasadkr/systemtap/util.h:65")? $in:string const&=0D process("/home/prasadkr/systemtap/stap").function("lex_cast@/home/pras= adkr/systemtap/util.h:43")?=0D process("/home/prasadkr/systemtap/stap").function("lex_cast@/home/pras= adkr/systemtap/util.h:53")?=0D process("/home/prasadkr/systemtap/stap").function("lex_cast@/home= /prasadkr/systemtap/util.h:43")?=0D process("/home/prasadkr/systemtap/stap").function("lex_cast@/home= /prasadkr/systemtap/util.h:53")? $in:string const&=0D process("/home/prasadkr/systemtap/stap").function("lex_cast@/home/prasadkr/systemtap/util.h:53")? $in:string const&=0D process("/home/prasadkr/systemtap/stap").function("lex_cast@/hom= e/prasadkr/systemtap/util.h:53")? $in:string const&=0D process("/home/prasadkr/systemtap/stap").function("lex_cast@/home/prasadkr/systemtap/util.h:53")? $in:string const&=0D process("/home/prasadkr/systemtap/stap").function("lex_cast@/home/p= rasadkr/systemtap/util.h:43")?=0D process("/home/prasadkr/systemtap/stap").function("lex_cast, std::allocator > >@/home/prasadkr/sy= stemtap/util.h:43")? $in:struct basic_string, = std::allocator > const&=0D process("/home/prasadkr/systemtap/stap").function("lex_cast@/home/prasadkr/systemtap/util.h:43")? $in:struct component const= &=0D process("/home/prasadkr/systemtap/stap").function("lex_cast@/home/pr= asadkr/systemtap/util.h:43")? $in:struct token const&=0D process("/home/prasadkr/systemtap/stap").function("lex_cast@/home/= prasadkr/systemtap/util.h:73")? $in:string const&=0D process("/home/prasadkr/systemtap/stap").function("lex_cast@/= home/prasadkr/systemtap/util.h:43")?=0D process("/home/prasadkr/systemtap/stap").function("lex_cast@/= home/prasadkr/systemtap/util.h:53")? $in:string const&=0D process("/home/prasadkr/systemtap/stap").function("lex_cast_hex= @/home/prasadkr/systemtap/util.h:84")? $in:Dwarf_Addr const&=0D process("/home/prasadkr/systemtap/stap").function("lex_cast_hex@/home/= prasadkr/systemtap/util.h:84")? $in:int const&=0D process("/home/prasadkr/systemtap/stap").function("lex_cast_qstring@/home/prasadkr/systemtap/util.h:97")? $in:char const* const&=0D process("/home/prasadkr/systemtap/stap").function("lex_cast_qstring@/home/prasadkr/systemtap/util.h:97")? $in:struct probe_point const&=0D process("/home/prasadkr/systemtap/stap").function("lex_cast_qstring= @/home/prasadkr/systemtap/util.h:97")?=0D process("/home/prasadkr/systemtap/stap").function("lex_cast_qstring@/home/prasadkr/systemtap/util.h:97")? $in:struct source_loc const&=0D process("/home/prasadkr/systemtap/stap").function("lex_cast_qstring, std::allocator > >@/home/pra= sadkr/systemtap/util.h:108")?=0D process("/home/prasadkr/systemtap/stap").function("lex_cast_qstring@= /home/prasadkr/systemtap/util.h:97")? $in:struct token const&=0D process("/home/prasadkr/systemtap/stap").function("lexer@/home/prasadkr/sys= temtap/parse.cxx:789")? $this:class lexer* const $input:istream& $in:string= const& $s:struct systemtap_session&=0D process("/home/prasadkr/systemtap/stap").function("lexicographical_compare<= __gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > > >@/usr/lib/gcc/ppc64-redhat-li= nux/4.4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h:1015")?=0D process("/home/prasadkr/systemtap/stap").function("line@/home/prasadkr/syst= emtap/translate.cxx:893")?=0D process("/home/prasadkr/systemtap/stap").function("lineno@/home/prasadkr/sy= stemtap/dwarf_wrappers.h:87")?=0D process("/home/prasadkr/systemtap/stap").function("linesrc@/home/prasadkr/s= ystemtap/dwarf_wrappers.h:103")?=0D process("/home/prasadkr/systemtap/stap").function("list, std::allocator= > > >@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/= bits/stl_list.h:571")? $__first:struct _List_const_iterator, std::allocator > > $this:class list<= std::basic_string, std::allocator >, std= ::allocator, std::allocator<= char> > > >* const=0D process("/home/prasadkr/systemtap/stap").function("list@/usr/lib/gcc/ppc64-= redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_list.h:499")?=0D process("/home/prasadkr/systemtap/stap").function("literal@/home/prasadkr/s= ystemtap/staptree.h:77")?=0D process("/home/prasadkr/systemtap/stap").function("literal_number@/home/pra= sadkr/systemtap/staptree.cxx:211")? $this:struct literal_number* const $v:i= nt64_t $hex:bool=0D process("/home/prasadkr/systemtap/stap").function("literal_number@/home/pra= sadkr/systemtap/staptree.h:91")?=0D process("/home/prasadkr/systemtap/stap").function("literal_stmt_for_local@/= home/prasadkr/systemtap/dwflpp.cxx:2488")? $this:struct dwflpp* const $scop= es:class vector >& $pc:Dwarf_Addr $loc= al:string const& $e:struct target_symbol const* $lvalue:bool $ty:enum exp_t= ype&=0D process("/home/prasadkr/systemtap/stap").function("literal_stmt_for_pointer= @/home/prasadkr/systemtap/dwflpp.cxx:2690")? $this:struct dwflpp* const $st= art_typedie:struct Dwarf_Die* $e:struct target_symbol const* $lvalue:bool $= ty:enum exp_type&=0D process("/home/prasadkr/systemtap/stap").function("literal_stmt_for_return@= /home/prasadkr/systemtap/dwflpp.cxx:2595")? $this:struct dwflpp* const $sco= pe_die:struct Dwarf_Die* $pc:Dwarf_Addr $e:struct target_symbol const* $lva= lue:bool $ty:enum exp_type&=0D process("/home/prasadkr/systemtap/stap").function("literal_string@/home/pra= sadkr/systemtap/staptree.cxx:219")? $this:struct literal_string* const $v:s= tring const&=0D process("/home/prasadkr/systemtap/stap").function("literal_string@/home/pra= sadkr/systemtap/staptree.h:82")?=0D process("/home/prasadkr/systemtap/stap").function("load_aggregate@/home/pra= sadkr/systemtap/translate.cxx:3827")? $this:struct c_tmpcounter* const $e:s= truct expression*=0D process("/home/prasadkr/systemtap/stap").function("load_aggregate@/home/pra= sadkr/systemtap/translate.cxx:3846")? $this:struct c_unparser* const $e:str= uct expression* $agg:struct aggvar&=0D process("/home/prasadkr/systemtap/stap").function("load_map_indices@/home/p= rasadkr/systemtap/translate.cxx:3744")? $this:struct c_tmpcounter* const $e= :struct arrayindex*=0D process("/home/prasadkr/systemtap/stap").function("load_map_indices@/home/p= rasadkr/systemtap/translate.cxx:3774")? $this:struct c_unparser* const $e:s= truct arrayindex* $idx:class vector >&=0D process("/home/prasadkr/systemtap/stap").function("loc2c_emit_address@/home= /prasadkr/systemtap/dwflpp.cxx:1783")? $arg:void* $pool:struct obstack* $ad= dress:Dwarf_Addr=0D process("/home/prasadkr/systemtap/stap").function("loc2c_error@/home/prasad= kr/systemtap/dwflpp.cxx:1677")? $fmt:char const*=0D process("/home/prasadkr/systemtap/stap").function("location_from_address@/h= ome/prasadkr/systemtap/loc2c.c:889")? $ctx:struct location_context* $indent= :int $expr:Dwarf_Op const* $len:size_t $input:struct location**=0D process("/home/prasadkr/systemtap/stap").function("location_relative@/home/= prasadkr/systemtap/loc2c.c:1095")?=0D process("/home/prasadkr/systemtap/stap").function("logical_and_expr@/home/p= rasadkr/systemtap/staptree.h:147")?=0D process("/home/prasadkr/systemtap/stap").function("logical_or_expr@/home/pr= asadkr/systemtap/staptree.h:141")?=0D process("/home/prasadkr/systemtap/stap").function("lookup_symbol@/home/pras= adkr/systemtap/tapsets.cxx:6347")? $this:struct symbol_table* const $name:s= tring const&=0D process("/home/prasadkr/systemtap/stap").function("lookup_symbol_address@/h= ome/prasadkr/systemtap/tapsets.cxx:1840")? $m:Dwfl_Module* $wanted:char con= st*=0D process("/home/prasadkr/systemtap/stap").function("lookup_symbol_address@/h= ome/prasadkr/systemtap/tapsets.cxx:6356")? $this:struct symbol_table* const= $name:string const&=0D process("/home/prasadkr/systemtap/stap").function("lose@/home/prasadkr/syst= emtap/loc2c.c:308")? $loc:struct location* $lexpr:Dwarf_Op const* $len:size= _t $failure:char const* $i:size_t=0D process("/home/prasadkr/systemtap/stap").function("lower_bound@/usr/lib/gcc= /ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_map.h:700"= )?=0D process("/home/prasadkr/systemtap/stap").function("lower_bound@/usr/lib/gcc= /ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_tree.h:744= ")?=0D process("/home/prasadkr/systemtap/stap").function("main@/home/prasadkr/syst= emtap/main.cxx:925")? $argc:int $argv:char* const*=0D process("/home/prasadkr/systemtap/stap").function("make_heap<__gnu_cxx::__n= ormal_iterator > >, bool (*)(const be_derived_probe*, const be_de= rived_probe*)>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c+= +/4.4.4/bits/stl_heap.h:414")? $__comp:void* $__last:class __normal_iterato= r > >=0D process("/home/prasadkr/systemtap/stap").function("make_pair@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../inclu= de/c++/4.4.4/bits/stl_pair.h:215")? $__y:enum pp_state_t $__x:struct token = const*=0D process("/home/prasadkr/systemtap/stap").function("make_pair@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../i= nclude/c++/4.4.4/bits/stl_pair.h:215")? $__y:long unsigned int $__x:long un= signed int=0D process("/home/prasadkr/systemtap/stap").function("make_pair@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4= .4/bits/stl_pair.h:215")?=0D process("/home/prasadkr/systemtap/stap").function("make_pair, std::allocator >, Dwarf_Die>@/usr/l= ib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_pair= .h:215")? $__y:struct Dwarf_Die=0D process("/home/prasadkr/systemtap/stap").function("make_pair, std::allocator >, dwarf_derived_pro= be*>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bi= ts/stl_pair.h:215")?=0D process("/home/prasadkr/systemtap/stap").function("make_pair, std::allocator >, functiondecl*>@/u= sr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_= pair.h:215")?=0D process("/home/prasadkr/systemtap/stap").function("make_pair, std::allocator >, kprobe_derived_pr= obe*>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/b= its/stl_pair.h:215")?=0D process("/home/prasadkr/systemtap/stap").function("make_pair, std::allocator >, std::basic_string= , std::allocator > >@/usr/lib/gcc/ppc64-= redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_pair.h:215")? $__= y:struct basic_string, std::allocator > = $__x:struct basic_string, std::allocator= >=0D process("/home/prasadkr/systemtap/stap").function("make_pair, std::allocator >, Dwarf_Die>, false, false>, std::tr1:= :__detail::_Hashtable_iterator, std::allocator >, Dwarf_Die>, false, false> >@/us= r/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_p= air.h:215")?=0D process("/home/prasadkr/systemtap/stap").function("make_pair >, exp_type>@/usr/lib/gcc/ppc64-redhat-lin= ux/4.4.4/../../../../include/c++/4.4.4/bits/stl_pair.h:215")?=0D process("/home/prasadkr/systemtap/stap").function("make_pair@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bit= s/stl_pair.h:215")? $__y:struct Dwarf_Die $__x:void*=0D process("/home/prasadkr/systemtap/stap").function("make_pbm_key@/home/prasa= dkr/systemtap/tapsets.cxx:6512")?=0D process("/home/prasadkr/systemtap/stap").function("make_run_command@/home/p= rasadkr/systemtap/buildrun.cxx:438")? $s:struct systemtap_session& $module:= string const&=0D process("/home/prasadkr/systemtap/stap").function("make_tracequery@/home/pr= asadkr/systemtap/buildrun.cxx:481")? $s:struct systemtap_session& $name:str= ing& $decls:class vector, st= d::allocator >, std::allocator, std::allocator > > > const&=0D process("/home/prasadkr/systemtap/stap").function("make_typequery@/home/pra= sadkr/systemtap/buildrun.cxx:652")? $s:struct systemtap_session& $module:st= ring&=0D process("/home/prasadkr/systemtap/stap").function("make_typequery_kmod@/hom= e/prasadkr/systemtap/buildrun.cxx:564")? $s:struct systemtap_session& $head= ers:class vector, std::alloc= ator >, std::allocator= , std::allocator > > > const& $name:string&=0D process("/home/prasadkr/systemtap/stap").function("make_typequery_umod@/hom= e/prasadkr/systemtap/buildrun.cxx:629")? $name:string& $headers:class vecto= r, std::allocator >, s= td::allocator, std::allocato= r > > > const& $s:struct systemtap_session&=0D process("/home/prasadkr/systemtap/stap").function("make_uprobes@/home/prasa= dkr/systemtap/buildrun.cxx:375")? $s:struct systemtap_session&=0D process("/home/prasadkr/systemtap/stap").function("manage_server_trust@/hom= e/prasadkr/systemtap/csclient.cxx:1610")? $s:struct systemtap_session&=0D process("/home/prasadkr/systemtap/stap").function("map@/usr/lib/gcc/ppc64-r= edhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_map.h:150")?=0D process("/home/prasadkr/systemtap/stap").function("map@/usr/lib/gcc/ppc64-r= edhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_map.h:170")?=0D process("/home/prasadkr/systemtap/stap").function("mapvar@/home/prasadkr/sy= stemtap/translate.cxx:542")?=0D process("/home/prasadkr/systemtap/stap").function("mark_arg@/home/prasadkr/= systemtap/tapset-mark.cxx:40")? $this:struct mark_arg* const=0D process("/home/prasadkr/systemtap/stap").function("mark_builder@/home/prasa= dkr/systemtap/tapset-mark.cxx:575")?=0D process("/home/prasadkr/systemtap/stap").function("mark_derived_probe@/home= /prasadkr/systemtap/tapset-mark.cxx:206")? $this:struct mark_derived_probe*= const $s:struct systemtap_session& $p_n:string const& $p_f:string const& $= base:struct probe* $loc:struct probe_point*=0D process("/home/prasadkr/systemtap/stap").function("mark_derived_probe_group= @/home/prasadkr/systemtap/tapset-mark.cxx:68")? $this:struct mark_derived_p= robe_group* const=0D process("/home/prasadkr/systemtap/stap").function("mark_var_expanding_visit= or@/home/prasadkr/systemtap/tapset-mark.cxx:78")?=0D process("/home/prasadkr/systemtap/stap").function("match_key@/home/prasadkr= /systemtap/elaborate.cxx:258")? $this:struct match_key* const $n:string con= st&=0D process("/home/prasadkr/systemtap/stap").function("match_key@/home/prasadkr= /systemtap/elaborate.cxx:265")? $this:struct match_key* const $c:struct com= ponent const&=0D process("/home/prasadkr/systemtap/stap").function("match_key@/home/prasadkr= /systemtap/elaborate.h:241")?=0D process("/home/prasadkr/systemtap/stap").function("match_node@/home/prasadk= r/systemtap/elaborate.cxx:348")?=0D process("/home/prasadkr/systemtap/stap").function("max@/usr/lib/gcc/= ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h:= 209")?=0D process("/home/prasadkr/systemtap/stap").function("max@/usr/lib/gcc= /ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_algobase.h= :209")?=0D process("/home/prasadkr/systemtap/stap").function("max_fetch_size@/home/pra= sadkr/systemtap/loc2c.c:1911")? $loc:struct location* $die:Dwarf_Die* $cu_m= em:Dwarf_Die=0D process("/home/prasadkr/systemtap/stap").function("may_build_uprobes@/home/= prasadkr/systemtap/buildrun.cxx:307")? $s:struct systemtap_session const&=0D process("/home/prasadkr/systemtap/stap").function("mdfour64@/home/prasadkr/= systemtap/mdfour.c:44")? $M:uint32_t*=0D process("/home/prasadkr/systemtap/stap").function("mdfour@/home/prasadkr/sy= stemtap/mdfour.c:211")? $out:unsigned char* $in:unsigned char const* $n:int= $md:struct mdfour=0D process("/home/prasadkr/systemtap/stap").function("mdfour_begin@/home/prasa= dkr/systemtap/mdfour.c:109")? $md:struct mdfour*=0D process("/home/prasadkr/systemtap/stap").function("mdfour_result@/home/pras= adkr/systemtap/mdfour.c:199")? $md:struct mdfour* $out:unsigned char*=0D process("/home/prasadkr/systemtap/stap").function("mdfour_tail@/home/prasad= kr/systemtap/mdfour.c:121")?=0D process("/home/prasadkr/systemtap/stap").function("mdfour_update@/home/pras= adkr/systemtap/mdfour.c:152")? $md:struct mdfour* $in:unsigned char const* = $n:int $M:uint32_t[]=0D process("/home/prasadkr/systemtap/stap").function("memchr@/usr/include/stri= ng.h:88")? $__n:size_t $__c:int $__s:void const*=0D process("/home/prasadkr/systemtap/stap").function("memcpy@/usr/include/bits= /string3.h:49")? $__len:size_t $__src:void const* $__dest:void*=0D process("/home/prasadkr/systemtap/stap").function("merge_server_info@/home/= prasadkr/systemtap/csclient.cxx:3077")? $source:struct compile_server_info = const& $target:struct compile_server_info&=0D process("/home/prasadkr/systemtap/stap").function("min@/us= r/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_a= lgobase.h:186")?=0D process("/home/prasadkr/systemtap/stap").function("mismatch@/home/prasadkr/= systemtap/elaborate.cxx:4839")? $this:struct typeresolution_info* const $to= k:struct token const* $t1:enum exp_type $t2:enum exp_type=0D process("/home/prasadkr/systemtap/stap").function("missing_rpm_enlist@/home= /prasadkr/systemtap/rpm_finder.cxx:49")? $sess:struct systemtap_session& $f= ilename:char const* $rpm_type:char const*=0D process("/home/prasadkr/systemtap/stap").function("missing_rpm_list_print@/= home/prasadkr/systemtap/rpm_finder.cxx:200")? $sess:struct systemtap_sessio= n& $rpm_type:char const*=0D process("/home/prasadkr/systemtap/stap").function("mod_function_caching_cal= lback@/home/prasadkr/systemtap/dwflpp.cxx:831")? $cu:struct Dwarf_Die* $arg= :void*=0D process("/home/prasadkr/systemtap/stap").function("modname_from_path@/home/= prasadkr/systemtap/setupdwfl.cxx:96")? $path:string const&=0D process("/home/prasadkr/systemtap/stap").function("module_cache@/home/prasa= dkr/systemtap/dwflpp.h:123")? $this:struct module_cache* const=0D process("/home/prasadkr/systemtap/stap").function("module_info@/home/prasad= kr/systemtap/dwflpp.h:102")?=0D process("/home/prasadkr/systemtap/stap").function("module_name_final_match@= /home/prasadkr/systemtap/dwflpp.cxx:252")? $this:struct dwflpp* const $patt= ern:string const&=0D process("/home/prasadkr/systemtap/stap").function("module_name_matches@/hom= e/prasadkr/systemtap/dwflpp.cxx:231")? $this:struct dwflpp* const $pattern:= string const&=0D process("/home/prasadkr/systemtap/stap").function("multimap@/usr/lib/gcc/pp= c64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_multimap.h:14= 8")?=0D process("/home/prasadkr/systemtap/stap").function("mutated_var_collector@/h= ome/prasadkr/systemtap/elaborate.cxx:895")?=0D process("/home/prasadkr/systemtap/stap").function("name_has_wildcard@/home/= prasadkr/systemtap/dwflpp.cxx:243")? $pattern:string const&=0D process("/home/prasadkr/systemtap/stap").function("needs_global_locks@/home= /prasadkr/systemtap/elaborate.h:173")?=0D process("/home/prasadkr/systemtap/stap").function("needs_global_locks@/home= /prasadkr/systemtap/tapset-been.cxx:61")?=0D process("/home/prasadkr/systemtap/stap").function("never_builder@/home/pras= adkr/systemtap/tapset-been.cxx:200")?=0D process("/home/prasadkr/systemtap/stap").function("never_derived_probe@/hom= e/prasadkr/systemtap/tapset-been.cxx:191")?=0D process("/home/prasadkr/systemtap/stap").function("new_context@/home/prasad= kr/systemtap/loc2c.c:138")? $pool:struct obstack* $fail:void volatile* $fai= l_arg:void* $emit_address:void* $dwbias:Dwarf_Addr $pc_address:Dwarf_Addr $= attr:Dwarf_Attribute* $fb_attr:Dwarf_Attribute* $cfa_ops:Dwarf_Op const*=0D process("/home/prasadkr/systemtap/stap").function("new_synthetic_loc@/home/= prasadkr/systemtap/loc2c.c:277")? $origin:struct location* $deref:_Bool=0D process("/home/prasadkr/systemtap/stap").function("newline@/home/prasadkr/s= ystemtap/translate.cxx:870")? $this:class translator_output* const $indent:= int=0D process("/home/prasadkr/systemtap/stap").function("next@/home/prasadkr/syst= emtap/parse.cxx:647")? $this:class parser* const $wildcard:bool=0D process("/home/prasadkr/systemtap/stap").function("next@/home/prasadkr/syst= emtap/translate.cxx:786")? $this:class itervar const* const $mv:struct mapv= ar const&=0D process("/home/prasadkr/systemtap/stap").function("next_statement@/home/pra= sadkr/systemtap/staptree.h:644")?=0D process("/home/prasadkr/systemtap/stap").function("no_var_mutation_during_i= teration_check@/home/prasadkr/systemtap/elaborate.cxx:932")?=0D process("/home/prasadkr/systemtap/stap").function("normalize_machine@/home/= prasadkr/systemtap/util.cxx:634")? $machine:string const&=0D process("/home/prasadkr/systemtap/stap").function("noshowbase@/usr/lib/gcc/= ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/ios_base.h:823"= )? $__base:class ios_base&=0D process("/home/prasadkr/systemtap/stap").function("null_die@/home/prasadkr/= systemtap/tapsets.cxx:347")? $die:struct Dwarf_Die*=0D process("/home/prasadkr/systemtap/stap").function("null_statement@/home/pra= sadkr/systemtap/staptree.cxx:51")? $this:struct null_statement* const $tok:= struct token const*=0D process("/home/prasadkr/systemtap/stap").function("null_statement@/home/pra= sadkr/systemtap/staptree.h:590")?=0D process("/home/prasadkr/systemtap/stap").function("num_errors@/home/prasadk= r/systemtap/session.h:283")?=0D process("/home/prasadkr/systemtap/stap").function("obstack_printf@/usr/incl= ude/bits/stdio2.h:178")?=0D process("/home/prasadkr/systemtap/stap").function("open@/usr/include/bits/f= cntl2.h:42")? $__oflag:int $__path:char const*=0D process("/home/prasadkr/systemtap/stap").function("open@/usr/lib/gcc/ppc64-= redhat-linux/4.4.4/../../../../include/c++/4.4.4/fstream:525")? $__s:char c= onst* $this:struct basic_ifstream >* const=0D process("/home/prasadkr/systemtap/stap").function("open@/usr/lib/gcc/ppc64-= redhat-linux/4.4.4/../../../../include/c++/4.4.4/fstream:696")? $__s:char c= onst* $this:struct basic_ofstream >* const=0D process("/home/prasadkr/systemtap/stap").function("operator StapDwfl* std::= tr1::__shared_ptr::*@/usr/lib/gcc/pp= c64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/tr1/shared_ptr.h:537")= ? $this:class __shared_ptr const* co= nst=0D process("/home/prasadkr/systemtap/stap").function("operator void*@/usr/lib/= gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/basic_ios.h= :111")? $this:struct basic_ios > const* const= =0D process("/home/prasadkr/systemtap/stap").function("operator!=3D, std::allocator >@/usr/lib/gcc/ppc64-redhat-linux/4= .4.4/../../../../include/c++/4.4.4/bits/basic_string.h:2278")?=0D process("/home/prasadkr/systemtap/stap").function("operator!=3D, std::allocator >@/usr/lib/gcc/ppc64-redhat-linux/4= .4.4/../../../../include/c++/4.4.4/bits/basic_string.h:2302")?=0D process("/home/prasadkr/systemtap/stap").function("operator!=3D, std::allocator >*, std::ve= ctor, std::allocator >= , std::allocator, std::alloc= ator > > > >@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../includ= e/c++/4.4.4/bits/stl_iterator.h:783")? $__rhs:class __normal_iterator, std::allocator >*, s= td::vector, std::allocator >, std::allocator, std:= :allocator > > > > const& $__lhs:class __normal_iterator, std::allocator >*, std::vec= tor, std::allocator >,= std::allocator, std::alloca= tor > > > > const&=0D process("/home/prasadkr/systemtap/stap").function("operator!@/usr/lib/gcc/p= pc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/basic_ios.h:115"= )? $this:struct basic_ios > const* const=0D process("/home/prasadkr/systemtap/stap").function("operator&=3D@/usr/lib/gc= c/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/ios_base.h:10= 0")?=0D process("/home/prasadkr/systemtap/stap").function("operator&@/usr/lib/gcc/p= pc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/ios_base.h:162")= ? $__b:enum _Ios_Iostate=0D process("/home/prasadkr/systemtap/stap").function("operator&@/usr/lib/gcc/p= pc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/ios_base.h:84")?= =0D process("/home/prasadkr/systemtap/stap").function("operator()@/usr/lib/gcc/= ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_function.h:= 202")? $__y:struct basic_string, std::allocato= r > const&=0D process("/home/prasadkr/systemtap/stap").function("operator()@/usr/lib/gcc/= ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_function.h:= 229")?=0D process("/home/prasadkr/systemtap/stap").function("operator()@/usr/lib/gcc/= ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/tr1/shared_ptr.h:97"= )? $__p:struct StapDwfl*=0D process("/home/prasadkr/systemtap/stap").function("operator()@/usr/lib/gcc/= ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/tr1_impl/hashtable_p= olicy.h:402")?=0D process("/home/prasadkr/systemtap/stap").function("operator*@/usr/lib/gcc/p= pc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_list.h:133")= ?=0D process("/home/prasadkr/systemtap/stap").function("operator++@/usr/lib/gcc/= ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_deque.h:136= ")?=0D process("/home/prasadkr/systemtap/stap").function("operator++@/usr/lib/gcc/= ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_iterator.h:= 706")?=0D process("/home/prasadkr/systemtap/stap").function("operator++@/usr/lib/gcc/= ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_iterator.h:= 713")?=0D process("/home/prasadkr/systemtap/stap").function("operator++@/usr/lib/gcc/= ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_list.h:141"= )?=0D process("/home/prasadkr/systemtap/stap").function("operator++@/usr/lib/gcc/= ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_list.h:221"= )?=0D process("/home/prasadkr/systemtap/stap").function("operator++@/usr/lib/gcc/= ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_tree.h:182"= )?=0D process("/home/prasadkr/systemtap/stap").function("operator++@/usr/lib/gcc/= ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_tree.h:189"= )?=0D process("/home/prasadkr/systemtap/stap").function("operator++@/usr/lib/gcc/= ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_tree.h:257"= )?=0D process("/home/prasadkr/systemtap/stap").function("operator++@/usr/lib/gcc/= ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_tree.h:264"= )?=0D process("/home/prasadkr/systemtap/stap").function("operator++@/usr/lib/gcc/= ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/tr1_impl/hashtable_p= olicy.h:324")?=0D process("/home/prasadkr/systemtap/stap").function("operator++@/usr/lib/gcc/= ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/tr1_impl/hashtable_p= olicy.h:331")?=0D process("/home/prasadkr/systemtap/stap").function("operator+, std::allocator >@/usr/lib/gcc/ppc64-redhat-linux/4.4.= 4/../../../../include/c++/4.4.4/bits/basic_string.h:2161")?=0D process("/home/prasadkr/systemtap/stap").function("operator+, std::allocator >@/usr/lib/gcc/ppc64-redhat-linux/4.4.= 4/../../../../include/c++/4.4.4/bits/basic_string.h:2198")?=0D process("/home/prasadkr/systemtap/stap").function("operator+, std::allocator >@/usr/lib/gcc/ppc64-redhat-linux/4.4.= 4/../../../../include/c++/4.4.4/bits/basic_string.h:2214")?=0D process("/home/prasadkr/systemtap/stap").function("operator+, std::allocator >@/usr/lib/gcc/ppc64-redhat-linux/4.4.= 4/../../../../include/c++/4.4.4/bits/basic_string.tcc:694")?=0D process("/home/prasadkr/systemtap/stap").function("operator+=3D@/usr/lib/gc= c/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/basic_string.= h:795")?=0D process("/home/prasadkr/systemtap/stap").function("operator+=3D@/usr/lib/gc= c/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/basic_string.= h:804")?=0D process("/home/prasadkr/systemtap/stap").function("operator+=3D@/usr/lib/gc= c/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/basic_string.= h:813")?=0D process("/home/prasadkr/systemtap/stap").function("operator+=3D@/usr/lib/gc= c/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_iterator.= h:734")?=0D process("/home/prasadkr/systemtap/stap").function("operator+@/usr/lib/gcc/p= pc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_iterator.h:7= 38")?=0D process("/home/prasadkr/systemtap/stap").function("operator--@/usr/lib/gcc/= ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_deque.h:156= ")?=0D process("/home/prasadkr/systemtap/stap").function("operator--@/usr/lib/gcc/= ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_iterator.h:= 718")?=0D process("/home/prasadkr/systemtap/stap").function("operator--@/usr/lib/gcc/= ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_tree.h:197"= )?=0D process("/home/prasadkr/systemtap/stap").function("operator--@/usr/lib/gcc/= ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_tree.h:272"= )?=0D process("/home/prasadkr/systemtap/stap").function("operator- > >@/usr/l= ib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_iter= ator.h:856")?=0D process("/home/prasadkr/systemtap/stap").function("operator- > >@/usr/lib/gcc/ppc64-redha= t-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_iterator.h:856")?=0D process("/home/prasadkr/systemtap/stap").function("operator- > >@= /usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/st= l_iterator.h:856")?=0D process("/home/prasadkr/systemtap/stap").function("operator- > >@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/b= its/stl_iterator.h:856")?=0D process("/home/prasadkr/systemtap/stap").function("operator- > >@/usr/lib/gcc/pp= c64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_iterator.h:85= 6")?=0D process("/home/prasadkr/systemtap/stap").function("operator-@/usr/lib/gcc/ppc64-redhat-linux/4.4.= 4/../../../../include/c++/4.4.4/bits/stl_deque.h:319")?=0D process("/home/prasadkr/systemtap/stap").function("operator-@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../.= ./include/c++/4.4.4/bits/stl_deque.h:319")?=0D process("/home/prasadkr/systemtap/stap").function("operator- > >@/usr/lib/= gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_iterato= r.h:856")?=0D process("/home/prasadkr/systemtap/stap").function("operator- > >@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c+= +/4.4.4/bits/stl_iterator.h:856")?=0D process("/home/prasadkr/systemtap/stap").function("operator- > >@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.= 4/bits/stl_iterator.h:856")?=0D process("/home/prasadkr/systemtap/stap").function("operator- > >@/usr/lib/gcc= /ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_iterator.h= :856")?=0D process("/home/prasadkr/systemtap/stap").function("operator- > >@/usr/lib/gcc/ppc64-redhat-l= inux/4.4.4/../../../../include/c++/4.4.4/bits/stl_iterator.h:856")?=0D process("/home/prasadkr/systemtap/stap").function("operator- > >@/usr/lib/gcc/ppc64= -redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_iterator.h:856")= ?=0D process("/home/prasadkr/systemtap/stap").function("operator- > >@/usr/lib/gcc/ppc64-redha= t-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_iterator.h:856")?=0D process("/home/prasadkr/systemtap/stap").function("operator-@/usr/lib/gcc/ppc64-redhat-l= inux/4.4.4/../../../../include/c++/4.4.4/bits/stl_deque.h:319")?=0D process("/home/prasadkr/systemtap/stap").function("operator-@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/.= ./../../../include/c++/4.4.4/bits/stl_deque.h:319")? $__x:struct _Deque_ite= rator const& $__y:struct = _Deque_iterator const&=0D process("/home/prasadkr/systemtap/stap").function("operator- > >@/usr/lib/gcc= /ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_iterator.h= :856")?=0D process("/home/prasadkr/systemtap/stap").function("operator- > >@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c+= +/4.4.4/bits/stl_iterator.h:856")?=0D process("/home/prasadkr/systemtap/stap").function("operator- > >@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4= .4.4/bits/stl_iterator.h:856")?=0D process("/home/prasadkr/systemtap/stap").function("operator- > >@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.= 4/bits/stl_iterator.h:856")?=0D process("/home/prasadkr/systemtap/stap").function("operator- > >@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4= .4.4/bits/stl_iterator.h:856")?=0D process("/home/prasadkr/systemtap/stap").function("operator- > >@/usr/lib/gcc/ppc64-redhat-l= inux/4.4.4/../../../../include/c++/4.4.4/bits/stl_iterator.h:856")?=0D process("/home/prasadkr/systemtap/stap").function("operator- > >@/usr/lib/gcc/ppc64-redha= t-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_iterator.h:856")?=0D process("/home/prasadkr/systemtap/stap").function("operator- > >@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/b= its/stl_iterator.h:856")?=0D process("/home/prasadkr/systemtap/stap").function("operator- > >@/usr/lib/gcc/ppc64= -redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_iterator.h:856")= ?=0D process("/home/prasadkr/systemtap/stap").function("operator- > >@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/b= its/stl_iterator.h:856")?=0D process("/home/prasadkr/systemtap/stap").function("operator- > >@/usr/lib/gcc/ppc64-redhat-linux/4.4.= 4/../../../../include/c++/4.4.4/bits/stl_iterator.h:856")?=0D process("/home/prasadkr/systemtap/stap").function("operator- > >@/usr/lib/gcc/ppc64-redhat-linux/4= .4.4/../../../../include/c++/4.4.4/bits/stl_iterator.h:856")?=0D process("/home/prasadkr/systemtap/stap").function("operator- > >@/usr/lib/gcc/pp= c64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_iterator.h:85= 6")?=0D process("/home/prasadkr/systemtap/stap").function("operator- > >@/usr/lib/gcc/pp= c64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_iterator.h:85= 6")?=0D process("/home/prasadkr/systemtap/stap").function("operator- > >@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include= /c++/4.4.4/bits/stl_iterator.h:856")?=0D process("/home/prasadkr/systemtap/stap").function("operator- > >@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c+= +/4.4.4/bits/stl_iterator.h:856")?=0D process("/home/prasadkr/systemtap/stap").function("operator- > >@/usr/lib/gcc/ppc64-redhat-linu= x/4.4.4/../../../../include/c++/4.4.4/bits/stl_iterator.h:856")?=0D process("/home/prasadkr/systemtap/stap").function("operator- > >@/usr/lib/gcc/ppc64-redha= t-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_iterator.h:856")?=0D process("/home/prasadkr/systemtap/stap").function("operator- > >@/usr/lib/gcc/ppc64-re= dhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_iterator.h:856")?=0D process("/home/prasadkr/systemtap/stap").function("operator-, std::allocator >*, std::vector, std::allocator >, std::al= locator, std::allocator > > > >@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4= .4/bits/stl_iterator.h:856")?=0D process("/home/prasadkr/systemtap/stap").function("operator-*, std::vector, std::allocator > = > >@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bit= s/stl_iterator.h:856")?=0D process("/home/prasadkr/systemtap/stap").function("operator-, std::allocator >, unsigne= d int>*, std::vector, std::allocator >, unsigned int>, std::allocator, std::allocator >, unsigned i= nt> > > >@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4= .4/bits/stl_iterator.h:856")?=0D process("/home/prasadkr/systemtap/stap").function("operator- > >@/usr/lib/gcc/ppc64-redhat-linu= x/4.4.4/../../../../include/c++/4.4.4/bits/stl_iterator.h:856")?=0D process("/home/prasadkr/systemtap/stap").function("operator- > >@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../incl= ude/c++/4.4.4/bits/stl_iterator.h:856")?=0D process("/home/prasadkr/systemtap/stap").function("operator- > >@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.= 4/bits/stl_iterator.h:856")?=0D process("/home/prasadkr/systemtap/stap").function("operator- > >@/usr/lib/gcc/ppc64-redhat-linux/4= .4.4/../../../../include/c++/4.4.4/bits/stl_iterator.h:856")?=0D process("/home/prasadkr/systemtap/stap").function("operator- > >@/usr/lib/= gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_iterato= r.h:856")?=0D process("/home/prasadkr/systemtap/stap").function("operator- > >@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../i= nclude/c++/4.4.4/bits/stl_iterator.h:856")?=0D process("/home/prasadkr/systemtap/stap").function("operator- > >@/usr/l= ib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_iter= ator.h:856")?=0D process("/home/prasadkr/systemtap/stap").function("operator- > >@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4= .4.4/bits/stl_iterator.h:856")?=0D process("/home/prasadkr/systemtap/stap").function("operator- > >@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4= .4.4/bits/stl_iterator.h:856")?=0D process("/home/prasadkr/systemtap/stap").function("operator- > >@/usr/lib/gcc/ppc64-redhat-l= inux/4.4.4/../../../../include/c++/4.4.4/bits/stl_iterator.h:856")?=0D process("/home/prasadkr/systemtap/stap").function("operator-@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../incl= ude/c++/4.4.4/bits/stl_deque.h:319")?=0D process("/home/prasadkr/systemtap/stap").function("operator-@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.= 4/bits/stl_deque.h:319")? $__x:struct _Deque_iterator const& $__y:struct _Deque_iterator const&=0D process("/home/prasadkr/systemtap/stap").function("operator-@/usr/lib/gcc/p= pc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_iterator.h:7= 46")?=0D process("/home/prasadkr/systemtap/stap").function("operator< , std::allocator >@/usr/lib/gcc/ppc64-redhat-linux/4.4= .4/../../../../include/c++/4.4.4/bits/basic_string.h:2315")?=0D process("/home/prasadkr/systemtap/stap").function("operator< >@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../i= nclude/c++/4.4.4/bits/stl_vector.h:1185")?=0D process("/home/prasadkr/systemtap/stap").function("operator< @/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../= include/c++/4.4.4/bits/stl_pair.h:152")?=0D process("/home/prasadkr/systemtap/stap").function("operator< , std::allocator >, std::basic_strin= g, std::allocator > >@/usr/lib/gcc/ppc64= -redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_pair.h:152")?=0D process("/home/prasadkr/systemtap/stap").function("operator< >, exp_type>@/usr/lib/gcc/ppc64-redhat-li= nux/4.4.4/../../../../include/c++/4.4.4/bits/stl_pair.h:152")?=0D process("/home/prasadkr/systemtap/stap").function("operator<< >@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../includ= e/c++/4.4.4/iomanip:187")?=0D process("/home/prasadkr/systemtap/stap").function("operator<< >@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../includ= e/c++/4.4.4/iomanip:255")?=0D process("/home/prasadkr/systemtap/stap").function("operator<< , std::allocator >@/usr/lib/gcc/ppc64-redhat-linux/4.= 4.4/../../../../include/c++/4.4.4/bits/basic_string.h:2498")?=0D process("/home/prasadkr/systemtap/stap").function("operator<< >@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/= 4.4.4/ostream:457")?=0D process("/home/prasadkr/systemtap/stap").function("operator<< >@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/= 4.4.4/ostream:505")?=0D process("/home/prasadkr/systemtap/stap").function("operator<< >@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/= 4.4.4/ostream:523")?=0D process("/home/prasadkr/systemtap/stap").function("operator<<@/home/prasadk= r/systemtap/csclient.cxx:1436")? $s:ostream& $i:struct compile_server_info = const&=0D process("/home/prasadkr/systemtap/stap").function("operator<<@/home/prasadk= r/systemtap/parse.cxx:225")? $o:ostream& $loc:struct source_loc const&=0D process("/home/prasadkr/systemtap/stap").function("operator<<@/home/prasadk= r/systemtap/parse.cxx:235")? $o:ostream& $t:struct token const&=0D process("/home/prasadkr/systemtap/stap").function("operator<<@/home/prasadk= r/systemtap/staptree.cxx:1189")? $o:ostream& $k:struct probe_point const&=0D process("/home/prasadkr/systemtap/stap").function("operator<<@/home/prasadk= r/systemtap/staptree.cxx:1196")? $o:ostream& $k:struct symboldecl const&=0D process("/home/prasadkr/systemtap/stap").function("operator<<@/home/prasadk= r/systemtap/staptree.cxx:227")? $o:ostream& $e:enum exp_type const&=0D process("/home/prasadkr/systemtap/stap").function("operator<<@/home/prasadk= r/systemtap/staptree.cxx:286")? $o:ostream& $k:struct expression const&=0D process("/home/prasadkr/systemtap/stap").function("operator<<@/home/prasadk= r/systemtap/staptree.cxx:384")? $o:ostream&=0D process("/home/prasadkr/systemtap/stap").function("operator<<@/home/prasadk= r/systemtap/staptree.cxx:941")?=0D process("/home/prasadkr/systemtap/stap").function("operator<<@/home/prasadk= r/systemtap/translate.cxx:455")? $o:ostream& $v:class var const&=0D process("/home/prasadkr/systemtap/stap").function("operator<<@/home/prasadk= r/systemtap/translate.cxx:507")? $o:ostream& $v:struct tmpvar const&=0D process("/home/prasadkr/systemtap/stap").function("operator<<@/home/prasadk= r/systemtap/translate.cxx:838")? $o:ostream& $v:class itervar const&=0D process("/home/prasadkr/systemtap/stap").function("operator<<@/usr/lib/gcc/= ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/ostream:108")?=0D process("/home/prasadkr/systemtap/stap").function("operator<<@/usr/lib/gcc/= ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/ostream:127")?=0D process("/home/prasadkr/systemtap/stap").function("operator<<@/usr/lib/gcc/= ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/ostream:165")?=0D process("/home/prasadkr/systemtap/stap").function("operator<<@/usr/lib/gcc/= ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/ostream:169")?=0D process("/home/prasadkr/systemtap/stap").function("operator<<@/usr/lib/gcc/= ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/ostream:173")?=0D process("/home/prasadkr/systemtap/stap").function("operator<<@/usr/lib/gcc/= ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/ostream:180")? $__n:= short unsigned int=0D process("/home/prasadkr/systemtap/stap").function("operator<<@/usr/lib/gcc/= ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/ostream:191")?=0D process("/home/prasadkr/systemtap/stap").function("operator<<@/usr/lib/gcc/= ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/ostream:204")? $__n:= long long unsigned int=0D process("/home/prasadkr/systemtap/stap").function("operator<<@/usr/lib/gcc/= ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/ostream:225")? $__p:= void const* $this:struct basic_ostream >* cons= t=0D process("/home/prasadkr/systemtap/stap").function("operator<=3D, std::allocator >@/usr/lib/gcc/ppc64-redhat-linux/4= .4.4/../../../../include/c++/4.4.4/bits/basic_string.h:2389")? $__rhs:struc= t basic_string, std::allocator > const& = $__lhs:struct basic_string, std::allocator > const&=0D process("/home/prasadkr/systemtap/stap").function("operator<@/home/prasadkr= /systemtap/elaborate.cxx:302")? $this:struct match_key const* const $other:= struct match_key const&=0D process("/home/prasadkr/systemtap/stap").function("operator<@/home/prasadkr= /systemtap/tapsets.cxx:1491")? $this:struct inline_instance_info const* con= st $other:struct inline_instance_info const&=0D process("/home/prasadkr/systemtap/stap").function("operator=3D=3D, std::allocator >@/usr/lib/gcc/ppc64-redhat-linux= /4.4.4/../../../../include/c++/4.4.4/bits/basic_string.h:2253")?=0D process("/home/prasadkr/systemtap/stap").function("operator=3D=3D, std::allocator >@/usr/lib/gcc/ppc64-redhat-linux= /4.4.4/../../../../include/c++/4.4.4/bits/basic_string.h:2265")?=0D process("/home/prasadkr/systemtap/stap").function("operator=3D=3D@/us= r/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/basic= _string.h:2239")?=0D process("/home/prasadkr/systemtap/stap").function("operator=3D=3D@/usr/lib/gcc/ppc64-redhat-linux/4.= 4.4/../../../../include/c++/4.4.4/bits/stl_deque.h:235")? $__y:struct _Dequ= e_iterator const& $__x:st= ruct _Deque_iterator cons= t&=0D process("/home/prasadkr/systemtap/stap").function("operator=3D=3D, std::allocator >, std::basic_s= tring, std::allocator >, std::_Identity<= std::basic_string, std::allocator > >, s= td::less, std::allocator > >, std::allocator, std:= :allocator > > >@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../in= clude/c++/4.4.4/bits/stl_tree.h:773")?=0D process("/home/prasadkr/systemtap/stap").function("operator=3D=3D, std::allocator >, std::less, std::allocator > >, std= ::allocator, std::allocator<= char> > > >@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4= .4.4/bits/stl_set.h:639")? $__x:class set, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > > > const& $__y:= class set, std::allocator >, std::less, std::alloc= ator > >, std::allocator, std::allocator > > > const&=0D process("/home/prasadkr/systemtap/stap").function("operator=3D=3D@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++= /4.4.4/bits/stl_deque.h:235")? $__x:struct _Deque_iterator const& $__y:struct _Deque_iterator const&=0D process("/home/prasadkr/systemtap/stap").function("operator=3D=3D@/home/pra= sadkr/systemtap/csclient.cxx:83")?=0D process("/home/prasadkr/systemtap/stap").function("operator=3D=3D@/home/pra= sadkr/systemtap/session.h:70")? $this:struct statistic_decl* const=0D process("/home/prasadkr/systemtap/stap").function("operator=3D=3D@/usr/lib/= gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/typeinfo:117")? = $__arg:class type_info const&=0D process("/home/prasadkr/systemtap/stap").function("operator=3D@/home/prasad= kr/systemtap/csclient.cxx:69")? $this:struct compile_server_info* const=0D process("/home/prasadkr/systemtap/stap").function("operator=3D@/home/prasad= kr/systemtap/dwflpp.h:129")? $this:struct func_info* const=0D process("/home/prasadkr/systemtap/stap").function("operator=3D@/home/prasad= kr/systemtap/dwflpp.h:147")? $this:struct inline_instance_info* const=0D process("/home/prasadkr/systemtap/stap").function("operator=3D@/home/prasad= kr/systemtap/staptree.h:246")? $this:struct component* const=0D process("/home/prasadkr/systemtap/stap").function("operator=3D@/home/prasad= kr/systemtap/staptree.h:306")?=0D process("/home/prasadkr/systemtap/stap").function("operator=3D@/home/prasad= kr/systemtap/staptree.h:376")? $this:struct format_component* const=0D process("/home/prasadkr/systemtap/stap").function("operator=3D@/home/prasad= kr/systemtap/staptree.h:64")?=0D process("/home/prasadkr/systemtap/stap").function("operator=3D@/home/prasad= kr/systemtap/tapsets.cxx:7756")? $this:struct tracepoint_arg* const=0D process("/home/prasadkr/systemtap/stap").function("operator=3D@/home/prasad= kr/systemtap/translate.cxx:304")?=0D process("/home/prasadkr/systemtap/stap").function("operator=3D@/home/prasad= kr/systemtap/translate.cxx:477")? $this:struct tmpvar* const=0D process("/home/prasadkr/systemtap/stap").function("operator=3D@/usr/lib/gcc= /ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/basic_string.h= :510")?=0D process("/home/prasadkr/systemtap/stap").function("operator=3D@/usr/lib/gcc= /ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/basic_string.h= :518")?=0D process("/home/prasadkr/systemtap/stap").function("operator=3D@/usr/lib/gcc= /ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/basic_string.h= :529")?=0D process("/home/prasadkr/systemtap/stap").function("operator=3D@/usr/lib/gcc= /ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_iterator.h= :602")?=0D process("/home/prasadkr/systemtap/stap").function("operator=3D@/usr/lib/gcc= /ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_pair.h:68"= )? $this:struct pair, std::a= llocator >, unsigned int>* const=0D process("/home/prasadkr/systemtap/stap").function("operator=3D@/usr/lib/gcc= /ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_set.h:227"= )?=0D process("/home/prasadkr/systemtap/stap").function("operator=3D@/usr/lib/gcc= /ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_tree.h:852= ")?=0D process("/home/prasadkr/systemtap/stap").function("operator=3D@/usr/lib/gcc= /ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/vector.tcc:156= ")?=0D process("/home/prasadkr/systemtap/stap").function("operator=3D@/usr/lib/gcc= /ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/tr1/shared_ptr.h:16= 4")?=0D process("/home/prasadkr/systemtap/stap").function("operator=3D@/usr/lib/gcc= /ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/tr1/shared_ptr.h:35= 8")? $this:class __shared_ptr* const= =0D process("/home/prasadkr/systemtap/stap").function("operator=3D@/usr/lib/gcc= /ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/tr1/shared_ptr.h:83= 4")? $this:class shared_ptr* const=0D process("/home/prasadkr/systemtap/stap").function("operator>, std::allocator >@/usr/lib/gcc/ppc64-redhat-linux/4.4.= 4/../../../../include/c++/4.4.4/bits/basic_string.h:2352")? $__rhs:struct b= asic_string, std::allocator > const& $__= lhs:struct basic_string, std::allocator = > const&=0D process("/home/prasadkr/systemtap/stap").function("operator>=3D, std::allocator >@/usr/lib/gcc/ppc64-redhat-linux/4= .4.4/../../../../include/c++/4.4.4/bits/basic_string.h:2426")? $__rhs:struc= t basic_string, std::allocator > const& = $__lhs:struct basic_string, std::allocator > const&=0D process("/home/prasadkr/systemtap/stap").function("operator>>@/usr/lib/gcc/= ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/istream:173")? $__n:= short unsigned int& $this:struct basic_istream= >* const=0D process("/home/prasadkr/systemtap/stap").function("operator>>@/usr/lib/gcc/= ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/istream:180")? $__n:= unsigned int& $this:struct basic_istream >* co= nst=0D process("/home/prasadkr/systemtap/stap").function("operator>>@/usr/lib/gcc/= ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/istream:184")? $__n:= long int& $this:struct basic_istream >* const= =0D process("/home/prasadkr/systemtap/stap").function("operator>>@/usr/lib/gcc/= ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/istream:188")? $__n:= long unsigned int& $this:struct basic_istream = >* const=0D process("/home/prasadkr/systemtap/stap").function("operator[]@/usr/lib/gcc/= ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/basic_string.h:= 723")?=0D process("/home/prasadkr/systemtap/stap").function("operator[]@/usr/lib/gcc/= ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/basic_string.h:= 740")?=0D process("/home/prasadkr/systemtap/stap").function("operator[]@/usr/lib/gcc/= ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_map.h:442")= ?=0D process("/home/prasadkr/systemtap/stap").function("operator[]@/usr/lib/gcc/= ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_vector.h:61= 0")?=0D process("/home/prasadkr/systemtap/stap").function("operator[]@/usr/lib/gcc/= ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_vector.h:62= 5")?=0D process("/home/prasadkr/systemtap/stap").function("operator[]@/usr/lib/gcc/= ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/tr1_impl/hashtable_p= olicy.h:563")?=0D process("/home/prasadkr/systemtap/stap").function("operator|=3D@/usr/lib/gc= c/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/ios_base.h:96= ")? $__b:enum _Ios_Fmtflags $__a:enum _Ios_Fmtflags&=0D process("/home/prasadkr/systemtap/stap").function("operator|@/usr/lib/gcc/p= pc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/ios_base.h:166")= ? $__b:enum _Ios_Iostate $__a:enum _Ios_Iostate=0D process("/home/prasadkr/systemtap/stap").function("operator|@/usr/lib/gcc/p= pc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/ios_base.h:88")?= $__a:enum _Ios_Fmtflags $__b:enum _Ios_Fmtflags=0D process("/home/prasadkr/systemtap/stap").function("output_autoconf@/home/pr= asadkr/systemtap/buildrun.cxx:85")? $s:struct systemtap_session& $o:ofstrea= m& $autoconf_c:char const* $deftrue:char const* $deffalse:char const*=0D process("/home/prasadkr/systemtap/stap").function("output_exportconf@/home/= prasadkr/systemtap/buildrun.cxx:103")? $s:struct systemtap_session& $o:ofst= ream& $symbol:char const* $deftrue:char const*=0D process("/home/prasadkr/systemtap/stap").function("override@/home/prasadkr/= systemtap/translate.cxx:492")?=0D process("/home/prasadkr/systemtap/stap").function("pair@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.= 4.4/bits/stl_pair.h:99")? $this:struct pair* const=0D process("/home/prasadkr/systemtap/stap").function("pair >*>@/usr/lib/gcc/ppc64-redhat-linux/4= .4.4/../../../../include/c++/4.4.4/bits/stl_pair.h:99")? $this:struct pair<= Dwarf* const, std::vector >*>* const=0D process("/home/prasadkr/systemtap/stap").function("pair@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4= /bits/stl_pair.h:99")?=0D process("/home/prasadkr/systemtap/stap").function("pair@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bi= ts/stl_pair.h:99")?=0D process("/home/prasadkr/systemtap/stap").function("pair, std::allocator >, Dwarf_Die>@/usr/lib/gc= c/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_pair.h:99= ")?=0D process("/home/prasadkr/systemtap/stap").function("pair, std::allocator >, dwarf_derived_probe*>@= /usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/st= l_pair.h:99")?=0D process("/home/prasadkr/systemtap/stap").function("pair, std::allocator >, functiondecl*>@/usr/li= b/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_pair.= h:99")?=0D process("/home/prasadkr/systemtap/stap").function("pair, std::allocator >, kprobe_derived_probe*>= @/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/s= tl_pair.h:99")?=0D process("/home/prasadkr/systemtap/stap").function("pair, std::allocator >, std::basic_string, std::allocator > >@/usr/lib/gcc/ppc64-redha= t-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_pair.h:99")? $__p:stru= ct pair, std::allocator >, std::basic_string, std::allocator >= > const& $this:struct pair, std::allocator >, std::basic_string, std::allocator > >* const=0D process("/home/prasadkr/systemtap/stap").function("pair@/= usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl= _pair.h:99")?=0D process("/home/prasadkr/systemtap/stap").function("pair@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4= .4.4/bits/stl_pair.h:99")? $this:struct pair* const=0D process("/home/prasadkr/systemtap/stap").function("pair@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4= .4/bits/stl_pair.h:99")? $this:struct pair* const=0D process("/home/prasadkr/systemtap/stap").function("pair@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/b= its/stl_pair.h:99")? $this:struct pair* cons= t=0D process("/home/prasadkr/systemtap/stap").function("pair >*>@/usr/lib/gcc/ppc64-redhat-linux/4.= 4.4/../../../../include/c++/4.4.4/bits/stl_pair.h:99")? $this:struct pair >*>* const=0D process("/home/prasadkr/systemtap/stap").function("pair@/usr/lib/gcc/ppc64-= redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_pair.h:68")?=0D process("/home/prasadkr/systemtap/stap").function("pair@/usr/lib/gcc/ppc64-= redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_pair.h:79")?=0D process("/home/prasadkr/systemtap/stap").function("pair@/usr/lib/gcc/ppc64-= redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_pair.h:83")?=0D process("/home/prasadkr/systemtap/stap").function("parse@/home/prasadkr/sys= temtap/parse.cxx:1162")? $this:class parser* const=0D process("/home/prasadkr/systemtap/stap").function("parse@/home/prasadkr/sys= temtap/parse.cxx:172")? $s:struct systemtap_session& $i:istream& $pr:bool=0D process("/home/prasadkr/systemtap/stap").function("parse@/home/prasadkr/sys= temtap/parse.cxx:180")? $s:struct systemtap_session& $n:string const& $pr:b= ool=0D process("/home/prasadkr/systemtap/stap").function("parse_additive@/home/pra= sadkr/systemtap/parse.cxx:2435")? $this:class parser* const=0D process("/home/prasadkr/systemtap/stap").function("parse_array_in@/home/pra= sadkr/systemtap/parse.cxx:2299")? $this:class parser* const=0D process("/home/prasadkr/systemtap/stap").function("parse_assignment@/home/p= rasadkr/systemtap/parse.cxx:2126")? $this:class parser* const=0D process("/home/prasadkr/systemtap/stap").function("parse_boolean_and@/home/= prasadkr/systemtap/parse.cxx:2277")? $this:class parser* const=0D process("/home/prasadkr/systemtap/stap").function("parse_boolean_or@/home/p= rasadkr/systemtap/parse.cxx:2233")? $this:class parser* const=0D process("/home/prasadkr/systemtap/stap").function("parse_boolean_xor@/home/= prasadkr/systemtap/parse.cxx:2255")? $this:class parser* const=0D process("/home/prasadkr/systemtap/stap").function("parse_break_statement@/h= ome/prasadkr/systemtap/parse.cxx:1855")? $this:class parser* const=0D process("/home/prasadkr/systemtap/stap").function("parse_cmdline@/home/pras= adkr/systemtap/session.cxx:398")? $this:struct systemtap_session* const $ar= gc:int $argv:char* const*=0D process("/home/prasadkr/systemtap/stap").function("parse_comparison@/home/p= rasadkr/systemtap/parse.cxx:2360")? $this:class parser* const=0D process("/home/prasadkr/systemtap/stap").function("parse_concatenation@/hom= e/prasadkr/systemtap/parse.cxx:2411")? $this:class parser* const=0D process("/home/prasadkr/systemtap/stap").function("parse_continue_statement= @/home/prasadkr/systemtap/parse.cxx:1867")? $this:class parser* const=0D process("/home/prasadkr/systemtap/stap").function("parse_crement@/home/pras= adkr/systemtap/parse.cxx:2504")? $this:class parser* const=0D process("/home/prasadkr/systemtap/stap").function("parse_defined_op@/home/p= rasadkr/systemtap/parse.cxx:2905")? $this:class parser* const $t:struct tok= en const*=0D process("/home/prasadkr/systemtap/stap").function("parse_delete_statement@/= home/prasadkr/systemtap/parse.cxx:1828")? $this:class parser* const=0D process("/home/prasadkr/systemtap/stap").function("parse_embeddedcode@/home= /prasadkr/systemtap/parse.cxx:1331")? $this:class parser* const=0D process("/home/prasadkr/systemtap/stap").function("parse_entry_op@/home/pra= sadkr/systemtap/parse.cxx:2919")? $this:class parser* const $t:struct token= const*=0D process("/home/prasadkr/systemtap/stap").function("parse_error@/home/prasad= kr/systemtap/parse.h:57")?=0D process("/home/prasadkr/systemtap/stap").function("parse_error@/home/prasad= kr/systemtap/parse.h:59")?=0D process("/home/prasadkr/systemtap/stap").function("parse_error@/home/prasad= kr/systemtap/parse.h:61")?=0D process("/home/prasadkr/systemtap/stap").function("parse_expr_statement@/ho= me/prasadkr/systemtap/parse.cxx:1802")? $this:class parser* const=0D process("/home/prasadkr/systemtap/stap").function("parse_expression@/home/p= rasadkr/systemtap/parse.cxx:2119")?=0D process("/home/prasadkr/systemtap/stap").function("parse_for_loop@/home/pra= sadkr/systemtap/parse.cxx:1879")? $this:class parser* const=0D process("/home/prasadkr/systemtap/stap").function("parse_foreach_loop@/home= /prasadkr/systemtap/parse.cxx:1976")? $this:class parser* const=0D process("/home/prasadkr/systemtap/stap").function("parse_function_spec@/hom= e/prasadkr/systemtap/tapsets.cxx:946")? $this:struct dwarf_query* const $sp= ec:string const&=0D process("/home/prasadkr/systemtap/stap").function("parse_functiondecl@/home= /prasadkr/systemtap/parse.cxx:1540")? $this:class parser* const $functions:= class vector >&=0D process("/home/prasadkr/systemtap/stap").function("parse_global@/home/prasa= dkr/systemtap/parse.cxx:1478")? $this:class parser* const $globals:class ve= ctor >&=0D process("/home/prasadkr/systemtap/stap").function("parse_hist_op_or_bare_na= me@/home/prasadkr/systemtap/parse.cxx:2584")? $this:class parser* const $ho= p:struct hist_op*& $name:string&=0D process("/home/prasadkr/systemtap/stap").function("parse_if_statement@/home= /prasadkr/systemtap/parse.cxx:1768")? $this:class parser* const=0D process("/home/prasadkr/systemtap/stap").function("parse_indexable@/home/pr= asadkr/systemtap/parse.cxx:2615")? $this:class parser* const=0D process("/home/prasadkr/systemtap/stap").function("parse_kernel_config@/hom= e/prasadkr/systemtap/main.cxx:290")? $s:struct systemtap_session&=0D process("/home/prasadkr/systemtap/stap").function("parse_kernel_exports@/ho= me/prasadkr/systemtap/main.cxx:323")? $s:struct systemtap_session&=0D process("/home/prasadkr/systemtap/stap").function("parse_literal@/home/pras= adkr/systemtap/parse.cxx:1708")? $this:class parser* const=0D process("/home/prasadkr/systemtap/stap").function("parse_logical_and@/home/= prasadkr/systemtap/parse.cxx:2211")? $this:class parser* const=0D process("/home/prasadkr/systemtap/stap").function("parse_logical_or@/home/p= rasadkr/systemtap/parse.cxx:2189")? $this:class parser* const=0D process("/home/prasadkr/systemtap/stap").function("parse_multiplicative@/ho= me/prasadkr/systemtap/parse.cxx:2458")? $this:class parser* const=0D process("/home/prasadkr/systemtap/stap").function("parse_next_statement@/ho= me/prasadkr/systemtap/parse.cxx:1841")? $this:class parser* const=0D process("/home/prasadkr/systemtap/stap").function("parse_probe@/home/prasad= kr/systemtap/parse.cxx:1249")? $this:class parser* const $probe_ret:class v= ector >& $alias_ret:class vector >&=0D process("/home/prasadkr/systemtap/stap").function("parse_probe_format@/home= /prasadkr/systemtap/tapset-mark.cxx:257")? $this:struct mark_derived_probe*= const=0D process("/home/prasadkr/systemtap/stap").function("parse_probe_point@/home/= prasadkr/systemtap/parse.cxx:1623")? $this:class parser* const=0D process("/home/prasadkr/systemtap/stap").function("parse_return_statement@/= home/prasadkr/systemtap/parse.cxx:1813")? $this:class parser* const=0D process("/home/prasadkr/systemtap/stap").function("parse_shift@/home/prasad= kr/systemtap/parse.cxx:2388")? $this:class parser* const=0D process("/home/prasadkr/systemtap/stap").function("parse_statement@/home/pr= asadkr/systemtap/parse.cxx:1428")? $this:class parser* const=0D process("/home/prasadkr/systemtap/stap").function("parse_stmt_block@/home/p= rasadkr/systemtap/parse.cxx:1349")? $this:class parser* const=0D process("/home/prasadkr/systemtap/stap").function("parse_symbol@/home/prasa= dkr/systemtap/parse.cxx:2633")? $this:class parser* const=0D process("/home/prasadkr/systemtap/stap").function("parse_target_symbol@/hom= e/prasadkr/systemtap/parse.cxx:2860")? $this:class parser* const $t:struct = token const*=0D process("/home/prasadkr/systemtap/stap").function("parse_target_symbol_comp= onents@/home/prasadkr/systemtap/parse.cxx:2932")? $this:class parser* const= $e:struct target_symbol*=0D process("/home/prasadkr/systemtap/stap").function("parse_ternary@/home/pras= adkr/systemtap/parse.cxx:2163")? $this:class parser* const=0D process("/home/prasadkr/systemtap/stap").function("parse_try_block@/home/pr= asadkr/systemtap/parse.cxx:1394")? $this:class parser* const=0D process("/home/prasadkr/systemtap/stap").function("parse_unary@/home/prasad= kr/systemtap/parse.cxx:2481")? $this:class parser* const=0D process("/home/prasadkr/systemtap/stap").function("parse_value@/home/prasad= kr/systemtap/parse.cxx:2544")? $this:class parser* const=0D process("/home/prasadkr/systemtap/stap").function("parse_while_loop@/home/p= rasadkr/systemtap/parse.cxx:1945")? $this:class parser* const=0D process("/home/prasadkr/systemtap/stap").function("parser@/home/prasadkr/sy= stemtap/parse.cxx:189")? $this:class parser* const $s:struct systemtap_sess= ion& $i:istream& $p:bool=0D process("/home/prasadkr/systemtap/stap").function("parser@/home/prasadkr/sy= stemtap/parse.cxx:196")? $this:class parser* const $s:struct systemtap_sess= ion& $fn:string const& $p:bool=0D process("/home/prasadkr/systemtap/stap").function("partial_sort<__gnu_cxx::= __normal_iterator > >, bool (*)(const be_derived_probe*, const be= _derived_probe*)>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include= /c++/4.4.4/bits/stl_algo.h:5095")? $__last:class __normal_iterator > > $__middle:class __normal_iterator > > $__first:class __norm= al_iterator > > $__comp:void*=0D process("/home/prasadkr/systemtap/stap").function("pass_5@/home/prasadkr/sy= stemtap/main.cxx:839")?=0D process("/home/prasadkr/systemtap/stap").function("passes_0_4@/home/prasadk= r/systemtap/csclient.cxx:655")? $this:class compile_server_client* const=0D process("/home/prasadkr/systemtap/stap").function("passes_0_4@/home/prasadk= r/systemtap/main.cxx:406")? $s:struct systemtap_session&=0D process("/home/prasadkr/systemtap/stap").function("passes_0_4_again_with_se= rver@/home/prasadkr/systemtap/main.cxx:905")?=0D process("/home/prasadkr/systemtap/stap").function("peek@/home/prasadkr/syst= emtap/parse.cxx:662")? $this:class parser* const $wildcard:bool=0D process("/home/prasadkr/systemtap/stap").function("peek_kw@/home/prasadkr/s= ystemtap/parse.cxx:782")? $this:class parser* const $kw:string const&=0D process("/home/prasadkr/systemtap/stap").function("peek_op@/home/prasadkr/s= ystemtap/parse.cxx:775")? $this:class parser* const $op:string const&=0D process("/home/prasadkr/systemtap/stap").function("perf_builder@/home/prasa= dkr/systemtap/tapset-perfmon.cxx:175")?=0D process("/home/prasadkr/systemtap/stap").function("perf_derived_probe@/home= /prasadkr/systemtap/tapset-perfmon.cxx:52")? $this:struct perf_derived_prob= e* const $p:struct probe* $l:struct probe_point* $type:int64_t $config:int6= 4_t $i:int64_t=0D process("/home/prasadkr/systemtap/stap").function("perf_derived_probe_group= @/home/prasadkr/systemtap/tapset-perfmon.cxx:45")?=0D process("/home/prasadkr/systemtap/stap").function("pointer_stride@/home/pra= sadkr/systemtap/loc2c.c:2231")? $typedie:Dwarf_Die* $origin:struct location= * $attr_mem:Dwarf_Attribute $die_mem:Dwarf_Die=0D process("/home/prasadkr/systemtap/stap").function("pop@/usr/lib/gcc/ppc64-r= edhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_stack.h:208")?=0D process("/home/prasadkr/systemtap/stap").function("pop_active_lvalue@/home/= prasadkr/systemtap/staptree.cxx:1603")? $this:struct visitor* const=0D process("/home/prasadkr/systemtap/stap").function("pop_back@/usr/lib/gcc/pp= c64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_deque.h:1253"= )?=0D process("/home/prasadkr/systemtap/stap").function("pop_back@/usr/lib/gcc/pp= c64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_vector.h:764"= )?=0D process("/home/prasadkr/systemtap/stap").function("post_crement@/home/prasa= dkr/systemtap/staptree.h:134")?=0D process("/home/prasadkr/systemtap/stap").function("pptr@/usr/lib/gcc/ppc64-= redhat-linux/4.4.4/../../../../include/c++/4.4.4/streambuf:508")?=0D process("/home/prasadkr/systemtap/stap").function("pre_crement@/home/prasad= kr/systemtap/staptree.h:128")?=0D process("/home/prasadkr/systemtap/stap").function("prepare_rvalue@/home/pra= sadkr/systemtap/translate.cxx:3601")? $this:struct c_tmpcounter_assignment*= const $rval:struct tmpvar&=0D process("/home/prasadkr/systemtap/stap").function("prepare_rvalue@/home/pra= sadkr/systemtap/translate.cxx:3667")? $this:struct c_unparser_assignment* c= onst $op:string const& $rval:struct tmpvar& $tok:struct token const*=0D process("/home/prasadkr/systemtap/stap").function("prepare_section_rejectio= n@/home/prasadkr/systemtap/tapsets.cxx:6268")? $this:struct symbol_table* c= onst $mod:Dwfl_Module*=0D process("/home/prasadkr/systemtap/stap").function("prepare_symbol_data@/hom= e/prasadkr/systemtap/translate.cxx:5573")? $s:struct systemtap_session&=0D process("/home/prasadkr/systemtap/stap").function("prepare_translate_pass@/= home/prasadkr/systemtap/translate.cxx:5735")? $s:struct systemtap_session&= =0D process("/home/prasadkr/systemtap/stap").function("print@/home/prasadkr/sys= temtap/staptree.cxx:1027")? $this:struct null_statement const* const $o:ost= ream&=0D process("/home/prasadkr/systemtap/stap").function("print@/home/prasadkr/sys= temtap/staptree.cxx:1033")? $this:struct expr_statement const* const $o:ost= ream&=0D process("/home/prasadkr/systemtap/stap").function("print@/home/prasadkr/sys= temtap/staptree.cxx:1039")? $this:struct return_statement const* const $o:o= stream&=0D process("/home/prasadkr/systemtap/stap").function("print@/home/prasadkr/sys= temtap/staptree.cxx:1045")? $this:struct delete_statement const* const $o:o= stream&=0D process("/home/prasadkr/systemtap/stap").function("print@/home/prasadkr/sys= temtap/staptree.cxx:1050")? $this:struct next_statement const* const $o:ost= ream&=0D process("/home/prasadkr/systemtap/stap").function("print@/home/prasadkr/sys= temtap/staptree.cxx:1055")? $this:struct break_statement const* const $o:os= tream&=0D process("/home/prasadkr/systemtap/stap").function("print@/home/prasadkr/sys= temtap/staptree.cxx:1060")? $this:struct continue_statement const* const $o= :ostream&=0D process("/home/prasadkr/systemtap/stap").function("print@/home/prasadkr/sys= temtap/staptree.cxx:1065")? $this:struct if_statement const* const $o:ostre= am&=0D process("/home/prasadkr/systemtap/stap").function("print@/home/prasadkr/sys= temtap/staptree.cxx:1074")? $this:struct stapfile const* const $o:ostream&= =0D process("/home/prasadkr/systemtap/stap").function("print@/home/prasadkr/sys= temtap/staptree.cxx:1108")? $this:struct probe const* const $o:ostream&=0D process("/home/prasadkr/systemtap/stap").function("print@/home/prasadkr/sys= temtap/staptree.cxx:1140")? $this:struct probe_point const* const $o:ostrea= m& $print_extras:bool=0D process("/home/prasadkr/systemtap/stap").function("print@/home/prasadkr/sys= temtap/staptree.cxx:293")? $this:struct literal_string const* const $o:ostr= eam&=0D process("/home/prasadkr/systemtap/stap").function("print@/home/prasadkr/sys= temtap/staptree.cxx:305")? $this:struct literal_number const* const $o:ostr= eam&=0D process("/home/prasadkr/systemtap/stap").function("print@/home/prasadkr/sys= temtap/staptree.cxx:315")? $this:struct embedded_expr const* const $o:ostre= am&=0D process("/home/prasadkr/systemtap/stap").function("print@/home/prasadkr/sys= temtap/staptree.cxx:321")? $this:struct binary_expression const* const $o:o= stream&=0D process("/home/prasadkr/systemtap/stap").function("print@/home/prasadkr/sys= temtap/staptree.cxx:329")? $this:struct unary_expression const* const $o:os= tream&=0D process("/home/prasadkr/systemtap/stap").function("print@/home/prasadkr/sys= temtap/staptree.cxx:334")? $this:struct array_in const* const $o:ostream&=0D process("/home/prasadkr/systemtap/stap").function("print@/home/prasadkr/sys= temtap/staptree.cxx:346")? $this:struct post_crement const* const $o:ostrea= m&=0D process("/home/prasadkr/systemtap/stap").function("print@/home/prasadkr/sys= temtap/staptree.cxx:352")? $this:struct ternary_expression const* const $o:= ostream&=0D process("/home/prasadkr/systemtap/stap").function("print@/home/prasadkr/sys= temtap/staptree.cxx:360")? $this:struct symbol const* const $o:ostream&=0D process("/home/prasadkr/systemtap/stap").function("print@/home/prasadkr/sys= temtap/staptree.cxx:366")? $this:struct component const* const $o:ostream&= =0D process("/home/prasadkr/systemtap/stap").function("print@/home/prasadkr/sys= temtap/staptree.cxx:391")? $this:struct target_symbol const* const $o:ostre= am&=0D process("/home/prasadkr/systemtap/stap").function("print@/home/prasadkr/sys= temtap/staptree.cxx:401")? $this:struct cast_op const* const $o:ostream&=0D process("/home/prasadkr/systemtap/stap").function("print@/home/prasadkr/sys= temtap/staptree.cxx:415")? $this:struct defined_op const* const $o:ostream&= =0D process("/home/prasadkr/systemtap/stap").function("print@/home/prasadkr/sys= temtap/staptree.cxx:421")? $this:struct entry_op const* const $o:ostream&=0D process("/home/prasadkr/systemtap/stap").function("print@/home/prasadkr/sys= temtap/staptree.cxx:427")? $this:struct vardecl const* const $o:ostream&=0D process("/home/prasadkr/systemtap/stap").function("print@/home/prasadkr/sys= temtap/staptree.cxx:458")? $this:struct functiondecl const* const $o:ostrea= m&=0D process("/home/prasadkr/systemtap/stap").function("print@/home/prasadkr/sys= temtap/staptree.cxx:480")? $this:struct arrayindex const* const $o:ostream&= =0D process("/home/prasadkr/systemtap/stap").function("print@/home/prasadkr/sys= temtap/staptree.cxx:490")? $this:struct functioncall const* const $o:ostrea= m&=0D process("/home/prasadkr/systemtap/stap").function("print@/home/prasadkr/sys= temtap/staptree.cxx:867")? $this:struct print_format const* const $o:ostrea= m&=0D process("/home/prasadkr/systemtap/stap").function("print@/home/prasadkr/sys= temtap/staptree.cxx:886")? $this:struct stat_op const* const $o:ostream&=0D process("/home/prasadkr/systemtap/stap").function("print@/home/prasadkr/sys= temtap/staptree.cxx:916")? $this:struct hist_op const* const $o:ostream&=0D process("/home/prasadkr/systemtap/stap").function("print@/home/prasadkr/sys= temtap/staptree.cxx:948")? $this:struct embeddedcode const* const $o:ostrea= m&=0D process("/home/prasadkr/systemtap/stap").function("print@/home/prasadkr/sys= temtap/staptree.cxx:955")? $this:struct block const* const $o:ostream&=0D process("/home/prasadkr/systemtap/stap").function("print@/home/prasadkr/sys= temtap/staptree.cxx:972")? $this:struct try_block const* const $o:ostream&= =0D process("/home/prasadkr/systemtap/stap").function("print@/home/prasadkr/sys= temtap/staptree.cxx:984")? $this:struct for_loop const* const $o:ostream&=0D process("/home/prasadkr/systemtap/stap").function("print@/home/prasadkr/sys= temtap/staptree.cxx:997")? $this:struct foreach_loop const* const $o:ostrea= m&=0D process("/home/prasadkr/systemtap/stap").function("print_chars@/home/prasad= kr/systemtap/tapsets.cxx:2592")? $this:struct dwarf_pretty_print* const $st= art_type:struct Dwarf_Die* $e:struct target_symbol* $pf:struct print_format= *=0D process("/home/prasadkr/systemtap/stap").function("print_coverage_info@/hom= e/prasadkr/systemtap/coveragedb.cxx:25")? $s:struct systemtap_session&=0D process("/home/prasadkr/systemtap/stap").function("print_dupe_stamp@/home/p= rasadkr/systemtap/elaborate.h:144")? $this:struct derived_probe* const=0D process("/home/prasadkr/systemtap/stap").function("print_dupe_stamp@/home/p= rasadkr/systemtap/tapset-been.cxx:194")? $o:ostream&=0D process("/home/prasadkr/systemtap/stap").function("print_dupe_stamp@/home/p= rasadkr/systemtap/tapset-been.cxx:59")? $o:ostream&=0D process("/home/prasadkr/systemtap/stap").function("print_dupe_stamp@/home/p= rasadkr/systemtap/tapset-mark.cxx:411")? $this:struct mark_derived_probe* c= onst $o:ostream&=0D process("/home/prasadkr/systemtap/stap").function("print_dupe_stamp@/home/p= rasadkr/systemtap/tapset-timers.cxx:213")? $o:ostream&=0D process("/home/prasadkr/systemtap/stap").function("print_dupe_stamp@/home/p= rasadkr/systemtap/tapset-timers.cxx:44")? $o:ostream&=0D process("/home/prasadkr/systemtap/stap").function("print_dupe_stamp@/home/p= rasadkr/systemtap/tapset-utrace.cxx:226")? $this:struct utrace_derived_prob= e* const $o:ostream&=0D process("/home/prasadkr/systemtap/stap").function("print_dupe_stamp@/home/p= rasadkr/systemtap/tapsets.cxx:4068")? $this:struct dwarf_derived_probe* con= st $o:ostream&=0D process("/home/prasadkr/systemtap/stap").function("print_dupe_stamp@/home/p= rasadkr/systemtap/tapsets.cxx:464")? $o:ostream&=0D process("/home/prasadkr/systemtap/stap").function("print_dupe_stamp@/home/p= rasadkr/systemtap/tapsets.cxx:8219")? $this:struct tracepoint_derived_probe= * const $o:ostream&=0D process("/home/prasadkr/systemtap/stap").function("print_dupe_stamp_unprivi= leged@/home/prasadkr/systemtap/elaborate.cxx:197")? $o:ostream&=0D process("/home/prasadkr/systemtap/stap").function("print_dupe_stamp_unprivi= leged_process_owner@/home/prasadkr/systemtap/elaborate.cxx:203")? $o:ostrea= m&=0D process("/home/prasadkr/systemtap/stap").function("print_error@/home/prasad= kr/systemtap/parse.cxx:258")? $this:class parser* const $pe:struct parse_er= ror const&=0D process("/home/prasadkr/systemtap/stap").function("print_error@/home/prasad= kr/systemtap/session.cxx:1247")? $this:struct systemtap_session* const $e:s= truct semantic_error const&=0D process("/home/prasadkr/systemtap/stap").function("print_error_source@/home= /prasadkr/systemtap/session.cxx:1297")? $this:struct systemtap_session* con= st $message:ostream& $align:string& $tok:struct token const*=0D process("/home/prasadkr/systemtap/stap").function("print_format@/home/prasa= dkr/systemtap/staptree.h:328")?=0D process("/home/prasadkr/systemtap/stap").function("print_format@/home/prasa= dkr/systemtap/staptree.h:416")? $_char:bool $newline:bool $delim:bool $form= at:bool $stream:bool $this:struct print_format* const=0D process("/home/prasadkr/systemtap/stap").function("print_indexable@/home/pr= asadkr/systemtap/staptree.cxx:1461")? $this:struct indexable const* const $= o:ostream&=0D process("/home/prasadkr/systemtap/stap").function("print_locals@/home/prasa= dkr/systemtap/dwflpp.cxx:1791")? $this:struct dwflpp* const $scopes:class v= ector >& $o:ostream&=0D process("/home/prasadkr/systemtap/stap").function("print_members@/home/pras= adkr/systemtap/dwflpp.cxx:1972")? $this:struct dwflpp* const $vardie:struct= Dwarf_Die* $o:ostream&=0D process("/home/prasadkr/systemtap/stap").function("print_token@/home/prasad= kr/systemtap/session.cxx:1222")? $this:struct systemtap_session* const $o:o= stream& $tok:struct token const*=0D process("/home/prasadkr/systemtap/stap").function("print_warning@/home/pras= adkr/systemtap/session.cxx:1333")? $this:struct systemtap_session* const $m= essage_str:string const& $tok:struct token const*=0D process("/home/prasadkr/systemtap/stap").function("printf@/usr/include/bits= /stdio2.h:103")?=0D process("/home/prasadkr/systemtap/stap").function("printscript@/home/prasad= kr/systemtap/main.cxx:58")? $s:struct systemtap_session& $o:ostream&=0D process("/home/prasadkr/systemtap/stap").function("printsig@/home/prasadkr/= systemtap/elaborate.cxx:77")? $this:struct derived_probe const* const $o:os= tream&=0D process("/home/prasadkr/systemtap/stap").function("printsig@/home/prasadkr/= systemtap/staptree.cxx:1116")? $this:struct probe const* const $o:ostream&= =0D process("/home/prasadkr/systemtap/stap").function("printsig@/home/prasadkr/= systemtap/staptree.cxx:1173")? $this:struct probe_alias const* const $o:ost= ream&=0D process("/home/prasadkr/systemtap/stap").function("printsig@/home/prasadkr/= systemtap/staptree.cxx:442")? $this:struct vardecl const* const $o:ostream&= =0D process("/home/prasadkr/systemtap/stap").function("printsig@/home/prasadkr/= systemtap/staptree.cxx:468")? $this:struct functiondecl const* const $o:ost= ream&=0D process("/home/prasadkr/systemtap/stap").function("printsig@/home/prasadkr/= systemtap/tapsets.cxx:3723")? $this:struct dwarf_derived_probe const* const= $o:ostream&=0D process("/home/prasadkr/systemtap/stap").function("printsig@/home/prasadkr/= systemtap/tapsets.cxx:6980")? $this:struct kprobe_derived_probe const* cons= t $o:ostream&=0D process("/home/prasadkr/systemtap/stap").function("printsig@/home/prasadkr/= systemtap/tapsets.cxx:7508")? $this:struct hwbkpt_derived_probe const* cons= t $o:ostream&=0D process("/home/prasadkr/systemtap/stap").function("printsig_nested@/home/pr= asadkr/systemtap/elaborate.cxx:84")? $this:struct derived_probe const* cons= t $o:ostream&=0D process("/home/prasadkr/systemtap/stap").function("probe@/home/prasadkr/sys= temtap/staptree.cxx:113")? $this:struct probe* const=0D process("/home/prasadkr/systemtap/stap").function("probe@/home/prasadkr/sys= temtap/staptree.cxx:123")? $this:struct probe* const $p:struct probe const&= $l:struct probe_point*=0D process("/home/prasadkr/systemtap/stap").function("probe_alias@/home/prasad= kr/systemtap/staptree.cxx:1168")? $this:struct probe_alias* const $aliases:= class vector > const&=0D process("/home/prasadkr/systemtap/stap").function("probe_point@/home/prasad= kr/systemtap/staptree.cxx:105")? $this:struct probe_point* const=0D process("/home/prasadkr/systemtap/stap").function("probe_point@/home/prasad= kr/systemtap/staptree.cxx:91")? $this:struct probe_point* const $comps:clas= s vector >= const&=0D process("/home/prasadkr/systemtap/stap").function("probe_point@/home/prasad= kr/systemtap/staptree.cxx:98")? $this:struct probe_point* const $pp:struct = probe_point const&=0D process("/home/prasadkr/systemtap/stap").function("procfs_builder@/home/pra= sadkr/systemtap/tapset-procfs.cxx:509")?=0D process("/home/prasadkr/systemtap/stap").function("procfs_derived_probe@/ho= me/prasadkr/systemtap/tapset-procfs.cxx:94")? $this:struct procfs_derived_p= robe* const $s:struct systemtap_session& $p:struct probe* $l:struct probe_p= oint* $ps:string $w:bool $m:int64_t $umask:int64_t=0D process("/home/prasadkr/systemtap/stap").function("procfs_derived_probe_gro= up@/home/prasadkr/systemtap/tapset-procfs.cxx:69")? $this:struct procfs_der= ived_probe_group* const=0D process("/home/prasadkr/systemtap/stap").function("procfs_probe_set@/home/p= rasadkr/systemtap/tapset-procfs.cxx:56")?=0D process("/home/prasadkr/systemtap/stap").function("procfs_var_expanding_vis= itor@/home/prasadkr/systemtap/tapset-procfs.cxx:386")? $this:struct procfs_= var_expanding_visitor* const $s:struct systemtap_session& $pn:string const&= $path:string $write_probe:bool=0D process("/home/prasadkr/systemtap/stap").function("profile_derived_probe@/h= ome/prasadkr/systemtap/tapset-timers.cxx:391")? $this:struct profile_derive= d_probe* const $p:struct probe* $l:struct probe_point*=0D process("/home/prasadkr/systemtap/stap").function("profile_derived_probe_gr= oup@/home/prasadkr/systemtap/tapset-timers.cxx:383")?=0D process("/home/prasadkr/systemtap/stap").function("provide@/home/= prasadkr/systemtap/staptree.h:941")?=0D process("/home/prasadkr/systemtap/stap").function("provide@/hom= e/prasadkr/systemtap/staptree.h:941")?=0D process("/home/prasadkr/systemtap/stap").function("provide@/hom= e/prasadkr/systemtap/staptree.h:941")?=0D process("/home/prasadkr/systemtap/stap").function("provide@/home/prasadkr/systemtap/staptree.h:941")?=0D process("/home/prasadkr/systemtap/stap").function("provide@/home/pra= sadkr/systemtap/staptree.h:941")? $src:struct block* $this:struct update_vi= sitor* const=0D process("/home/prasadkr/systemtap/stap").function("provide= @/home/prasadkr/systemtap/staptree.h:941")?=0D process("/home/prasadkr/systemtap/stap").function("provide@/home/p= rasadkr/systemtap/staptree.h:941")?=0D process("/home/prasadkr/systemtap/stap").function("provide@/hom= e/prasadkr/systemtap/staptree.h:941")? $src:struct comparison* $this:struct= update_visitor* const=0D process("/home/prasadkr/systemtap/stap").function("provide@/= home/prasadkr/systemtap/staptree.h:941")? $src:struct concatenation* $this:= struct update_visitor* const=0D process("/home/prasadkr/systemtap/stap").function("provide@/home/prasadkr/systemtap/staptree.h:941")?=0D process("/home/prasadkr/systemtap/stap").function("provide@/hom= e/prasadkr/systemtap/staptree.h:941")?=0D process("/home/prasadkr/systemtap/stap").function("provide@/home/prasadkr/systemtap/staptree.h:941")?=0D process("/home/prasadkr/systemtap/stap").function("provide@/= home/prasadkr/systemtap/staptree.h:941")?=0D process("/home/prasadkr/systemtap/stap").function("provide@/h= ome/prasadkr/systemtap/staptree.h:941")?=0D process("/home/prasadkr/systemtap/stap").function("provide@/home/= prasadkr/systemtap/staptree.h:941")? $src:struct entry_op* $this:struct upd= ate_visitor* const=0D process("/home/prasadkr/systemtap/stap").function("provide@= /home/prasadkr/systemtap/staptree.h:941")?=0D process("/home/prasadkr/systemtap/stap").function("provide@/hom= e/prasadkr/systemtap/staptree.h:941")?=0D process("/home/prasadkr/systemtap/stap").function("provide@/home/= prasadkr/systemtap/staptree.h:941")?=0D process("/home/prasadkr/systemtap/stap").function("provide@/h= ome/prasadkr/systemtap/staptree.h:941")?=0D process("/home/prasadkr/systemtap/stap").function("provide@/h= ome/prasadkr/systemtap/staptree.h:941")?=0D process("/home/prasadkr/systemtap/stap").function("provide@/home/p= rasadkr/systemtap/staptree.h:941")?=0D process("/home/prasadkr/systemtap/stap").function("provide@/h= ome/prasadkr/systemtap/staptree.h:941")?=0D process("/home/prasadkr/systemtap/stap").function("provide@= /home/prasadkr/systemtap/staptree.h:941")?=0D process("/home/prasadkr/systemtap/stap").function("provide@= /home/prasadkr/systemtap/staptree.h:941")?=0D process("/home/prasadkr/systemtap/stap").function("provide@/home/prasadkr/systemtap/staptree.h:941")?=0D process("/home/prasadkr/systemtap/stap").function("provide= @/home/prasadkr/systemtap/staptree.h:941")?=0D process("/home/prasadkr/systemtap/stap").function("provide@= /home/prasadkr/systemtap/staptree.h:941")?=0D process("/home/prasadkr/systemtap/stap").function("provide@= /home/prasadkr/systemtap/staptree.h:941")?=0D process("/home/prasadkr/systemtap/stap").function("provide@/h= ome/prasadkr/systemtap/staptree.h:941")?=0D process("/home/prasadkr/systemtap/stap").function("provide@/ho= me/prasadkr/systemtap/staptree.h:941")?=0D process("/home/prasadkr/systemtap/stap").function("provide@/h= ome/prasadkr/systemtap/staptree.h:941")?=0D process("/home/prasadkr/systemtap/stap").function("provide@/home/prasadkr/systemtap/staptree.h:941")?=0D process("/home/prasadkr/systemtap/stap").function("provide@/home/p= rasadkr/systemtap/staptree.h:941")?=0D process("/home/prasadkr/systemtap/stap").function("provide@/home= /prasadkr/systemtap/staptree.h:941")? $src:struct statement* $this:struct u= pdate_visitor* const=0D process("/home/prasadkr/systemtap/stap").function("provide@/home/pr= asadkr/systemtap/staptree.h:941")?=0D process("/home/prasadkr/systemtap/stap").function("provide@/= home/prasadkr/systemtap/staptree.h:941")?=0D process("/home/prasadkr/systemtap/stap").function("provide@/home/prasadkr/systemtap/staptree.h:941")?=0D process("/home/prasadkr/systemtap/stap").function("provide@/home= /prasadkr/systemtap/staptree.h:941")?=0D process("/home/prasadkr/systemtap/stap").function("provide@/home/prasadkr/systemtap/staptree.h:941")? $src:struct unary_expression* = $this:struct update_visitor* const=0D process("/home/prasadkr/systemtap/stap").function("pubsetbuf@/usr/lib/gcc/p= pc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/streambuf:234")?=0D process("/home/prasadkr/systemtap/stap").function("purge_syscall_stubs@/hom= e/prasadkr/systemtap/tapsets.cxx:6373")? $this:struct symbol_table* const=0D process("/home/prasadkr/systemtap/stap").function("push@/usr/lib/gcc/ppc64-= redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_stack.h:182")?=0D process("/home/prasadkr/systemtap/stap").function("push_active_lvalue@/home= /prasadkr/systemtap/staptree.cxx:1597")? $this:struct visitor* const $e:str= uct expression*=0D process("/home/prasadkr/systemtap/stap").function("push_back@/usr/lib/gcc/p= pc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/basic_string.h:9= 14")?=0D process("/home/prasadkr/systemtap/stap").function("push_back@/usr/lib/gcc/p= pc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_deque.h:1201= ")?=0D process("/home/prasadkr/systemtap/stap").function("push_back@/usr/lib/gcc/p= pc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_list.h:919")= ?=0D process("/home/prasadkr/systemtap/stap").function("push_back@/usr/lib/gcc/p= pc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_vector.h:733= ")?=0D process("/home/prasadkr/systemtap/stap").function("push_deref@/home/prasadk= r/systemtap/tapsets.cxx:2694")? $this:struct dwarf_pretty_print* const $pf:= struct print_format* $fmt:string const& $e:struct target_symbol*=0D process("/home/prasadkr/systemtap/stap").function("query_addr@/home/prasadk= r/systemtap/tapsets.cxx:1227")? $addr:Dwarf_Addr $q:struct dwarf_query*=0D process("/home/prasadkr/systemtap/stap").function("query_cu@/home/prasadkr/= systemtap/tapsets.cxx:1609")? $cudie:struct Dwarf_Die* $arg:void*=0D process("/home/prasadkr/systemtap/stap").function("query_cu_containing_addr= ess@/home/prasadkr/systemtap/dwflpp.cxx:217")? $this:struct dwflpp* const $= a:Dwarf_Addr=0D process("/home/prasadkr/systemtap/stap").function("query_dwarf_func@/home/p= rasadkr/systemtap/tapsets.cxx:1543")? $func:struct Dwarf_Die* $bq:struct ba= se_query*=0D process("/home/prasadkr/systemtap/stap").function("query_dwarf_inline_insta= nce@/home/prasadkr/systemtap/tapsets.cxx:1507")? $die:struct Dwarf_Die* $ar= g:void*=0D process("/home/prasadkr/systemtap/stap").function("query_func_info@/home/pr= asadkr/systemtap/tapsets.cxx:1385")? $entrypc:Dwarf_Addr $fi:struct func_in= fo& $q:struct dwarf_query*=0D process("/home/prasadkr/systemtap/stap").function("query_inline_instance_in= fo@/home/prasadkr/systemtap/tapsets.cxx:1365")? $ii:struct inline_instance_= info& $q:struct dwarf_query*=0D process("/home/prasadkr/systemtap/stap").function("query_label@/home/prasad= kr/systemtap/tapsets.cxx:1332")? $func:string const& $label:char const* $fi= le:char const* $line:int $scope_die:struct Dwarf_Die* $stmt_addr:Dwarf_Addr= $q:struct dwarf_query*=0D process("/home/prasadkr/systemtap/stap").function("query_module@/home/prasa= dkr/systemtap/tapsets.cxx:1858")? $mod:Dwfl_Module* $name:char const* $addr= :Dwarf_Addr $arg:void*=0D process("/home/prasadkr/systemtap/stap").function("query_module_dwarf@/home= /prasadkr/systemtap/tapsets.cxx:792")? $this:struct dwarf_query* const=0D process("/home/prasadkr/systemtap/stap").function("query_module_functions@/= home/prasadkr/systemtap/tapsets.cxx:1711")? $this:struct dwarf_query* const= =0D process("/home/prasadkr/systemtap/stap").function("query_module_symtab@/hom= e/prasadkr/systemtap/tapsets.cxx:833")? $this:struct dwarf_query* const=0D process("/home/prasadkr/systemtap/stap").function("query_server_status@/hom= e/prasadkr/systemtap/csclient.cxx:1548")? $s:struct systemtap_session&=0D process("/home/prasadkr/systemtap/stap").function("query_server_status@/hom= e/prasadkr/systemtap/csclient.cxx:1559")?=0D process("/home/prasadkr/systemtap/stap").function("query_srcfile_label@/hom= e/prasadkr/systemtap/tapsets.cxx:1420")? $line:class dwarf_line_t const& $a= rg:void*=0D process("/home/prasadkr/systemtap/stap").function("query_srcfile_line@/home= /prasadkr/systemtap/tapsets.cxx:1440")? $line:class dwarf_line_t const& $ar= g:void*=0D process("/home/prasadkr/systemtap/stap").function("query_statement@/home/pr= asadkr/systemtap/tapsets.cxx:1208")? $func:string const& $file:char const* = $line:int $scope_die:struct Dwarf_Die* $stmt_addr:Dwarf_Addr $q:struct dwar= f_query*=0D process("/home/prasadkr/systemtap/stap").function("rbegin@/usr/lib/gcc/ppc6= 4-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_vector.h:461")?= $this:class vector >* const=0D process("/home/prasadkr/systemtap/stap").function("rdstate@/usr/lib/gcc/ppc= 64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/basic_ios.h:127")?= $this:struct basic_ios > const* const=0D process("/home/prasadkr/systemtap/stap").function("read@/usr/include/bits/u= nistd.h:35")? $__nbytes:size_t $__buf:void* $__fd:int=0D process("/home/prasadkr/systemtap/stap").function("read_from_elf_file@/home= /prasadkr/systemtap/tapsets.cxx:6227")? $this:struct symbol_table* const $p= ath:string const& $sess:struct systemtap_session const&=0D process("/home/prasadkr/systemtap/stap").function("read_from_text_file@/hom= e/prasadkr/systemtap/tapsets.cxx:6251")? $this:struct symbol_table* const $= path:string const& $sess:struct systemtap_session const&=0D process("/home/prasadkr/systemtap/stap").function("read_symbols@/home/prasa= dkr/systemtap/tapsets.cxx:6177")? $this:struct symbol_table* const $f:FILE*= $path:string const&=0D process("/home/prasadkr/systemtap/stap").function("record_actions@/home/pra= sadkr/systemtap/translate.cxx:2343")? $this:struct c_unparser* const $actio= ns:unsigned int $tok:struct token const* $update:bool=0D process("/home/prasadkr/systemtap/stap").function("record_semaphore@/home/p= rasadkr/systemtap/tapsets.cxx:5661")? $this:struct sdt_query* const $result= s:class vector >& $start:uns= igned int=0D process("/home/prasadkr/systemtap/stap").function("recurse@/home/prasadkr/s= ystemtap/tapsets.cxx:2351")? $this:struct dwarf_pretty_print* const $start_= type:struct Dwarf_Die* $e:struct target_symbol* $pf:struct print_format* $t= op:bool=0D process("/home/prasadkr/systemtap/stap").function("recurse_array@/home/pras= adkr/systemtap/tapsets.cxx:2429")? $this:struct dwarf_pretty_print* const $= type:struct Dwarf_Die* $e:struct target_symbol* $pf:struct print_format* $t= op:bool=0D process("/home/prasadkr/systemtap/stap").function("recurse_base@/home/prasa= dkr/systemtap/tapsets.cxx:2395")? $this:struct dwarf_pretty_print* const $t= ype:struct Dwarf_Die* $e:struct target_symbol* $pf:struct print_format*=0D process("/home/prasadkr/systemtap/stap").function("recurse_pointer@/home/pr= asadkr/systemtap/tapsets.cxx:2466")? $this:struct dwarf_pretty_print* const= $type:struct Dwarf_Die* $e:struct target_symbol* $pf:struct print_format* = $top:bool=0D process("/home/prasadkr/systemtap/stap").function("recurse_struct@/home/pra= sadkr/systemtap/tapsets.cxx:2499")? $this:struct dwarf_pretty_print* const = $type:struct Dwarf_Die* $e:struct target_symbol* $pf:struct print_format* $= top:bool=0D process("/home/prasadkr/systemtap/stap").function("recurse_struct_members@/= home/prasadkr/systemtap/tapsets.cxx:2526")? $this:struct dwarf_pretty_print= * const $type:struct Dwarf_Die* $e:struct target_symbol* $pf:struct print_f= ormat* $count:int&=0D process("/home/prasadkr/systemtap/stap").function("recursion_info@/home/pra= sadkr/systemtap/translate.cxx:5697")? $s:struct systemtap_session& $this:st= ruct recursion_info* const=0D process("/home/prasadkr/systemtap/stap").function("regexp_match@/home/prasa= dkr/systemtap/util.cxx:586")? $value:string const& $re:string const& $match= es:class vector, std::alloca= tor >, std::allocator,= std::allocator > > >&=0D process("/home/prasadkr/systemtap/stap").function("register_function_and_st= atement_variants@/home/prasadkr/systemtap/tapsets.cxx:4116")? $root:class m= atch_node* $dw:struct dwarf_builder* $bind_unprivileged_p:bool=0D process("/home/prasadkr/systemtap/stap").function("register_function_varian= ts@/home/prasadkr/systemtap/tapsets.cxx:4094")? $root:class match_node* $dw= :struct dwarf_builder* $bind_unprivileged_p:bool=0D process("/home/prasadkr/systemtap/stap").function("register_library_aliases= @/home/prasadkr/systemtap/session.cxx:1173")? $this:struct systemtap_sessio= n* const=0D process("/home/prasadkr/systemtap/stap").function("register_patterns@/home/= prasadkr/systemtap/tapsets.cxx:4136")? $s:struct systemtap_session&=0D process("/home/prasadkr/systemtap/stap").function("register_standard_tapset= s@/home/prasadkr/systemtap/tapsets.cxx:8716")? $s:struct systemtap_session&= =0D process("/home/prasadkr/systemtap/stap").function("register_statement_varia= nts@/home/prasadkr/systemtap/tapsets.cxx:4084")? $root:class match_node* $d= w:struct dwarf_builder* $bind_unprivileged_p:bool=0D process("/home/prasadkr/systemtap/stap").function("register_tapset_been@/ho= me/prasadkr/systemtap/tapset-been.cxx:218")? $s:struct systemtap_session&=0D process("/home/prasadkr/systemtap/stap").function("register_tapset_itrace@/= home/prasadkr/systemtap/tapset-itrace.cxx:297")? $s:struct systemtap_sessio= n&=0D process("/home/prasadkr/systemtap/stap").function("register_tapset_mark@/ho= me/prasadkr/systemtap/tapset-mark.cxx:703")? $s:struct systemtap_session&=0D process("/home/prasadkr/systemtap/stap").function("register_tapset_perf@/ho= me/prasadkr/systemtap/tapset-perfmon.cxx:224")? $s:struct systemtap_session= &=0D process("/home/prasadkr/systemtap/stap").function("register_tapset_procfs@/= home/prasadkr/systemtap/tapset-procfs.cxx:602")? $s:struct systemtap_sessio= n&=0D process("/home/prasadkr/systemtap/stap").function("register_tapset_timers@/= home/prasadkr/systemtap/tapset-timers.cxx:602")? $s:struct systemtap_sessio= n&=0D process("/home/prasadkr/systemtap/stap").function("register_tapset_utrace@/= home/prasadkr/systemtap/tapset-utrace.cxx:1076")? $s:struct systemtap_sessi= on&=0D process("/home/prasadkr/systemtap/stap").function("reject_section@/home/pra= sadkr/systemtap/tapsets.cxx:6305")? $this:struct symbol_table* const $secti= on:GElf_Word=0D process("/home/prasadkr/systemtap/stap").function("relocate_address@/home/p= rasadkr/systemtap/dwflpp.cxx:3105")? $this:struct dwflpp* const $dw_addr:Dw= arf_Addr $reloc_section:string&=0D process("/home/prasadkr/systemtap/stap").function("remote@/home/prasadkr/sy= stemtap/remote.h:20")?=0D process("/home/prasadkr/systemtap/stap").function("remove_file_or_dir@/home= /prasadkr/systemtap/util.cxx:208")? $name:char const*=0D process("/home/prasadkr/systemtap/stap").function("remove_temp_dir@/home/pr= asadkr/systemtap/main.cxx:382")? $s:struct systemtap_session&=0D process("/home/prasadkr/systemtap/stap").function("replace@/hom= e/prasadkr/systemtap/staptree.h:946")? $clearok:bool=0D process("/home/prasadkr/systemtap/stap").function("replace@= /home/prasadkr/systemtap/staptree.h:946")?=0D process("/home/prasadkr/systemtap/stap").function("replace@/hom= e/prasadkr/systemtap/staptree.h:946")?=0D process("/home/prasadkr/systemtap/stap").function("replace@/home/p= rasadkr/systemtap/staptree.h:946")? $clearok:bool $src:struct hist_op*& $th= is:struct update_visitor* const=0D process("/home/prasadkr/systemtap/stap").function("replace@/home= /prasadkr/systemtap/staptree.h:946")? $clearok:bool=0D process("/home/prasadkr/systemtap/stap").function("replace@/home= /prasadkr/systemtap/staptree.h:946")?=0D process("/home/prasadkr/systemtap/stap").function("replace@/home/pr= asadkr/systemtap/staptree.h:946")?=0D process("/home/prasadkr/systemtap/stap").function("replace@/= home/prasadkr/systemtap/staptree.h:946")? $clearok:bool=0D process("/home/prasadkr/systemtap/stap").function("replace@/usr/lib/gcc/ppc= 64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/basic_string.h:131= 8")? $__pos:size_t $this:struct basic_string, = std::allocator >* const=0D process("/home/prasadkr/systemtap/stap").function("replace_if<__gnu_cxx::__= normal_iterator, std:= :allocator > >, bool (*)(char), char>@/usr/lib/gcc/ppc64-redhat-linux= /4.4.4/../../../../include/c++/4.4.4/bits/stl_algo.h:4793")? $__pred:void* = $__last:class __normal_iterator, std::allocator > > $__first:class __normal_iterator, std::allocator > >= =0D process("/home/prasadkr/systemtap/stap").function("require@/hom= e/prasadkr/systemtap/staptree.h:927")? $clearok:bool $src:struct arrayindex= * $this:struct update_visitor* const=0D process("/home/prasadkr/systemtap/stap").function("require@= /home/prasadkr/systemtap/staptree.h:927")? $clearok:bool $src:struct expr_s= tatement* $this:struct update_visitor* const=0D process("/home/prasadkr/systemtap/stap").function("require@/hom= e/prasadkr/systemtap/staptree.h:927")?=0D process("/home/prasadkr/systemtap/stap").function("require@/home/p= rasadkr/systemtap/staptree.h:927")? $src:struct hist_op* $this:struct updat= e_visitor* const=0D process("/home/prasadkr/systemtap/stap").function("require@/home= /prasadkr/systemtap/staptree.cxx:2760")? $this:struct update_visitor* const= $src:struct indexable* $clearok:bool=0D process("/home/prasadkr/systemtap/stap").function("require@/home/prasadkr/systemtap/staptree.h:927")?=0D process("/home/prasadkr/systemtap/stap").function("require@/home= /prasadkr/systemtap/staptree.h:927")?=0D process("/home/prasadkr/systemtap/stap").function("require@/home/pr= asadkr/systemtap/staptree.h:927")?=0D process("/home/prasadkr/systemtap/stap").function("require@/= home/prasadkr/systemtap/staptree.h:927")?=0D process("/home/prasadkr/systemtap/stap").function("reset@/usr/lib/gcc/ppc64= -redhat-linux/4.4.4/../../../../include/c++/4.4.4/tr1/shared_ptr.h:496")?=0D process("/home/prasadkr/systemtap/stap").function("resize@/usr/lib/gcc/ppc6= 4-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/basic_string.h:666"= )? $this:struct basic_string, std::allocator >* const=0D process("/home/prasadkr/systemtap/stap").function("resize@/usr/lib/gcc/ppc6= 4-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_vector.h:552")?= =0D process("/home/prasadkr/systemtap/stap").function("resolve_2types@/home/prasadkr/systemtap/elaborate.cxx:4111")? $t:enum exp_type= $r:struct typeresolution_info* $referent:struct vardecl* $referrer:struct = arrayindex*=0D process("/home/prasadkr/systemtap/stap").function("resolve_2types@/home/prasadkr/systemtap/elaborate.cxx:4111")? $t:enum e= xp_type $r:struct typeresolution_info* $referent:struct functiondecl* $refe= rrer:struct functioncall*=0D process("/home/prasadkr/systemtap/stap").function("resolve_2types@/home/prasadkr/systemtap/elaborate.cxx:4111")? $referrer:struct sym= bol* $referent:struct vardecl* $r:struct typeresolution_info* $t:enum exp_t= ype $accept_unknown:bool=0D process("/home/prasadkr/systemtap/stap").function("resolve_host@/home/prasa= dkr/systemtap/csclient.cxx:2600")? $server:struct compile_server_info& $res= olved_servers:class vector >&=0D process("/home/prasadkr/systemtap/stap").function("resolve_prologue_endings= @/home/prasadkr/systemtap/dwflpp.cxx:1388")? $this:struct dwflpp* const $fu= ncs:func_info_map_t&=0D process("/home/prasadkr/systemtap/stap").function("resolve_tracepoint_arg_t= ype@/home/prasadkr/systemtap/tapsets.cxx:8122")? $arg:struct tracepoint_arg= &=0D process("/home/prasadkr/systemtap/stap").function("resolve_unqualified_inne= r_typedie@/home/prasadkr/systemtap/dwflpp.cxx:2274")? $this:struct dwflpp* = const $typedie:struct Dwarf_Die* $innerdie:struct Dwarf_Die* $e:struct targ= et_symbol const*=0D process("/home/prasadkr/systemtap/stap").function("resolved@/home/prasadkr/= systemtap/elaborate.cxx:4896")? $this:struct typeresolution_info* const $to= k:struct token const*=0D process("/home/prasadkr/systemtap/stap").function("result@/home/prasadkr/sy= stemtap/hash.cxx:104")? $this:struct hash* const $r:string&=0D process("/home/prasadkr/systemtap/stap").function("return_statement@/home/p= rasadkr/systemtap/staptree.h:616")?=0D process("/home/prasadkr/systemtap/stap").function("rewrite_lvalue@/home/pra= sadkr/systemtap/tapsets.cxx:2013")? $this:struct var_expanding_visitor* con= st $tok:struct token const* $eop:string const& $lvalue:struct expression*& = $rvalue:struct expression*&=0D process("/home/prasadkr/systemtap/stap").function("rfind@/usr/lib/gcc/ppc64= -redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/basic_string.h:1729"= )? $this:struct basic_string, std::allocator > const* const=0D process("/home/prasadkr/systemtap/stap").function("run_make_cmd@/home/prasa= dkr/systemtap/buildrun.cxx:37")? $s:struct systemtap_session& $make_cmd:str= ing&=0D process("/home/prasadkr/systemtap/stap").function("runtime_error@/usr/lib/g= cc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/stdexcept:108")?= =0D process("/home/prasadkr/systemtap/stap").function("saveargs@/home/prasadkr/= systemtap/tapsets.cxx:3932")? $this:struct dwarf_derived_probe* const $q:st= ruct dwarf_query& $scope_die:struct Dwarf_Die* $dwfl_addr:Dwarf_Addr=0D process("/home/prasadkr/systemtap/stap").function("saveargs@/home/prasadkr/= systemtap/tapsets.cxx:6546")? $this:struct uprobe_derived_probe* const $nar= gs:int=0D process("/home/prasadkr/systemtap/stap").function("scan@/home/prasadkr/syst= emtap/parse.cxx:898")? $this:class lexer* const $wildcard:bool=0D process("/home/prasadkr/systemtap/stap").function("scan_pp@/home/prasadkr/s= ystemtap/parse.cxx:502")? $this:class parser* const $wildcard:bool=0D process("/home/prasadkr/systemtap/stap").function("script_location@/home/pr= asadkr/systemtap/elaborate.cxx:151")? $this:struct derived_probe const* con= st=0D process("/home/prasadkr/systemtap/stap").function("sdt_kprobe_var_expanding= _visitor@/home/prasadkr/systemtap/tapsets.cxx:4630")?=0D process("/home/prasadkr/systemtap/stap").function("sdt_query@/home/prasadkr= /systemtap/tapsets.cxx:5299")? $this:struct sdt_query* const $base_probe:st= ruct probe* $base_loc:struct probe_point* $dw:struct dwflpp& $params:litera= l_map_t const& $results:class vector >&=0D process("/home/prasadkr/systemtap/stap").function("sdt_uprobe_var_expanding= _visitor@/home/prasadkr/systemtap/tapsets.cxx:4654")? $this:struct sdt_upro= be_var_expanding_visitor* const $s:struct systemtap_session& $elf_machine:i= nt $process_name:string const& $provider_name:string const& $probe_name:str= ing const& $probe_type:enum stap_sdt_probe_type $arg_string:string const& $= ac:int=0D process("/home/prasadkr/systemtap/stap").function("seekp@/home/prasadkr/sys= temtap/translate.h:40")?=0D process("/home/prasadkr/systemtap/stap").function("semantic_error@/home/pra= sadkr/systemtap/staptree.h:29")?=0D process("/home/prasadkr/systemtap/stap").function("semantic_error@/home/pra= sadkr/systemtap/staptree.h:36")?=0D process("/home/prasadkr/systemtap/stap").function("semantic_error@/home/pra= sadkr/systemtap/staptree.h:38")?=0D process("/home/prasadkr/systemtap/stap").function("semantic_pass@/home/pras= adkr/systemtap/elaborate.cxx:1632")? $s:struct systemtap_session&=0D process("/home/prasadkr/systemtap/stap").function("semantic_pass_conditions= @/home/prasadkr/systemtap/elaborate.cxx:1157")? $sess:struct systemtap_sess= ion&=0D process("/home/prasadkr/systemtap/stap").function("semantic_pass_const_fold= @/home/prasadkr/systemtap/elaborate.cxx:3546")?=0D process("/home/prasadkr/systemtap/stap").function("semantic_pass_opt1@/home= /prasadkr/systemtap/elaborate.cxx:1989")? $s:struct systemtap_session& $rel= axed_p:bool&=0D process("/home/prasadkr/systemtap/stap").function("semantic_pass_opt2@/home= /prasadkr/systemtap/elaborate.cxx:2030")? $s:struct systemtap_session& $rel= axed_p:bool& $iterations:unsigned int=0D process("/home/prasadkr/systemtap/stap").function("semantic_pass_opt3@/home= /prasadkr/systemtap/elaborate.cxx:2282")? $s:struct systemtap_session& $rel= axed_p:bool&=0D process("/home/prasadkr/systemtap/stap").function("semantic_pass_opt4@/home= /prasadkr/systemtap/elaborate.cxx:2535")? $s:struct systemtap_session& $rel= axed_p:bool&=0D process("/home/prasadkr/systemtap/stap").function("semantic_pass_opt5@/home= /prasadkr/systemtap/elaborate.cxx:3000")? $s:struct systemtap_session& $rel= axed_p:bool&=0D process("/home/prasadkr/systemtap/stap").function("semantic_pass_opt6@/home= /prasadkr/systemtap/elaborate.cxx:3613")? $s:struct systemtap_session& $rel= axed_p:bool&=0D process("/home/prasadkr/systemtap/stap").function("semantic_pass_optimize1@= /home/prasadkr/systemtap/elaborate.cxx:3662")? $s:struct systemtap_session&= =0D process("/home/prasadkr/systemtap/stap").function("semantic_pass_optimize2@= /home/prasadkr/systemtap/elaborate.cxx:3703")? $s:struct systemtap_session&= =0D process("/home/prasadkr/systemtap/stap").function("semantic_pass_stats@/hom= e/prasadkr/systemtap/elaborate.cxx:1071")? $sess:struct systemtap_session&= =0D process("/home/prasadkr/systemtap/stap").function("semantic_pass_symbols@/h= ome/prasadkr/systemtap/elaborate.cxx:1260")? $s:struct systemtap_session&=0D process("/home/prasadkr/systemtap/stap").function("semantic_pass_types@/hom= e/prasadkr/systemtap/elaborate.cxx:3731")? $s:struct systemtap_session&=0D process("/home/prasadkr/systemtap/stap").function("semantic_pass_vars@/home= /prasadkr/systemtap/elaborate.cxx:1103")? $sess:struct systemtap_session&=0D process("/home/prasadkr/systemtap/stap").function("server_spec_to_pmask@/ho= me/prasadkr/systemtap/csclient.cxx:1489")? $server_spec:string const&=0D process("/home/prasadkr/systemtap/stap").function("set<__gnu_cxx::__normal_= iterator, std::allocat= or >*, std::vector, st= d::allocator >, std::allocator, std::allocator > > > > >@/usr/lib/gcc/ppc64-redhat-linux/4.= 4.4/../../../../include/c++/4.4.4/bits/stl_set.h:159")?=0D process("/home/prasadkr/systemtap/stap").function("set@/home/prasadkr/syste= mtap/translate.cxx:666")? $this:struct mapvar const* const $indices:class v= ector > const& $val:struct tmpvar const&=0D process("/home/prasadkr/systemtap/stap").function("set@/usr/lib/gcc/ppc64-r= edhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_set.h:136")?=0D process("/home/prasadkr/systemtap/stap").function("set@/usr/lib/gcc/ppc64-r= edhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_set.h:188")?=0D process("/home/prasadkr/systemtap/stap").function("set_arity@/home/prasadkr= /systemtap/staptree.cxx:155")? $this:struct vardecl* const $a:int $t:struct= token const*=0D process("/home/prasadkr/systemtap/stap").function("set_current_file@/home/p= rasadkr/systemtap/parse.cxx:827")? $this:class lexer* const $f:struct stapf= ile*=0D process("/home/prasadkr/systemtap/stap").function("set_intersection, std::_Rb_tree_const_iterator, st= d::insert_iterator, std::allocator > > >@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c+= +/4.4.4/bits/stl_algo.h:5632")? $__first1:struct _Rb_tree_const_iterator $__last1:struct _Rb_tree_const_iterator $__first2:struct = _Rb_tree_const_iterator $__last2:struct _Rb_tree_const_iterator $__result:class insert_iterator, std::allocator > >=0D process("/home/prasadkr/systemtap/stap").function("set_try_server@/home/pra= sadkr/systemtap/session.cxx:1096")? $this:struct systemtap_session* const $= t:int=0D process("/home/prasadkr/systemtap/stap").function("setf@/usr/lib/gcc/ppc64-= redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/ios_base.h:582")? $__= fmtfl:fmtflags $this:class ios_base* const=0D process("/home/prasadkr/systemtap/stap").function("setf@/usr/lib/gcc/ppc64-= redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/ios_base.h:599")?=0D process("/home/prasadkr/systemtap/stap").function("setstate@/usr/lib/gcc/pp= c64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/basic_ios.h:147")= ? $this:struct basic_ios >* const=0D process("/home/prasadkr/systemtap/stap").function("setup_dwfl_kernel@/home/= prasadkr/systemtap/setupdwfl.cxx:260")? $modules_found:unsigned int* $s:str= uct systemtap_session&=0D process("/home/prasadkr/systemtap/stap").function("setup_dwfl_kernel@/home/= prasadkr/systemtap/setupdwfl.cxx:324")? $name:string const& $found:unsigned= int* $s:struct systemtap_session&=0D process("/home/prasadkr/systemtap/stap").function("setup_dwfl_kernel@/home/= prasadkr/systemtap/setupdwfl.cxx:354")? $names:class set, std::allocator >, std::less, std::allocator > >, std::allocat= or, std::allocator > >= > const& $found:unsigned int* $s:struct systemtap_session&=0D process("/home/prasadkr/systemtap/stap").function("setup_dwfl_report_kernel= _p@/home/prasadkr/systemtap/setupdwfl.cxx:192")? $modname:char const* $file= name:char const*=0D process("/home/prasadkr/systemtap/stap").function("setup_dwfl_user@/home/pr= asadkr/systemtap/setupdwfl.cxx:372")? $name:string const&=0D process("/home/prasadkr/systemtap/stap").function("setup_dwfl_user@/home/pr= asadkr/systemtap/setupdwfl.cxx:403")? $begin:class __normal_iterator, std::allocator >*, st= d::vector, std::allocator >, std::allocator, std::= allocator > > > >& $end:class __normal_iterator, std::allocator >*, std::vector, std::allocator >, std::all= ocator, std::allocator= > > > > const& $all_needed:bool=0D process("/home/prasadkr/systemtap/stap").function("setup_kernel@/home/prasa= dkr/systemtap/dwflpp.cxx:309")? $this:struct dwflpp* const $name:string con= st& $debuginfo_needed:bool=0D process("/home/prasadkr/systemtap/stap").function("setup_kernel@/home/prasa= dkr/systemtap/dwflpp.cxx:333")? $this:struct dwflpp* const $names:class vec= tor, std::allocator >,= std::allocator, std::alloca= tor > > > const& $debuginfo_needed:bool=0D process("/home/prasadkr/systemtap/stap").function("setup_kernel_release@/ho= me/prasadkr/systemtap/session.cxx:1119")? $this:struct systemtap_session* c= onst $kstr:char const*=0D process("/home/prasadkr/systemtap/stap").function("setup_mod_deps@/home/pra= sadkr/systemtap/setupdwfl.cxx:112")?=0D process("/home/prasadkr/systemtap/stap").function("setup_note_probe_entry@/= home/prasadkr/systemtap/tapsets.cxx:5502")? $this:struct sdt_query* const $= type:int $data:char const* $len:size_t=0D process("/home/prasadkr/systemtap/stap").function("setup_note_probe_entry_c= allback@/home/prasadkr/systemtap/tapsets.cxx:5494")? $object:void* $type:in= t $data:char const* $len:size_t=0D process("/home/prasadkr/systemtap/stap").function("setup_signals@/home/pras= adkr/systemtap/main.cxx:269")? $handler:sighandler_t=0D process("/home/prasadkr/systemtap/stap").function("setup_user@/home/prasadk= r/systemtap/dwflpp.cxx:361")? $this:struct dwflpp* const $modules:class vec= tor, std::allocator >,= std::allocator, std::alloca= tor > > > const& $debuginfo_needed:bool=0D process("/home/prasadkr/systemtap/stap").function("shared_ptr@/us= r/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/tr1/shared= _ptr.h:841")?=0D process("/home/prasadkr/systemtap/stap").function("shared_ptr@/usr/lib/gcc/= ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/tr1/shared_ptr.h:834= ")?=0D process("/home/prasadkr/systemtap/stap").function("shared_ptr@/usr/lib/gcc/= ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/tr1/shared_ptr.h:836= ")?=0D process("/home/prasadkr/systemtap/stap").function("shortname@/home/prasadkr= /systemtap/translate.cxx:1883")? $e:enum exp_type=0D process("/home/prasadkr/systemtap/stap").function("showbase@/usr/lib/gcc/pp= c64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/ios_base.h:815")?= $__base:class ios_base&=0D process("/home/prasadkr/systemtap/stap").function("side_effect_free@/home/p= rasadkr/systemtap/staptree.cxx:2211")? $this:struct varuse_collecting_visit= or* const=0D process("/home/prasadkr/systemtap/stap").function("side_effect_free_wrt@/ho= me/prasadkr/systemtap/staptree.cxx:2218")? $this:struct varuse_collecting_v= isitor* const $vars:class set, std::allocator= > const&=0D process("/home/prasadkr/systemtap/stap").function("size@/usr/lib/gcc/ppc64-= redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/basic_string.h:628")?= =0D process("/home/prasadkr/systemtap/stap").function("size@/usr/lib/gcc/ppc64-= redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_deque.h:1005")?=0D process("/home/prasadkr/systemtap/stap").function("size@/usr/lib/gcc/ppc64-= redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_multimap.h:415")?= $this:class multimap, std::= allocator >, dwarf_derived_probe*, std::less, std::allocator > >, std::allocator, std::allocator = >, dwarf_derived_probe*> > > const* const=0D process("/home/prasadkr/systemtap/stap").function("size@/usr/lib/gcc/ppc64-= redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_set.h:366")? $thi= s:class set, std::allocator<= char> >, std::less, std::all= ocator > >, std::allocator, std::allocator > > > const* const=0D process("/home/prasadkr/systemtap/stap").function("size@/usr/lib/gcc/ppc64-= redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_stack.h:147")?=0D process("/home/prasadkr/systemtap/stap").function("size@/usr/lib/gcc/ppc64-= redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_tree.h:670")?=0D process("/home/prasadkr/systemtap/stap").function("size@/usr/lib/gcc/ppc64-= redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_vector.h:532")?=0D process("/home/prasadkr/systemtap/stap").function("size@/usr/lib/gcc/ppc64-= redhat-linux/4.4.4/../../../../include/c++/4.4.4/tr1_impl/hashtable:277")? = $this:class _Hashtable, std::alloc= ator >, std::_Select1st >, std::equal_to, std::tr1::hash, std::tr1::= __detail::_Mod_range_hashing, std::tr1::__detail::_Default_ranged_hash, std= ::tr1::__detail::_Prime_rehash_policy, false, false, true> const* const=0D process("/home/prasadkr/systemtap/stap").function("skip_atoi@/home/prasadkr= /systemtap/tapset-mark.cxx:247")?=0D process("/home/prasadkr/systemtap/stap").function("skip_pp@/home/prasadkr/s= ystemtap/parse.cxx:616")? $this:class parser* const=0D process("/home/prasadkr/systemtap/stap").function("snprintf@/usr/include/bi= ts/stdio2.h:62")?=0D process("/home/prasadkr/systemtap/stap").function("sole_location@/home/pras= adkr/systemtap/elaborate.cxx:139")? $this:struct derived_probe const* const= =0D process("/home/prasadkr/systemtap/stap").function("sort<__gnu_cxx::__normal= _iterator > >, bool (*)(const be_derived_probe*, const be_derived= _probe*)>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4= .4/bits/stl_algo.h:5244")? $__comp:void* $__last:class __normal_iterator > > $__first:class __normal_iterator > >=0D process("/home/prasadkr/systemtap/stap").function("sort_heap<__gnu_cxx::__n= ormal_iterator > >, bool (*)(const be_derived_probe*, const be_de= rived_probe*)>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c+= +/4.4.4/bits/stl_heap.h:482")?=0D process("/home/prasadkr/systemtap/stap").function("splice@/usr/lib/gcc/ppc6= 4-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_list.h:1152")? = $__x:class list, std::alloca= tor >, std::allocator,= std::allocator > > >& $this:class list, std::allocator >, std::allocator, std::allocator > > >* const=0D process("/home/prasadkr/systemtap/stap").function("sprintf@/usr/include/bit= s/stdio2.h:32")?=0D process("/home/prasadkr/systemtap/stap").function("sql_stmt@/home/prasadkr/= systemtap/coveragedb.cxx:141")? $db:sqlite3* $stmt:char const*=0D process("/home/prasadkr/systemtap/stap").function("sql_update_unused_functi= ons@/home/prasadkr/systemtap/coveragedb.cxx:280")? $db:sqlite3* $s:struct s= ystemtap_session&=0D process("/home/prasadkr/systemtap/stap").function("sql_update_unused_global= s@/home/prasadkr/systemtap/coveragedb.cxx:312")? $db:sqlite3* $s:struct sys= temtap_session&=0D process("/home/prasadkr/systemtap/stap").function("sql_update_unused_probes= @/home/prasadkr/systemtap/coveragedb.cxx:239")? $db:sqlite3* $s:struct syst= emtap_session&=0D process("/home/prasadkr/systemtap/stap").function("sql_update_used_function= s@/home/prasadkr/systemtap/coveragedb.cxx:263")? $db:sqlite3* $s:struct sys= temtap_session&=0D process("/home/prasadkr/systemtap/stap").function("sql_update_used_globals@= /home/prasadkr/systemtap/coveragedb.cxx:296")? $db:sqlite3* $s:struct syste= mtap_session&=0D process("/home/prasadkr/systemtap/stap").function("sql_update_used_probes@/= home/prasadkr/systemtap/coveragedb.cxx:196")? $db:sqlite3* $s:struct system= tap_session&=0D process("/home/prasadkr/systemtap/stap").function("ssh_remote@/home/prasadk= r/systemtap/remote.cxx:104")?=0D process("/home/prasadkr/systemtap/stap").function("ssh_remote@/home/prasadk= r/systemtap/remote.cxx:110")? $this:class ssh_remote* const $s:struct syste= mtap_session& $ud:class uri_decoder const&=0D process("/home/prasadkr/systemtap/stap").function("stack@/usr/lib/gcc/ppc64= -redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_stack.h:126")?=0D process("/home/prasadkr/systemtap/stap").function("stap_spawn@/home/prasadk= r/systemtap/util.cxx:453")? $verbose:int $command:string const&=0D process("/home/prasadkr/systemtap/stap").function("stap_system@/home/prasad= kr/systemtap/util.cxx:481")? $verbose:int $command:string const&=0D process("/home/prasadkr/systemtap/stap").function("stap_system_read@/home/p= rasadkr/systemtap/util.cxx:497")? $verbose:int $command:string const& $out:= ostream&=0D process("/home/prasadkr/systemtap/stap").function("stap_waitpid@/home/prasa= dkr/systemtap/util.cxx:429")? $verbose:int $pid:pid_t=0D process("/home/prasadkr/systemtap/stap").function("stapfile@/home/prasadkr/= systemtap/staptree.h:664")?=0D process("/home/prasadkr/systemtap/stap").function("start@/home/prasadkr/sys= temtap/hash.cxx:66")? $this:struct hash* const=0D process("/home/prasadkr/systemtap/stap").function("start@/home/prasadkr/sys= temtap/remote.cxx:148")? $this:class ssh_remote* const=0D process("/home/prasadkr/systemtap/stap").function("start@/home/prasadkr/sys= temtap/remote.cxx:77")? $this:class direct* const=0D process("/home/prasadkr/systemtap/stap").function("start@/home/prasadkr/sys= temtap/translate.cxx:773")?=0D process("/home/prasadkr/systemtap/stap").function("startswith@/home/prasadk= r/systemtap/util.h:149")?=0D process("/home/prasadkr/systemtap/stap").function("stat@/usr/include/sys/st= at.h:455")?=0D process("/home/prasadkr/systemtap/stap").function("stat_decl_collector@/hom= e/prasadkr/systemtap/elaborate.cxx:1004")? $sess:struct systemtap_session& = $this:struct stat_decl_collector* const=0D process("/home/prasadkr/systemtap/stap").function("stat_op@/home/prasadkr/s= ystemtap/staptree.h:434")?=0D process("/home/prasadkr/systemtap/stap").function("statement@/home/prasadkr= /systemtap/staptree.cxx:39")?=0D process("/home/prasadkr/systemtap/stap").function("statement@/home/prasadkr= /systemtap/staptree.cxx:45")? $this:struct statement* const $tok:struct tok= en const*=0D process("/home/prasadkr/systemtap/stap").function("statement@/home/prasadkr= /systemtap/staptree.h:521")?=0D process("/home/prasadkr/systemtap/stap").function("statistic_decl@/home/pra= sadkr/systemtap/session.h:62")?=0D process("/home/prasadkr/systemtap/stap").function("stmt_expr@/home/prasadkr= /systemtap/translate.cxx:463")? $this:struct stmt_expr* const=0D process("/home/prasadkr/systemtap/stap").function("str@/home/prasadkr/syste= mtap/elaborate.cxx:289")? $this:struct match_key const* const=0D process("/home/prasadkr/systemtap/stap").function("str@/home/prasadkr/syste= mtap/staptree.cxx:1160")? $this:struct probe_point const* const $print_extr= as:bool=0D process("/home/prasadkr/systemtap/stap").function("str@/usr/lib/gcc/ppc64-r= edhat-linux/4.4.4/../../../../include/c++/4.4.4/sstream:120")?=0D process("/home/prasadkr/systemtap/stap").function("str@/usr/lib/gcc/ppc64-r= edhat-linux/4.4.4/../../../../include/c++/4.4.4/sstream:450")?=0D process("/home/prasadkr/systemtap/stap").function("str@/usr/lib/gcc/ppc64-r= edhat-linux/4.4.4/../../../../include/c++/4.4.4/sstream:556")?=0D process("/home/prasadkr/systemtap/stap").function("stringToIpAddress@/home/= prasadkr/systemtap/csclient.cxx:1047")? $s:string const&=0D process("/home/prasadkr/systemtap/stap").function("string_to_components@/ho= me/prasadkr/systemtap/staptree.cxx:661")? $str:string const&=0D process("/home/prasadkr/systemtap/stap").function("strpbrk@/usr/include/str= ing.h:307")? $__accept:char const* $__s:char const*=0D process("/home/prasadkr/systemtap/stap").function("strrchr@/usr/include/str= ing.h:249")? $__c:int $__s:char*=0D process("/home/prasadkr/systemtap/stap").function("strrchr@/usr/include/str= ing.h:255")?=0D process("/home/prasadkr/systemtap/stap").function("substr@/usr/lib/gcc/ppc6= 4-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/basic_string.h:2001= ")?=0D process("/home/prasadkr/systemtap/stap").function("swap@/usr/lib= /gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/move.h:76"= )?=0D process("/home/prasadkr/systemtap/stap").function("swap@= /usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/mo= ve.h:76")? $__a:struct be_derived_probe*& $__b:struct be_derived_probe*&=0D process("/home/prasadkr/systemtap/stap").function("swap@/usr/lib/gcc/ppc64-= redhat-linux/4.4.4/../../../../include/c++/4.4.4/tr1/shared_ptr.h:549")?=0D process("/home/prasadkr/systemtap/stap").function("symbol@/home/prasadkr/sy= stemtap/staptree.cxx:62")? $this:struct symbol* const=0D process("/home/prasadkr/systemtap/stap").function("symbol@/home/prasadkr/sy= stemtap/staptree.h:222")?=0D process("/home/prasadkr/systemtap/stap").function("symbol_fetcher@/home/pra= sadkr/systemtap/elaborate.cxx:840")? $sym:struct symbol*&=0D process("/home/prasadkr/systemtap/stap").function("symbol_table@/home/prasa= dkr/systemtap/tapsets.cxx:343")? $mi:struct module_info* $this:struct symbo= l_table* const=0D process("/home/prasadkr/systemtap/stap").function("symboldecl@/home/prasadk= r/systemtap/staptree.cxx:80")? $this:struct symboldecl* const=0D process("/home/prasadkr/systemtap/stap").function("symresolution_info@/home= /prasadkr/systemtap/elaborate.cxx:1672")? $this:struct symresolution_info* = const=0D process("/home/prasadkr/systemtap/stap").function("systemtap_session@/home/= prasadkr/systemtap/session.cxx:52")? $this:struct systemtap_session* const= =0D process("/home/prasadkr/systemtap/stap").function("systemtap_session@/home/= prasadkr/systemtap/session.h:80")? $this:struct systemtap_session* const=0D process("/home/prasadkr/systemtap/stap").function("target_symbol@/home/pras= adkr/systemtap/staptree.h:236")?=0D process("/home/prasadkr/systemtap/stap").function("target_symbol@/home/pras= adkr/systemtap/staptree.h:268")?=0D process("/home/prasadkr/systemtap/stap").function("task_finder_derived_prob= e_group@/home/prasadkr/systemtap/task_finder.cxx:41")?=0D process("/home/prasadkr/systemtap/stap").function("tellp@/home/prasadkr/sys= temtap/translate.h:39")? $this:class translator_output* const=0D process("/home/prasadkr/systemtap/stap").function("ternary_expression@/home= /prasadkr/systemtap/staptree.h:174")?=0D process("/home/prasadkr/systemtap/stap").function("throwing_visitor@/home/p= rasadkr/systemtap/staptree.cxx:2242")? $this:struct throwing_visitor* const= $m:string const&=0D process("/home/prasadkr/systemtap/stap").function("throwing_visitor@/home/p= rasadkr/systemtap/staptree.cxx:2243")? $this:struct throwing_visitor* const= =0D process("/home/prasadkr/systemtap/stap").function("throwone@/home/prasadkr/= systemtap/elaborate.cxx:863")? $this:struct symbol_fetcher* const $t:struct= token const*=0D process("/home/prasadkr/systemtap/stap").function("throwone@/home/prasadkr/= systemtap/staptree.cxx:2247")? $this:struct throwing_visitor* const $t:stru= ct token const*=0D process("/home/prasadkr/systemtap/stap").function("timer_builder@/home/pras= adkr/systemtap/tapset-timers.cxx:514")?=0D process("/home/prasadkr/systemtap/stap").function("timer_derived_probe@/hom= e/prasadkr/systemtap/tapset-timers.cxx:58")? $this:struct timer_derived_pro= be* const $p:struct probe* $l:struct probe_point* $i:int64_t $r:int64_t $ms= :bool=0D process("/home/prasadkr/systemtap/stap").function("timer_derived_probe_grou= p@/home/prasadkr/systemtap/tapset-timers.cxx:49")?=0D process("/home/prasadkr/systemtap/stap").function("tmpvar@/home/prasadkr/sy= stemtap/translate.cxx:477")?=0D process("/home/prasadkr/systemtap/stap").function("tmpvar@/home/prasadkr/sy= stemtap/translate.cxx:483")?=0D process("/home/prasadkr/systemtap/stap").function("tmpvar@/home/prasadkr/sy= stemtap/translate.cxx:488")?=0D process("/home/prasadkr/systemtap/stap").function("tok_is@/home/prasadkr/sy= stemtap/parse.cxx:674")? $expected:string const& $tt:enum token_type $t:str= uct token const*=0D process("/home/prasadkr/systemtap/stap").function("token@/home/prasadkr/sys= temtap/parse.h:43")?=0D process("/home/prasadkr/systemtap/stap").function("tokenize@/home/prasadkr/= systemtap/util.cxx:282")? $str:string const& $tokens:class vector, std::allocator >, std::allocat= or, std::allocator > >= >& $delimiters:string const&=0D process("/home/prasadkr/systemtap/stap").function("top@/usr/lib/gcc/ppc64-r= edhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_stack.h:155")?=0D process("/home/prasadkr/systemtap/stap").function("tracepoint_arg@/home/pra= sadkr/systemtap/tapsets.cxx:7756")?=0D process("/home/prasadkr/systemtap/stap").function("tracepoint_arg@/home/pra= sadkr/systemtap/tapsets.cxx:7760")?=0D process("/home/prasadkr/systemtap/stap").function("tracepoint_builder@/home= /prasadkr/systemtap/tapsets.cxx:8511")?=0D process("/home/prasadkr/systemtap/stap").function("tracepoint_derived_probe= @/home/prasadkr/systemtap/tapsets.cxx:8063")? $this:struct tracepoint_deriv= ed_probe* const $s:struct systemtap_session& $dw:struct dwflpp& $func_die:s= truct Dwarf_Die& $tracepoint_name:string const& $base:struct probe* $loc:st= ruct probe_point*=0D process("/home/prasadkr/systemtap/stap").function("tracepoint_derived_probe= _group@/home/prasadkr/systemtap/tapsets.cxx:7782")?=0D process("/home/prasadkr/systemtap/stap").function("tracepoint_extra_decls@/= home/prasadkr/systemtap/tapsets.cxx:8227")? $s:struct systemtap_session&=0D process("/home/prasadkr/systemtap/stap").function("tracepoint_query@/home/p= rasadkr/systemtap/tapsets.cxx:8420")?=0D process("/home/prasadkr/systemtap/stap").function("tracepoint_query_cu@/hom= e/prasadkr/systemtap/tapsets.cxx:8484")? $cudie:struct Dwarf_Die* $arg:void= *=0D process("/home/prasadkr/systemtap/stap").function("tracepoint_query_func@/h= ome/prasadkr/systemtap/tapsets.cxx:8493")? $func:struct Dwarf_Die* $query:s= truct base_query*=0D process("/home/prasadkr/systemtap/stap").function("tracepoint_var_expanding= _visitor@/home/prasadkr/systemtap/tapsets.cxx:7791")?=0D process("/home/prasadkr/systemtap/stap").function("translate@/home/prasadkr= /systemtap/loc2c.c:334")? $len:size_t const $input:struct location* $need_f= b:_Bool* $loc:struct location* $__PRETTY_FUNCTION__:char[] const $expr:Dwar= f_Op const* $max_stack:unsigned int $i:size_t $tos_value:_Bool $loser:size_= t* $implicit_value:Dwarf_Block $implicit_pointer:Dwarf_Op const* $stack_dep= th:unsigned int $ctx:struct location_context* $indent:int $tos_register:int= $used_deref:_Bool=0D process("/home/prasadkr/systemtap/stap").function("translate_array@/home/pr= asadkr/systemtap/loc2c.c:2289")? $pool:struct obstack* $indent:int $anydie:= Dwarf_Die* $stride:Dwarf_Word $input:struct location** $idx:char const* $co= nst_idx:Dwarf_Word=0D process("/home/prasadkr/systemtap/stap").function("translate_base_fetch@/ho= me/prasadkr/systemtap/loc2c.c:1829")? $pool:struct obstack* $indent:int $by= te_size:Dwarf_Word $signed_p:_Bool $input:struct location** $target:char co= nst* $depth:int=0D process("/home/prasadkr/systemtap/stap").function("translate_base_store@/ho= me/prasadkr/systemtap/loc2c.c:1980")? $pool:struct obstack* $indent:int $by= te_size:Dwarf_Word $input:struct location** $store_loc:struct location* $rv= alue:char const* $depth:int=0D process("/home/prasadkr/systemtap/stap").function("translate_components@/ho= me/prasadkr/systemtap/dwflpp.cxx:2117")? $this:struct dwflpp* const $pool:s= truct obstack* $tail:struct location** $pc:Dwarf_Addr $e:struct target_symb= ol const* $vardie:struct Dwarf_Die* $typedie:struct Dwarf_Die* $first:unsig= ned int=0D process("/home/prasadkr/systemtap/stap").function("translate_constant@/home= /prasadkr/systemtap/loc2c.c:165")?=0D process("/home/prasadkr/systemtap/stap").function("translate_final_fetch_or= _store@/home/prasadkr/systemtap/dwflpp.cxx:2292")? $this:struct dwflpp* con= st $pool:struct obstack* $tail:struct location** $module_bias:Dwarf_Addr $v= ardie:struct Dwarf_Die* $start_typedie:struct Dwarf_Die* $lvalue:bool $e:st= ruct target_symbol const* $ty:enum exp_type&=0D process("/home/prasadkr/systemtap/stap").function("translate_location@/home= /prasadkr/systemtap/dwflpp.cxx:1897")? $this:struct dwflpp* const $pool:str= uct obstack* $attr:struct Dwarf_Attribute* $die:struct Dwarf_Die* $pc:Dwarf= _Addr $fb_attr:struct Dwarf_Attribute* $tail:struct location** $e:struct ta= rget_symbol const*=0D process("/home/prasadkr/systemtap/stap").function("translate_offset@/home/p= rasadkr/systemtap/loc2c.c:994")? $indent:int $expr:Dwarf_Op const* $len:siz= e_t $i:size_t $input:struct location** $offset:Dwarf_Word $__PRETTY_FUNCTIO= N__:char[] const=0D process("/home/prasadkr/systemtap/stap").function("translate_pass@/home/pra= sadkr/systemtap/translate.cxx:5743")? $s:struct systemtap_session&=0D process("/home/prasadkr/systemtap/stap").function("translator_output@/home/= prasadkr/systemtap/translate.cxx:846")? $this:class translator_output* cons= t $f:ostream&=0D process("/home/prasadkr/systemtap/stap").function("translator_output@/home/= prasadkr/systemtap/translate.cxx:852")? $this:class translator_output* cons= t $filename:string const& $bufsize:size_t=0D process("/home/prasadkr/systemtap/stap").function("traversing_visitor@/home= /prasadkr/systemtap/staptree.h:782")?=0D process("/home/prasadkr/systemtap/stap").function("try_block@/home/prasadkr= /systemtap/staptree.h:552")?=0D process("/home/prasadkr/systemtap/stap").function("tt2str@/home/prasadkr/sy= stemtap/parse.cxx:209")? $tt:enum token_type=0D process("/home/prasadkr/systemtap/stap").function("type@/home/prasadkr/syst= emtap/translate.cxx:356")?=0D process("/home/prasadkr/systemtap/stap").function("type_die_for_local@/home= /prasadkr/systemtap/dwflpp.cxx:2573")? $this:struct dwflpp* const $scopes:c= lass vector >& $pc:Dwarf_Addr $local:s= tring const& $e:struct target_symbol const* $typedie:struct Dwarf_Die*=0D process("/home/prasadkr/systemtap/stap").function("type_die_for_pointer@/ho= me/prasadkr/systemtap/dwflpp.cxx:2757")? $this:struct dwflpp* const $start_= typedie:struct Dwarf_Die* $e:struct target_symbol const* $typedie:struct Dw= arf_Die*=0D process("/home/prasadkr/systemtap/stap").function("type_die_for_return@/hom= e/prasadkr/systemtap/dwflpp.cxx:2671")? $this:struct dwflpp* const $scope_d= ie:struct Dwarf_Die* $pc:Dwarf_Addr $e:struct target_symbol const* $typedie= :struct Dwarf_Die*=0D process("/home/prasadkr/systemtap/stap").function("typeresolution_info@/hom= e/prasadkr/systemtap/elaborate.cxx:3816")? $this:struct typeresolution_info= * const=0D process("/home/prasadkr/systemtap/stap").function("unary_expression@/home/p= rasadkr/systemtap/staptree.h:119")?=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../= ../../include/c++/4.4.4/bits/stl_uninitialized.h:107")? $__last:struct Dwar= f_Attribute* $__result:struct Dwarf_Attribute*=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../= ../../include/c++/4.4.4/bits/stl_uninitialized.h:91")? $__last:struct Dwarf= _Attribute* $__result:struct Dwarf_Attribute*=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../includ= e/c++/4.4.4/bits/stl_uninitialized.h:107")?=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../includ= e/c++/4.4.4/bits/stl_uninitialized.h:91")?=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy<__gnu= _cxx::__normal_iterator > >, Dwarf_Die*>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../.= ./../../include/c++/4.4.4/bits/stl_uninitialized.h:107")?=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy<__gnu= _cxx::__normal_iterator > >, Dwarf_Die*>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../.= ./../../include/c++/4.4.4/bits/stl_uninitialized.h:91")?=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy<__gnu= _cxx::__normal_iterator > >, exp_type*>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../..= /../include/c++/4.4.4/bits/stl_uninitialized.h:107")?=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy<__gnu= _cxx::__normal_iterator > >, exp_type*>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../..= /../include/c++/4.4.4/bits/stl_uninitialized.h:91")?=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy<__gnu= _cxx::__normal_iterator > >, long int*>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../..= /../include/c++/4.4.4/bits/stl_uninitialized.h:107")?=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy<__gnu= _cxx::__normal_iterator > >, long int*>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../..= /../include/c++/4.4.4/bits/stl_uninitialized.h:91")?=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy<__gnu= _cxx::__normal_iterator > >, print_format::format_component*>@/usr/lib/gcc/ppc64-redhat-linux/4= .4.4/../../../../include/c++/4.4.4/bits/stl_uninitialized.h:107")?=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy<__gnu= _cxx::__normal_iterator > >, print_format::format_component*>@/usr/lib/gcc/ppc64-redhat-linux/4= .4.4/../../../../include/c++/4.4.4/bits/stl_uninitialized.h:67")?=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy<__gnu= _cxx::__normal_iterator, std::allocator >*, std::vector, std::allocator >, std::allocator, std::allocator > > > >, std::basic_string, std::allocator >*>@/usr/lib/gcc/ppc64-red= hat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_uninitialized.h:107"= )?=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy<__gnu= _cxx::__normal_iterator, std::allocator >*, std::vector, std::allocator >, std::allocator, std::allocator > > > >, std::basic_string, std::allocator >*>@/usr/lib/gcc/ppc64-red= hat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_uninitialized.h:67")= ?=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy<__gnu= _cxx::__normal_iterator > >, target_sy= mbol::component*>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include= /c++/4.4.4/bits/stl_uninitialized.h:107")?=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy<__gnu= _cxx::__normal_iterator > >, target_sy= mbol::component*>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include= /c++/4.4.4/bits/stl_uninitialized.h:67")?=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy<__gnu= _cxx::__normal_iterator > >, derived_probe**>@/usr/lib/gcc/ppc64-red= hat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_uninitialized.h:107"= )?=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy<__gnu= _cxx::__normal_iterator > >, derived_probe**>@/usr/lib/gcc/ppc64-red= hat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_uninitialized.h:91")= ?=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy<__gnu= _cxx::__normal_iterator > >, embeddedcode**>@/usr/lib/gcc/ppc64-redhat-= linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_uninitialized.h:107")?=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy<__gnu= _cxx::__normal_iterator > >, embeddedcode**>@/usr/lib/gcc/ppc64-redhat-= linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_uninitialized.h:91")?=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy<__gnu= _cxx::__normal_iterator > >, expression**>@/usr/lib/gcc/ppc64-redhat-linux/4.= 4.4/../../../../include/c++/4.4.4/bits/stl_uninitialized.h:107")?=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy<__gnu= _cxx::__normal_iterator > >, expression**>@/usr/lib/gcc/ppc64-redhat-linux/4.= 4.4/../../../../include/c++/4.4.4/bits/stl_uninitialized.h:91")?=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy<__gnu= _cxx::__normal_iterator > >, functiondecl**>@/usr/lib/gcc/ppc64-redhat-= linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_uninitialized.h:107")?=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy<__gnu= _cxx::__normal_iterator > >, functiondecl**>@/usr/lib/gcc/ppc64-redhat-= linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_uninitialized.h:91")?=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy<__gnu= _cxx::__normal_iterator > >, itrace_derived_pro= be**>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/b= its/stl_uninitialized.h:107")?=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy<__gnu= _cxx::__normal_iterator > >, itrace_derived_pro= be**>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/b= its/stl_uninitialized.h:91")?=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy<__gnu= _cxx::__normal_iterator > >, probe_point**>@/usr/lib/gcc/ppc64-redhat-linu= x/4.4.4/../../../../include/c++/4.4.4/bits/stl_uninitialized.h:107")?=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy<__gnu= _cxx::__normal_iterator > >, probe_point**>@/usr/lib/gcc/ppc64-redhat-linu= x/4.4.4/../../../../include/c++/4.4.4/bits/stl_uninitialized.h:91")?=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy<__gnu= _cxx::__normal_iterator > >, probe_point:= :component**>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++= /4.4.4/bits/stl_uninitialized.h:107")?=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy<__gnu= _cxx::__normal_iterator > >, probe_point:= :component**>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++= /4.4.4/bits/stl_uninitialized.h:91")?=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy<__gnu= _cxx::__normal_iterator > >, remote**>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../= include/c++/4.4.4/bits/stl_uninitialized.h:107")?=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy<__gnu= _cxx::__normal_iterator > >, remote**>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../= include/c++/4.4.4/bits/stl_uninitialized.h:91")?=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy<__gnu= _cxx::__normal_iterator > >, stapfile**>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../.= ./../../include/c++/4.4.4/bits/stl_uninitialized.h:107")?=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy<__gnu= _cxx::__normal_iterator > >, stapfile**>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../.= ./../../include/c++/4.4.4/bits/stl_uninitialized.h:91")?=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy<__gnu= _cxx::__normal_iterator > >, statement**>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/= ../../../../include/c++/4.4.4/bits/stl_uninitialized.h:107")?=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy<__gnu= _cxx::__normal_iterator > >, statement**>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/= ../../../../include/c++/4.4.4/bits/stl_uninitialized.h:91")?=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy<__gnu= _cxx::__normal_iterator > >, statement**>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../= ../../include/c++/4.4.4/bits/stl_uninitialized.h:107")?=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy<__gnu= _cxx::__normal_iterator > >, statement**>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../= ../../include/c++/4.4.4/bits/stl_uninitialized.h:91")?=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy<__gnu= _cxx::__normal_iterator > >, symbol**>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../= include/c++/4.4.4/bits/stl_uninitialized.h:107")?=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy<__gnu= _cxx::__normal_iterator > >, symbol**>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../= include/c++/4.4.4/bits/stl_uninitialized.h:91")?=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy<__gnu= _cxx::__normal_iterator > >, update_visitor**>@/usr/lib/gcc/ppc64= -redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_uninitialized.h:= 107")?=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy<__gnu= _cxx::__normal_iterator > >, update_visitor**>@/usr/lib/gcc/ppc64= -redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_uninitialized.h:= 91")?=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy<__gnu= _cxx::__normal_iterator > >, utrace_derived_pro= be**>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/b= its/stl_uninitialized.h:107")?=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy<__gnu= _cxx::__normal_iterator > >, utrace_derived_pro= be**>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/b= its/stl_uninitialized.h:91")?=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy<__gnu= _cxx::__normal_iterator > >, vardecl**>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../..= /../include/c++/4.4.4/bits/stl_uninitialized.h:107")?=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy<__gnu= _cxx::__normal_iterator > >, vardecl**>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../..= /../include/c++/4.4.4/bits/stl_uninitialized.h:91")?=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/..= /../../../include/c++/4.4.4/bits/stl_uninitialized.h:107")? $__last:struct = be_derived_probe** $__result:struct be_derived_probe**=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/..= /../../../include/c++/4.4.4/bits/stl_uninitialized.h:91")? $__last:struct b= e_derived_probe** $__result:struct be_derived_probe**=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy@/usr/lib/gcc/ppc64-redhat-linux/4.4.= 4/../../../../include/c++/4.4.4/bits/stl_uninitialized.h:107")? $__last:str= uct compile_server_info* $__first:struct compile_server_info* $__result:str= uct compile_server_info*=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy@/usr/lib/gcc/ppc64-redhat-linux/4.4.= 4/../../../../include/c++/4.4.4/bits/stl_uninitialized.h:67")? $__last:stru= ct compile_server_info* $__first:struct compile_server_info* $__result:stru= ct compile_server_info*=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../= include/c++/4.4.4/bits/stl_uninitialized.h:107")? $__last:struct token cons= t** $__result:struct token const**=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../= include/c++/4.4.4/bits/stl_uninitialized.h:91")? $__last:struct token const= ** $__result:struct token const**=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../..= /../include/c++/4.4.4/bits/stl_uninitialized.h:107")? $__last:struct derive= d_probe** $__result:struct derived_probe**=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../..= /../include/c++/4.4.4/bits/stl_uninitialized.h:91")? $__last:struct derived= _probe** $__result:struct derived_probe**=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy@/usr/lib/gcc/ppc64-redhat-linu= x/4.4.4/../../../../include/c++/4.4.4/bits/stl_uninitialized.h:107")? $__la= st:struct derived_probe_builder** $__result:struct derived_probe_builder**= =0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy@/usr/lib/gcc/ppc64-redhat-linu= x/4.4.4/../../../../include/c++/4.4.4/bits/stl_uninitialized.h:91")? $__las= t:struct derived_probe_builder** $__result:struct derived_probe_builder**=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy@/usr/lib/gcc/ppc64-redhat-linux/4.= 4.4/../../../../include/c++/4.4.4/bits/stl_uninitialized.h:107")? $__last:s= truct derived_probe_group** $__result:struct derived_probe_group**=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy@/usr/lib/gcc/ppc64-redhat-linux/4.= 4.4/../../../../include/c++/4.4.4/bits/stl_uninitialized.h:91")? $__last:st= ruct derived_probe_group** $__result:struct derived_probe_group**=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../.= ./include/c++/4.4.4/bits/stl_uninitialized.h:107")? $__last:struct embedded= code** $__result:struct embeddedcode**=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../.= ./include/c++/4.4.4/bits/stl_uninitialized.h:91")? $__last:struct embeddedc= ode** $__result:struct embeddedcode**=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/= c++/4.4.4/bits/stl_uninitialized.h:107")?=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/= c++/4.4.4/bits/stl_uninitialized.h:91")?=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../in= clude/c++/4.4.4/bits/stl_uninitialized.h:107")?=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../in= clude/c++/4.4.4/bits/stl_uninitialized.h:91")?=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../includ= e/c++/4.4.4/bits/stl_uninitialized.h:107")? $__last:struct func_info* $__fi= rst:struct func_info* $__result:struct func_info*=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../includ= e/c++/4.4.4/bits/stl_uninitialized.h:67")? $__last:struct func_info* $__fir= st:struct func_info* $__result:struct func_info*=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../.= ./include/c++/4.4.4/bits/stl_uninitialized.h:107")? $__last:struct function= decl** $__result:struct functiondecl**=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../.= ./include/c++/4.4.4/bits/stl_uninitialized.h:91")? $__last:struct functiond= ecl** $__result:struct functiondecl**=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy@/usr/lib/gcc/ppc64-redhat-linu= x/4.4.4/../../../../include/c++/4.4.4/bits/stl_uninitialized.h:107")? $__la= st:struct hrtimer_derived_probe** $__result:struct hrtimer_derived_probe**= =0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy@/usr/lib/gcc/ppc64-redhat-linu= x/4.4.4/../../../../include/c++/4.4.4/bits/stl_uninitialized.h:91")? $__las= t:struct hrtimer_derived_probe** $__result:struct hrtimer_derived_probe**=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy@/usr/lib/gcc/ppc64-redhat-linux/= 4.4.4/../../../../include/c++/4.4.4/bits/stl_uninitialized.h:107")? $__last= :struct hwbkpt_derived_probe** $__result:struct hwbkpt_derived_probe**=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy@/usr/lib/gcc/ppc64-redhat-linux/= 4.4.4/../../../../include/c++/4.4.4/bits/stl_uninitialized.h:91")? $__last:= struct hwbkpt_derived_probe** $__result:struct hwbkpt_derived_probe**=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy@/usr/lib/gcc/ppc64-redhat-linux/4.= 4.4/../../../../include/c++/4.4.4/bits/stl_uninitialized.h:107")? $__last:s= truct inline_instance_info* $__first:struct inline_instance_info* $__result= :struct inline_instance_info*=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy@/usr/lib/gcc/ppc64-redhat-linux/4.= 4.4/../../../../include/c++/4.4.4/bits/stl_uninitialized.h:67")? $__last:st= ruct inline_instance_info* $__first:struct inline_instance_info* $__result:= struct inline_instance_info*=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy@/usr/lib/gcc/ppc64-redhat-linux/= 4.4.4/../../../../include/c++/4.4.4/bits/stl_uninitialized.h:107")? $__last= :struct itrace_derived_probe**=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy@/usr/lib/gcc/ppc64-redhat-linux/= 4.4.4/../../../../include/c++/4.4.4/bits/stl_uninitialized.h:91")? $__last:= struct itrace_derived_probe**=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/= c++/4.4.4/bits/stl_uninitialized.h:107")? $__last:long int* $__result:long = int*=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/= c++/4.4.4/bits/stl_uninitialized.h:91")? $__last:long int* $__result:long i= nt*=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../includ= e/c++/4.4.4/bits/stl_uninitialized.h:107")? $__last:struct mark_arg** $__re= sult:struct mark_arg**=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../includ= e/c++/4.4.4/bits/stl_uninitialized.h:91")? $__last:struct mark_arg** $__res= ult:struct mark_arg**=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy@/usr/lib/gcc/ppc64-redhat-linux/4.4.= 4/../../../../include/c++/4.4.4/bits/stl_uninitialized.h:107")? $__last:str= uct mark_derived_probe** $__result:struct mark_derived_probe**=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy@/usr/lib/gcc/ppc64-redhat-linux/4.4.= 4/../../../../include/c++/4.4.4/bits/stl_uninitialized.h:91")? $__last:stru= ct mark_derived_probe** $__result:struct mark_derived_probe**=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../in= clude/c++/4.4.4/bits/stl_uninitialized.h:107")? $__last:struct match_node**= $__result:struct match_node**=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../in= clude/c++/4.4.4/bits/stl_uninitialized.h:91")? $__last:struct match_node** = $__result:struct match_node**=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy@/usr/lib/gcc/ppc64-redhat-linux/4.4.= 4/../../../../include/c++/4.4.4/bits/stl_uninitialized.h:107")? $__last:str= uct perf_derived_probe** $__result:struct perf_derived_probe**=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy@/usr/lib/gcc/ppc64-redhat-linux/4.4.= 4/../../../../include/c++/4.4.4/bits/stl_uninitialized.h:91")? $__last:stru= ct perf_derived_probe** $__result:struct perf_derived_probe**=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy@/usr/lib/gcc/p= pc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_uninitialize= d.h:107")?=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy@/usr/lib/gcc/p= pc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_uninitialize= d.h:67")?=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/= 4.4.4/bits/stl_uninitialized.h:107")? $__last:struct probe** $__result:stru= ct probe**=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/= 4.4.4/bits/stl_uninitialized.h:91")? $__last:struct probe** $__result:struc= t probe**=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../= include/c++/4.4.4/bits/stl_uninitialized.h:107")? $__last:struct probe_alia= s** $__result:struct probe_alias**=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../= include/c++/4.4.4/bits/stl_uninitialized.h:91")? $__last:struct probe_alias= ** $__result:struct probe_alias**=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../= include/c++/4.4.4/bits/stl_uninitialized.h:107")?=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../= include/c++/4.4.4/bits/stl_uninitialized.h:91")?=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy@/usr/lib/gcc/ppc64-redhat-li= nux/4.4.4/../../../../include/c++/4.4.4/bits/stl_uninitialized.h:107")?=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy@/usr/lib/gcc/ppc64-redhat-li= nux/4.4.4/../../../../include/c++/4.4.4/bits/stl_uninitialized.h:91")?=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy@/usr/lib/gcc/ppc64-redhat-linu= x/4.4.4/../../../../include/c++/4.4.4/bits/stl_uninitialized.h:107")? $__la= st:struct profile_derived_probe** $__result:struct profile_derived_probe**= =0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy@/usr/lib/gcc/ppc64-redhat-linu= x/4.4.4/../../../../include/c++/4.4.4/bits/stl_uninitialized.h:91")? $__las= t:struct profile_derived_probe** $__result:struct profile_derived_probe**=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c+= +/4.4.4/bits/stl_uninitialized.h:107")? $__last:class remote**=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c+= +/4.4.4/bits/stl_uninitialized.h:91")? $__last:class remote**=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../includ= e/c++/4.4.4/bits/stl_uninitialized.h:107")? $__last:struct stapfile** $__re= sult:struct stapfile**=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../includ= e/c++/4.4.4/bits/stl_uninitialized.h:91")? $__last:struct stapfile** $__res= ult:struct stapfile**=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../incl= ude/c++/4.4.4/bits/stl_uninitialized.h:107")?=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../incl= ude/c++/4.4.4/bits/stl_uninitialized.h:91")?=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy, std::= _Deque_iterator >@/usr/lib/gcc/ppc= 64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_uninitialized.= h:107")?=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy, std::= _Deque_iterator >@/usr/lib/gcc/ppc= 64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_uninitialized.= h:91")?=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy, std::_Deque_iterator = >@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/= stl_uninitialized.h:107")?=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy, std::_Deque_iterator = >@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/= stl_uninitialized.h:91")?=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy, std::_Deque_iterator >@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../in= clude/c++/4.4.4/bits/stl_uninitialized.h:107")?=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy, std::_Deque_iterator >@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../in= clude/c++/4.4.4/bits/stl_uninitialized.h:91")?=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy, std= ::allocator > >, std::basic_string, std:= :allocator >*>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../incl= ude/c++/4.4.4/bits/stl_uninitialized.h:107")? $__result:struct basic_string= , std::allocator >*=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy, std= ::allocator > >, std::basic_string, std:= :allocator >*>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../incl= ude/c++/4.4.4/bits/stl_uninitialized.h:67")? $__result:struct basic_string<= char, std::char_traits, std::allocator >*=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy, std::allocator >*, std::ba= sic_string, std::allocator >*>@/usr/lib/= gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_uniniti= alized.h:107")?=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy, std::allocator >*, std::ba= sic_string, std::allocator >*>@/usr/lib/= gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_uniniti= alized.h:67")?=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy*, std::pair*>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4= .4.4/bits/stl_uninitialized.h:107")?=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy*, std::pair*>@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4= .4.4/bits/stl_uninitialized.h:67")? $__first:struct pair*=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy, std::allocator >= , unsigned int>*, std::pair,= std::allocator >, unsigned int>*>@/usr/lib/gcc/ppc64-redhat-linux/4.= 4.4/../../../../include/c++/4.4.4/bits/stl_uninitialized.h:107")? $__last:s= truct pair, std::allocator >, unsigned int>* $__first:struct pair, std::allocator >, unsigned int>* $__result:struct pa= ir, std::allocator >, = unsigned int>*=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy, std::allocator >= , unsigned int>*, std::pair,= std::allocator >, unsigned int>*>@/usr/lib/gcc/ppc64-redhat-linux/4.= 4.4/../../../../include/c++/4.4.4/bits/stl_uninitialized.h:67")? $__last:st= ruct pair, std::allocator >, unsigned int>* $__first:struct pair, std::allocator >, unsigned int>* $__result:struct pai= r, std::allocator >, u= nsigned int>*=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c+= +/4.4.4/bits/stl_uninitialized.h:107")? $__last:struct symbol** $__result:s= truct symbol**=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c+= +/4.4.4/bits/stl_uninitialized.h:91")? $__last:struct symbol** $__result:st= ruct symbol**=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy@/usr/lib/gcc/ppc64-redhat-= linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_uninitialized.h:107")? $= __last:struct component* $__first:struct component* $__result:struct compon= ent*=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy@/usr/lib/gcc/ppc64-redhat-= linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_uninitialized.h:67")? $_= _last:struct component* $__first:struct component* $__result:struct compone= nt*=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy@/usr/lib/gcc/ppc64-redhat-linux/4.= 4.4/../../../../include/c++/4.4.4/bits/stl_uninitialized.h:107")? $__last:s= truct timer_derived_probe** $__result:struct timer_derived_probe**=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy@/usr/lib/gcc/ppc64-redhat-linux/4.= 4.4/../../../../include/c++/4.4.4/bits/stl_uninitialized.h:91")? $__last:st= ruct timer_derived_probe** $__result:struct timer_derived_probe**=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/= 4.4.4/bits/stl_uninitialized.h:107")? $__last:struct tmpvar* $__first:struc= t tmpvar* $__result:struct tmpvar*=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/= 4.4.4/bits/stl_uninitialized.h:67")? $__last:struct tmpvar* $__first:struct= tmpvar* $__result:struct tmpvar*=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../..= /../include/c++/4.4.4/bits/stl_uninitialized.h:107")? $__last:struct tracep= oint_arg* $__first:struct tracepoint_arg* $__result:struct tracepoint_arg*= =0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../..= /../include/c++/4.4.4/bits/stl_uninitialized.h:67")? $__last:struct tracepo= int_arg* $__first:struct tracepoint_arg* $__result:struct tracepoint_arg*=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy@/usr/lib/gcc/ppc64-redha= t-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_uninitialized.h:107")?= $__last:struct tracepoint_derived_probe** $__result:struct tracepoint_deri= ved_probe**=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy@/usr/lib/gcc/ppc64-redha= t-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_uninitialized.h:91")? = $__last:struct tracepoint_derived_probe** $__result:struct tracepoint_deriv= ed_probe**=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../= ../../include/c++/4.4.4/bits/stl_uninitialized.h:107")? $__last:struct upda= te_visitor** $__result:struct update_visitor**=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../= ../../include/c++/4.4.4/bits/stl_uninitialized.h:91")? $__last:struct updat= e_visitor** $__result:struct update_visitor**=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy@/usr/lib/gcc/ppc64-redhat-linux/= 4.4.4/../../../../include/c++/4.4.4/bits/stl_uninitialized.h:107")? $__last= :struct uprobe_derived_probe** $__result:struct uprobe_derived_probe**=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy@/usr/lib/gcc/ppc64-redhat-linux/= 4.4.4/../../../../include/c++/4.4.4/bits/stl_uninitialized.h:91")? $__last:= struct uprobe_derived_probe** $__result:struct uprobe_derived_probe**=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy@/usr/lib/gcc/ppc64-redhat-linux/= 4.4.4/../../../../include/c++/4.4.4/bits/stl_uninitialized.h:107")? $__last= :struct utrace_derived_probe**=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy@/usr/lib/gcc/ppc64-redhat-linux/= 4.4.4/../../../../include/c++/4.4.4/bits/stl_uninitialized.h:91")? $__last:= struct utrace_derived_probe**=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/= c++/4.4.4/bits/stl_uninitialized.h:107")? $__last:struct vardecl** $__resul= t:struct vardecl**=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_copy@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/= c++/4.4.4/bits/stl_uninitialized.h:91")? $__last:struct vardecl** $__result= :struct vardecl**=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_fill_n@/usr/lib/gcc/ppc64-redhat-linux/4.4.= 4/../../../../include/c++/4.4.4/bits/stl_uninitialized.h:202")?=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_fill_n@/usr/lib/gcc/ppc64-redhat-linux/4.4.= 4/../../../../include/c++/4.4.4/bits/stl_uninitialized.h:218")?=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_fill_n@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/= ../../../../include/c++/4.4.4/bits/stl_uninitialized.h:202")?=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_fill_n@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/= ../../../../include/c++/4.4.4/bits/stl_uninitialized.h:218")?=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_fill_n@/usr/lib/gcc/ppc64-redhat-linux/4.4.= 4/../../../../include/c++/4.4.4/bits/stl_uninitialized.h:180")?=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_fill_n@/usr/lib/gcc/ppc64-redhat-linux/4.4.= 4/../../../../include/c++/4.4.4/bits/stl_uninitialized.h:218")?=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_fill_n@/usr/lib/gcc/ppc64-redhat-linu= x/4.4.4/../../../../include/c++/4.4.4/bits/stl_uninitialized.h:202")? $__n:= long unsigned int $__first:struct probe_point**=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_fill_n@/usr/lib/gcc/ppc64-redhat-linu= x/4.4.4/../../../../include/c++/4.4.4/bits/stl_uninitialized.h:218")? $__n:= long unsigned int $__first:struct probe_point**=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_fill_n, std::allocator >*, long = unsigned int, std::basic_string, std::allocato= r > >@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4= .4.4/bits/stl_uninitialized.h:180")?=0D process("/home/prasadkr/systemtap/stap").function("uninitialized_fill_n, std::allocator >*, long = unsigned int, std::basic_string, std::allocato= r > >@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4= .4.4/bits/stl_uninitialized.h:218")?=0D process("/home/prasadkr/systemtap/stap").function("uniq_list@/home/prasadkr= /systemtap/main.cxx:46")? $l:class list, std::allocator >, std::allocator, std::allocator > > >&=0D process("/home/prasadkr/systemtap/stap").function("unlink@/home/prasadkr/sy= stemtap/cache.cxx:405")? $this:struct cache_ent_info const* const=0D process("/home/prasadkr/systemtap/stap").function("unordered_map@/usr/lib/g= cc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/tr1_impl/unordere= d_map:201")?=0D process("/home/prasadkr/systemtap/stap").function("unordered_multimap@/usr/= lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/tr1_impl/uno= rdered_map:283")?=0D process("/home/prasadkr/systemtap/stap").function("unresolved@/home/prasadk= r/systemtap/elaborate.cxx:4808")? $this:struct typeresolution_info* const $= tok:struct token const*=0D process("/home/prasadkr/systemtap/stap").function("unsetf@/usr/lib/gcc/ppc6= 4-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/ios_base.h:614")? $= __mask:fmtflags $this:class ios_base* const=0D process("/home/prasadkr/systemtap/stap").function("upchuck@/home/prasadkr/s= ystemtap/elaborate.cxx:617")? $this:struct alias_derived_probe* const=0D process("/home/prasadkr/systemtap/stap").function("update_coverage_db@/home= /prasadkr/systemtap/coveragedb.cxx:326")? $s:struct systemtap_session&=0D process("/home/prasadkr/systemtap/stap").function("update_symtab@/home/pras= adkr/systemtap/tapsets.cxx:6456")? $this:struct module_info* const $funcs:c= u_function_cache_t*=0D process("/home/prasadkr/systemtap/stap").function("update_visitor@/home/pra= sadkr/systemtap/staptree.h:926")?=0D process("/home/prasadkr/systemtap/stap").function("upper_bound@/usr/lib/gcc= /ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_multimap.h= :658")?=0D process("/home/prasadkr/systemtap/stap").function("upper_bound@/usr/lib/gcc= /ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_tree.h:752= ")?=0D process("/home/prasadkr/systemtap/stap").function("uprobe_builder@/home/pra= sadkr/systemtap/tapsets.cxx:6564")?=0D process("/home/prasadkr/systemtap/stap").function("uprobe_derived_probe@/ho= me/prasadkr/systemtap/tapsets.cxx:439")?=0D process("/home/prasadkr/systemtap/stap").function("uprobe_derived_probe@/ho= me/prasadkr/systemtap/tapsets.cxx:453")?=0D process("/home/prasadkr/systemtap/stap").function("uprobe_derived_probe_gro= up@/home/prasadkr/systemtap/tapsets.cxx:6510")? $this:struct uprobe_derived= _probe_group* const=0D process("/home/prasadkr/systemtap/stap").function("uprobes_pass@/home/prasa= dkr/systemtap/buildrun.cxx:406")? $s:struct systemtap_session&=0D process("/home/prasadkr/systemtap/stap").function("uri_decoder@/home/prasad= kr/systemtap/remote.cxx:31")? $this:class uri_decoder* const $uri:string co= nst&=0D process("/home/prasadkr/systemtap/stap").function("usage@/home/prasadkr/sys= temtap/session.cxx:276")? $this:struct systemtap_session* const $exitcode:i= nt=0D process("/home/prasadkr/systemtap/stap").function("utrace_builder@/home/pra= sadkr/systemtap/tapset-utrace.cxx:625")?=0D process("/home/prasadkr/systemtap/stap").function("utrace_derived_probe@/ho= me/prasadkr/systemtap/tapset-utrace.cxx:118")? $this:struct utrace_derived_= probe* const $s:struct systemtap_session& $p:struct probe* $l:struct probe_= point* $hp:bool $pn:string& $pd:int64_t $f:enum utrace_derived_probe_flags= =0D process("/home/prasadkr/systemtap/stap").function("utrace_derived_probe_gro= up@/home/prasadkr/systemtap/tapset-utrace.cxx:84")? $this:struct utrace_der= ived_probe_group* const=0D process("/home/prasadkr/systemtap/stap").function("utrace_var_expanding_vis= itor@/home/prasadkr/systemtap/tapset-utrace.cxx:95")?=0D process("/home/prasadkr/systemtap/stap").function("validate_module_elf@/hom= e/prasadkr/systemtap/tapsets.cxx:1759")? $mod:Dwfl_Module* $name:char const= * $q:struct base_query*=0D process("/home/prasadkr/systemtap/stap").function("value@/home/prasadkr/sys= temtap/translate.cxx:361")?=0D process("/home/prasadkr/systemtap/stap").function("value@/home/prasadkr/sys= temtap/translate.cxx:498")?=0D process("/home/prasadkr/systemtap/stap").function("value@/home/prasadkr/sys= temtap/translate.cxx:797")?=0D process("/home/prasadkr/systemtap/stap").function("value_typename@/home/pra= sadkr/systemtap/translate.cxx:1851")? $e:enum exp_type=0D process("/home/prasadkr/systemtap/stap").function("var@/home/prasadkr/syste= mtap/translate.cxx:304")?=0D process("/home/prasadkr/systemtap/stap").function("var@/home/prasadkr/syste= mtap/translate.cxx:314")?=0D process("/home/prasadkr/systemtap/stap").function("var@/home/prasadkr/syste= mtap/translate.cxx:318")?=0D process("/home/prasadkr/systemtap/stap").function("var_expanding_visitor@/h= ome/prasadkr/systemtap/tapsets.cxx:2000")? $this:struct var_expanding_visit= or* const=0D process("/home/prasadkr/systemtap/stap").function("vardecl@/home/prasadkr/s= ystemtap/staptree.cxx:148")? $this:struct vardecl* const=0D process("/home/prasadkr/systemtap/stap").function("vardie_from_symtable@/ho= me/prasadkr/systemtap/dwflpp.cxx:2458")? $this:struct dwflpp* const $vardie= :struct Dwarf_Die* $addr:Dwarf_Addr*=0D process("/home/prasadkr/systemtap/stap").function("varuse_collecting_visito= r@/home/prasadkr/systemtap/staptree.h:846")?=0D process("/home/prasadkr/systemtap/stap").function("vasprintf@/usr/include/b= its/stdio2.h:196")? $__ptr:char**=0D process("/home/prasadkr/systemtap/stap").function("vector, std::allocator<= char> > > >@/usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4= .4.4/bits/stl_vector.h:297")? $__last:struct _Rb_tree_const_iterator, std::allocator > > $__first= :struct _Rb_tree_const_iterator, std::allocator > > $this:class vector, std::allocator >, std::allocator, std::allocator > > >* const=0D process("/home/prasadkr/systemtap/stap").function("vector@/usr/lib/gcc/ppc6= 4-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_vector.h:207")?= =0D process("/home/prasadkr/systemtap/stap").function("vector@/usr/lib/gcc/ppc6= 4-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_vector.h:227")?= =0D process("/home/prasadkr/systemtap/stap").function("vector@/usr/lib/gcc/ppc6= 4-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_vector.h:241")?= =0D process("/home/prasadkr/systemtap/stap").function("verify_uprobes_uptodate@= /home/prasadkr/systemtap/buildrun.cxx:338")? $s:struct systemtap_session&=0D process("/home/prasadkr/systemtap/stap").function("version@/home/prasadkr/s= ystemtap/session.cxx:242")? $this:struct systemtap_session* const=0D process("/home/prasadkr/systemtap/stap").function("visit@/home/prasadkr/sys= temtap/staptree.cxx:1209")? $this:struct block* const $u:struct visitor*=0D process("/home/prasadkr/systemtap/stap").function("visit@/home/prasadkr/sys= temtap/staptree.cxx:1216")? $this:struct try_block* const $u:struct visitor= *=0D process("/home/prasadkr/systemtap/stap").function("visit@/home/prasadkr/sys= temtap/staptree.cxx:1223")? $this:struct embeddedcode* const $u:struct visi= tor*=0D process("/home/prasadkr/systemtap/stap").function("visit@/home/prasadkr/sys= temtap/staptree.cxx:1230")? $this:struct for_loop* const $u:struct visitor*= =0D process("/home/prasadkr/systemtap/stap").function("visit@/home/prasadkr/sys= temtap/staptree.cxx:1236")? $this:struct foreach_loop* const $u:struct visi= tor*=0D process("/home/prasadkr/systemtap/stap").function("visit@/home/prasadkr/sys= temtap/staptree.cxx:1242")? $this:struct null_statement* const $u:struct vi= sitor*=0D process("/home/prasadkr/systemtap/stap").function("visit@/home/prasadkr/sys= temtap/staptree.cxx:1248")? $this:struct expr_statement* const $u:struct vi= sitor*=0D process("/home/prasadkr/systemtap/stap").function("visit@/home/prasadkr/sys= temtap/staptree.cxx:1254")? $this:struct return_statement* const $u:struct = visitor*=0D process("/home/prasadkr/systemtap/stap").function("visit@/home/prasadkr/sys= temtap/staptree.cxx:1260")? $this:struct delete_statement* const $u:struct = visitor*=0D process("/home/prasadkr/systemtap/stap").function("visit@/home/prasadkr/sys= temtap/staptree.cxx:1268")? $this:struct if_statement* const $u:struct visi= tor*=0D process("/home/prasadkr/systemtap/stap").function("visit@/home/prasadkr/sys= temtap/staptree.cxx:1274")? $this:struct next_statement* const $u:struct vi= sitor*=0D process("/home/prasadkr/systemtap/stap").function("visit@/home/prasadkr/sys= temtap/staptree.cxx:1280")? $this:struct break_statement* const $u:struct v= isitor*=0D process("/home/prasadkr/systemtap/stap").function("visit@/home/prasadkr/sys= temtap/staptree.cxx:1286")? $this:struct continue_statement* const $u:struc= t visitor*=0D process("/home/prasadkr/systemtap/stap").function("visit@/home/prasadkr/sys= temtap/staptree.cxx:1292")? $this:struct literal_string* const $u:struct vi= sitor*=0D process("/home/prasadkr/systemtap/stap").function("visit@/home/prasadkr/sys= temtap/staptree.cxx:1298")? $this:struct literal_number* const $u:struct vi= sitor*=0D process("/home/prasadkr/systemtap/stap").function("visit@/home/prasadkr/sys= temtap/staptree.cxx:1304")? $this:struct binary_expression* const $u:struct= visitor*=0D process("/home/prasadkr/systemtap/stap").function("visit@/home/prasadkr/sys= temtap/staptree.cxx:1310")? $this:struct embedded_expr* const $u:struct vis= itor*=0D process("/home/prasadkr/systemtap/stap").function("visit@/home/prasadkr/sys= temtap/staptree.cxx:1316")? $this:struct unary_expression* const $u:struct = visitor*=0D process("/home/prasadkr/systemtap/stap").function("visit@/home/prasadkr/sys= temtap/staptree.cxx:1322")? $this:struct pre_crement* const $u:struct visit= or*=0D process("/home/prasadkr/systemtap/stap").function("visit@/home/prasadkr/sys= temtap/staptree.cxx:1330")? $this:struct post_crement* const $u:struct visi= tor*=0D process("/home/prasadkr/systemtap/stap").function("visit@/home/prasadkr/sys= temtap/staptree.cxx:1338")? $this:struct logical_or_expr* const $u:struct v= isitor*=0D process("/home/prasadkr/systemtap/stap").function("visit@/home/prasadkr/sys= temtap/staptree.cxx:1344")? $this:struct logical_and_expr* const $u:struct = visitor*=0D process("/home/prasadkr/systemtap/stap").function("visit@/home/prasadkr/sys= temtap/staptree.cxx:1350")? $this:struct array_in* const $u:struct visitor*= =0D process("/home/prasadkr/systemtap/stap").function("visit@/home/prasadkr/sys= temtap/staptree.cxx:1356")? $this:struct comparison* const $u:struct visito= r*=0D process("/home/prasadkr/systemtap/stap").function("visit@/home/prasadkr/sys= temtap/staptree.cxx:1362")? $this:struct concatenation* const $u:struct vis= itor*=0D process("/home/prasadkr/systemtap/stap").function("visit@/home/prasadkr/sys= temtap/staptree.cxx:1368")? $this:struct ternary_expression* const $u:struc= t visitor*=0D process("/home/prasadkr/systemtap/stap").function("visit@/home/prasadkr/sys= temtap/staptree.cxx:1374")? $this:struct assignment* const $u:struct visito= r*=0D process("/home/prasadkr/systemtap/stap").function("visit@/home/prasadkr/sys= temtap/staptree.cxx:1382")? $this:struct symbol* const $u:struct visitor*=0D process("/home/prasadkr/systemtap/stap").function("visit@/home/prasadkr/sys= temtap/staptree.cxx:1388")? $this:struct target_symbol* const $u:struct vis= itor*=0D process("/home/prasadkr/systemtap/stap").function("visit@/home/prasadkr/sys= temtap/staptree.cxx:1410")? $this:struct cast_op* const $u:struct visitor*= =0D process("/home/prasadkr/systemtap/stap").function("visit@/home/prasadkr/sys= temtap/staptree.cxx:1417")? $this:struct defined_op* const $u:struct visito= r*=0D process("/home/prasadkr/systemtap/stap").function("visit@/home/prasadkr/sys= temtap/staptree.cxx:1424")? $this:struct entry_op* const $u:struct visitor*= =0D process("/home/prasadkr/systemtap/stap").function("visit@/home/prasadkr/sys= temtap/staptree.cxx:1431")? $this:struct arrayindex* const $u:struct visito= r*=0D process("/home/prasadkr/systemtap/stap").function("visit@/home/prasadkr/sys= temtap/staptree.cxx:1437")? $this:struct functioncall* const $u:struct visi= tor*=0D process("/home/prasadkr/systemtap/stap").function("visit@/home/prasadkr/sys= temtap/staptree.cxx:1443")? $this:struct print_format* const $u:struct visi= tor*=0D process("/home/prasadkr/systemtap/stap").function("visit@/home/prasadkr/sys= temtap/staptree.cxx:1449")? $this:struct stat_op* const $u:struct visitor*= =0D process("/home/prasadkr/systemtap/stap").function("visit@/home/prasadkr/sys= temtap/staptree.cxx:1455")? $this:struct hist_op* const $u:struct visitor*= =0D process("/home/prasadkr/systemtap/stap").function("visit_array_in@/home/pra= sadkr/systemtap/elaborate.cxx:2648")? $this:struct void_statement_reducer* = const $e:struct array_in*=0D process("/home/prasadkr/systemtap/stap").function("visit_array_in@/home/pra= sadkr/systemtap/elaborate.cxx:4567")? $this:struct typeresolution_info* con= st $e:struct array_in*=0D process("/home/prasadkr/systemtap/stap").function("visit_array_in@/home/pra= sadkr/systemtap/staptree.cxx:1771")? $this:struct traversing_visitor* const= $e:struct array_in*=0D process("/home/prasadkr/systemtap/stap").function("visit_array_in@/home/pra= sadkr/systemtap/staptree.cxx:2387")? $this:struct throwing_visitor* const $= e:struct array_in*=0D process("/home/prasadkr/systemtap/stap").function("visit_array_in@/home/pra= sadkr/systemtap/staptree.cxx:2645")? $this:struct update_visitor* const $e:= struct array_in*=0D process("/home/prasadkr/systemtap/stap").function("visit_array_in@/home/pra= sadkr/systemtap/staptree.cxx:2917")? $this:struct deep_copy_visitor* const = $e:struct array_in*=0D process("/home/prasadkr/systemtap/stap").function("visit_array_in@/home/pra= sadkr/systemtap/translate.cxx:3347")? $this:struct c_tmpcounter* const $e:s= truct array_in*=0D process("/home/prasadkr/systemtap/stap").function("visit_array_in@/home/pra= sadkr/systemtap/translate.cxx:3385")? $this:struct c_unparser* const $e:str= uct array_in*=0D process("/home/prasadkr/systemtap/stap").function("visit_arrayindex@/home/p= rasadkr/systemtap/elaborate.cxx:1748")? $this:struct delete_statement_symre= solution_info* const $e:struct arrayindex*=0D process("/home/prasadkr/systemtap/stap").function("visit_arrayindex@/home/p= rasadkr/systemtap/elaborate.cxx:1807")? $this:struct symresolution_info* co= nst $e:struct arrayindex*=0D process("/home/prasadkr/systemtap/stap").function("visit_arrayindex@/home/p= rasadkr/systemtap/elaborate.cxx:2649")? $this:struct void_statement_reducer= * const $e:struct arrayindex*=0D process("/home/prasadkr/systemtap/stap").function("visit_arrayindex@/home/p= rasadkr/systemtap/elaborate.cxx:4225")? $this:struct typeresolution_info* c= onst $e:struct arrayindex*=0D process("/home/prasadkr/systemtap/stap").function("visit_arrayindex@/home/p= rasadkr/systemtap/elaborate.cxx:4525")? $this:struct delete_statement_typer= esolution_info* const $e:struct arrayindex*=0D process("/home/prasadkr/systemtap/stap").function("visit_arrayindex@/home/p= rasadkr/systemtap/elaborate.cxx:853")? $this:struct symbol_fetcher* const $= e:struct arrayindex*=0D process("/home/prasadkr/systemtap/stap").function("visit_arrayindex@/home/p= rasadkr/systemtap/elaborate.cxx:910")? $this:struct mutated_var_collector* = const $e:struct arrayindex*=0D process("/home/prasadkr/systemtap/stap").function("visit_arrayindex@/home/p= rasadkr/systemtap/elaborate.cxx:938")? $this:struct no_var_mutation_during_= iteration_check* const $e:struct arrayindex*=0D process("/home/prasadkr/systemtap/stap").function("visit_arrayindex@/home/p= rasadkr/systemtap/staptree.cxx:1837")? $this:struct traversing_visitor* con= st $e:struct arrayindex*=0D process("/home/prasadkr/systemtap/stap").function("visit_arrayindex@/home/p= rasadkr/systemtap/staptree.cxx:2091")? $this:struct varuse_collecting_visit= or* const $e:struct arrayindex*=0D process("/home/prasadkr/systemtap/stap").function("visit_arrayindex@/home/p= rasadkr/systemtap/staptree.cxx:2448")? $this:struct throwing_visitor* const= $e:struct arrayindex*=0D process("/home/prasadkr/systemtap/stap").function("visit_arrayindex@/home/p= rasadkr/systemtap/staptree.cxx:2720")? $this:struct update_visitor* const $= e:struct arrayindex*=0D process("/home/prasadkr/systemtap/stap").function("visit_arrayindex@/home/p= rasadkr/systemtap/staptree.cxx:2981")? $this:struct deep_copy_visitor* cons= t $e:struct arrayindex*=0D process("/home/prasadkr/systemtap/stap").function("visit_arrayindex@/home/p= rasadkr/systemtap/translate.cxx:2591")? $this:struct arrayindex_downcaster*= const $e:struct arrayindex*=0D process("/home/prasadkr/systemtap/stap").function("visit_arrayindex@/home/p= rasadkr/systemtap/translate.cxx:3051")? $this:struct delete_statement_opera= nd_tmp_visitor* const $e:struct arrayindex*=0D process("/home/prasadkr/systemtap/stap").function("visit_arrayindex@/home/p= rasadkr/systemtap/translate.cxx:3077")? $this:struct delete_statement_opera= nd_visitor* const $e:struct arrayindex*=0D process("/home/prasadkr/systemtap/stap").function("visit_arrayindex@/home/p= rasadkr/systemtap/translate.cxx:3896")? $this:struct c_tmpcounter* const $e= :struct arrayindex*=0D process("/home/prasadkr/systemtap/stap").function("visit_arrayindex@/home/p= rasadkr/systemtap/translate.cxx:3967")? $this:struct c_unparser* const $e:s= truct arrayindex*=0D process("/home/prasadkr/systemtap/stap").function("visit_arrayindex@/home/p= rasadkr/systemtap/translate.cxx:4051")? $this:struct c_tmpcounter_assignmen= t* const $e:struct arrayindex*=0D process("/home/prasadkr/systemtap/stap").function("visit_arrayindex@/home/p= rasadkr/systemtap/translate.cxx:4083")? $this:struct c_unparser_assignment*= const $e:struct arrayindex*=0D process("/home/prasadkr/systemtap/stap").function("visit_assignment@/home/p= rasadkr/systemtap/elaborate.cxx:1015")? $this:struct stat_decl_collector* c= onst $e:struct assignment*=0D process("/home/prasadkr/systemtap/stap").function("visit_assignment@/home/p= rasadkr/systemtap/elaborate.cxx:2205")? $this:struct dead_assignment_remove= r* const $e:struct assignment*=0D process("/home/prasadkr/systemtap/stap").function("visit_assignment@/home/p= rasadkr/systemtap/elaborate.cxx:2658")? $this:struct void_statement_reducer= * const $e:struct assignment*=0D process("/home/prasadkr/systemtap/stap").function("visit_assignment@/home/p= rasadkr/systemtap/elaborate.cxx:3903")? $this:struct typeresolution_info* c= onst $e:struct assignment*=0D process("/home/prasadkr/systemtap/stap").function("visit_assignment@/home/p= rasadkr/systemtap/elaborate.cxx:899")? $this:struct mutated_var_collector* = const $e:struct assignment*=0D process("/home/prasadkr/systemtap/stap").function("visit_assignment@/home/p= rasadkr/systemtap/staptree.cxx:1799")? $this:struct traversing_visitor* con= st $e:struct assignment*=0D process("/home/prasadkr/systemtap/stap").function("visit_assignment@/home/p= rasadkr/systemtap/staptree.cxx:2040")? $this:struct varuse_collecting_visit= or* const $e:struct assignment*=0D process("/home/prasadkr/systemtap/stap").function("visit_assignment@/home/p= rasadkr/systemtap/staptree.cxx:2411")? $this:struct throwing_visitor* const= $e:struct assignment*=0D process("/home/prasadkr/systemtap/stap").function("visit_assignment@/home/p= rasadkr/systemtap/staptree.cxx:2677")? $this:struct update_visitor* const $= e:struct assignment*=0D process("/home/prasadkr/systemtap/stap").function("visit_assignment@/home/p= rasadkr/systemtap/staptree.cxx:2941")? $this:struct deep_copy_visitor* cons= t $e:struct assignment*=0D process("/home/prasadkr/systemtap/stap").function("visit_assignment@/home/p= rasadkr/systemtap/tapsets.cxx:2076")? $this:struct var_expanding_visitor* c= onst $e:struct assignment*=0D process("/home/prasadkr/systemtap/stap").function("visit_assignment@/home/p= rasadkr/systemtap/translate.cxx:3509")? $this:struct c_tmpcounter* const $e= :struct assignment*=0D process("/home/prasadkr/systemtap/stap").function("visit_assignment@/home/p= rasadkr/systemtap/translate.cxx:3517")? $this:struct c_unparser* const $e:s= truct assignment*=0D process("/home/prasadkr/systemtap/stap").function("visit_binary_expression@= /home/prasadkr/systemtap/elaborate.cxx:2786")? $this:struct void_statement_= reducer* const $e:struct binary_expression*=0D process("/home/prasadkr/systemtap/stap").function("visit_binary_expression@= /home/prasadkr/systemtap/elaborate.cxx:3159")? $this:struct const_folder* c= onst $e:struct binary_expression*=0D process("/home/prasadkr/systemtap/stap").function("visit_binary_expression@= /home/prasadkr/systemtap/elaborate.cxx:4017")? $this:struct typeresolution_= info* const $e:struct binary_expression*=0D process("/home/prasadkr/systemtap/stap").function("visit_binary_expression@= /home/prasadkr/systemtap/staptree.cxx:1731")? $this:struct traversing_visit= or* const $e:struct binary_expression*=0D process("/home/prasadkr/systemtap/stap").function("visit_binary_expression@= /home/prasadkr/systemtap/staptree.cxx:2350")? $this:struct throwing_visitor= * const $e:struct binary_expression*=0D process("/home/prasadkr/systemtap/stap").function("visit_binary_expression@= /home/prasadkr/systemtap/staptree.cxx:2599")? $this:struct update_visitor* = const $e:struct binary_expression*=0D process("/home/prasadkr/systemtap/stap").function("visit_binary_expression@= /home/prasadkr/systemtap/staptree.cxx:2880")? $this:struct deep_copy_visito= r* const $e:struct binary_expression*=0D process("/home/prasadkr/systemtap/stap").function("visit_binary_expression@= /home/prasadkr/systemtap/translate.cxx:3174")? $this:struct c_tmpcounter* c= onst $e:struct binary_expression*=0D process("/home/prasadkr/systemtap/stap").function("visit_binary_expression@= /home/prasadkr/systemtap/translate.cxx:3213")? $this:struct c_unparser* con= st $e:struct binary_expression*=0D process("/home/prasadkr/systemtap/stap").function("visit_block@/home/prasad= kr/systemtap/elaborate.cxx:1679")? $this:struct symresolution_info* const $= e:struct block*=0D process("/home/prasadkr/systemtap/stap").function("visit_block@/home/prasad= kr/systemtap/elaborate.cxx:2340")? $this:struct dead_stmtexpr_remover* cons= t $s:struct block*=0D process("/home/prasadkr/systemtap/stap").function("visit_block@/home/prasad= kr/systemtap/elaborate.cxx:4335")? $this:struct typeresolution_info* const = $e:struct block*=0D process("/home/prasadkr/systemtap/stap").function("visit_block@/home/prasad= kr/systemtap/staptree.cxx:1614")? $this:struct traversing_visitor* const $s= :struct block*=0D process("/home/prasadkr/systemtap/stap").function("visit_block@/home/prasad= kr/systemtap/staptree.cxx:2253")? $this:struct throwing_visitor* const $s:s= truct block*=0D process("/home/prasadkr/systemtap/stap").function("visit_block@/home/prasad= kr/systemtap/staptree.cxx:2482")? $this:struct update_visitor* const $s:str= uct block*=0D process("/home/prasadkr/systemtap/stap").function("visit_block@/home/prasad= kr/systemtap/staptree.cxx:2784")? $this:struct deep_copy_visitor* const $s:= struct block*=0D process("/home/prasadkr/systemtap/stap").function("visit_block@/home/prasad= kr/systemtap/translate.cxx:2368")? $this:struct c_unparser* const $s:struct= block*=0D process("/home/prasadkr/systemtap/stap").function("visit_block@/home/prasad= kr/systemtap/translate.cxx:2495")? $this:struct c_tmpcounter* const $s:stru= ct block*=0D process("/home/prasadkr/systemtap/stap").function("visit_break_statement@/h= ome/prasadkr/systemtap/elaborate.cxx:4555")? $this:struct typeresolution_in= fo* const=0D process("/home/prasadkr/systemtap/stap").function("visit_break_statement@/h= ome/prasadkr/systemtap/staptree.cxx:1706")? $this:struct traversing_visitor= * const=0D process("/home/prasadkr/systemtap/stap").function("visit_break_statement@/h= ome/prasadkr/systemtap/staptree.cxx:2320")? $this:struct throwing_visitor* = const $s:struct break_statement*=0D process("/home/prasadkr/systemtap/stap").function("visit_break_statement@/h= ome/prasadkr/systemtap/staptree.cxx:2569")? $this:struct update_visitor* co= nst $s:struct break_statement*=0D process("/home/prasadkr/systemtap/stap").function("visit_break_statement@/h= ome/prasadkr/systemtap/staptree.cxx:2850")? $this:struct deep_copy_visitor*= const $s:struct break_statement*=0D process("/home/prasadkr/systemtap/stap").function("visit_break_statement@/h= ome/prasadkr/systemtap/translate.cxx:3118")? $this:struct c_unparser* const= $s:struct break_statement*=0D process("/home/prasadkr/systemtap/stap").function("visit_cast_op@/home/pras= adkr/systemtap/elaborate.cxx:2949")? $this:struct void_statement_reducer* c= onst $e:struct cast_op*=0D process("/home/prasadkr/systemtap/stap").function("visit_cast_op@/home/pras= adkr/systemtap/elaborate.cxx:4213")? $this:struct typeresolution_info* cons= t $e:struct cast_op*=0D process("/home/prasadkr/systemtap/stap").function("visit_cast_op@/home/pras= adkr/systemtap/elaborate.cxx:858")? $this:struct symbol_fetcher* const $e:s= truct cast_op*=0D process("/home/prasadkr/systemtap/stap").function("visit_cast_op@/home/pras= adkr/systemtap/staptree.cxx:1817")? $this:struct traversing_visitor* const = $e:struct cast_op*=0D process("/home/prasadkr/systemtap/stap").function("visit_cast_op@/home/pras= adkr/systemtap/staptree.cxx:1997")? $this:struct varuse_collecting_visitor*= const $e:struct cast_op*=0D process("/home/prasadkr/systemtap/stap").function("visit_cast_op@/home/pras= adkr/systemtap/staptree.cxx:2429")? $this:struct throwing_visitor* const $e= :struct cast_op*=0D process("/home/prasadkr/systemtap/stap").function("visit_cast_op@/home/pras= adkr/systemtap/staptree.cxx:2698")? $this:struct update_visitor* const $e:s= truct cast_op*=0D process("/home/prasadkr/systemtap/stap").function("visit_cast_op@/home/pras= adkr/systemtap/staptree.cxx:2963")? $this:struct deep_copy_visitor* const $= e:struct cast_op*=0D process("/home/prasadkr/systemtap/stap").function("visit_cast_op@/home/pras= adkr/systemtap/tapsets.cxx:3384")? $this:struct dwarf_var_expanding_visitor= * const $e:struct cast_op*=0D process("/home/prasadkr/systemtap/stap").function("visit_cast_op@/home/pras= adkr/systemtap/tapsets.cxx:3653")? $this:struct dwarf_cast_expanding_visito= r* const $e:struct cast_op*=0D process("/home/prasadkr/systemtap/stap").function("visit_cast_op@/home/pras= adkr/systemtap/translate.cxx:3723")? $this:struct c_unparser* const $e:stru= ct cast_op*=0D process("/home/prasadkr/systemtap/stap").function("visit_comparison@/home/p= rasadkr/systemtap/elaborate.cxx:2827")? $this:struct void_statement_reducer= * const $e:struct comparison*=0D process("/home/prasadkr/systemtap/stap").function("visit_comparison@/home/p= rasadkr/systemtap/elaborate.cxx:3383")? $this:struct const_folder* const $e= :struct comparison*=0D process("/home/prasadkr/systemtap/stap").function("visit_comparison@/home/p= rasadkr/systemtap/elaborate.cxx:3859")? $this:struct typeresolution_info* c= onst $e:struct comparison*=0D process("/home/prasadkr/systemtap/stap").function("visit_comparison@/home/p= rasadkr/systemtap/staptree.cxx:1777")? $this:struct traversing_visitor* con= st $e:struct comparison*=0D process("/home/prasadkr/systemtap/stap").function("visit_comparison@/home/p= rasadkr/systemtap/staptree.cxx:2393")? $this:struct throwing_visitor* const= $e:struct comparison*=0D process("/home/prasadkr/systemtap/stap").function("visit_comparison@/home/p= rasadkr/systemtap/staptree.cxx:2652")? $this:struct update_visitor* const $= e:struct comparison*=0D process("/home/prasadkr/systemtap/stap").function("visit_comparison@/home/p= rasadkr/systemtap/staptree.cxx:2923")? $this:struct deep_copy_visitor* cons= t $e:struct comparison*=0D process("/home/prasadkr/systemtap/stap").function("visit_comparison@/home/p= rasadkr/systemtap/translate.cxx:3420")? $this:struct c_unparser* const $e:s= truct comparison*=0D process("/home/prasadkr/systemtap/stap").function("visit_components@/home/p= rasadkr/systemtap/staptree.cxx:1394")? $this:struct target_symbol* const $u= :struct visitor*=0D process("/home/prasadkr/systemtap/stap").function("visit_components@/home/p= rasadkr/systemtap/staptree.cxx:1402")? $this:struct target_symbol* const $u= :struct update_visitor*=0D process("/home/prasadkr/systemtap/stap").function("visit_concatenation@/hom= e/prasadkr/systemtap/elaborate.cxx:2833")? $this:struct void_statement_redu= cer* const $e:struct concatenation*=0D process("/home/prasadkr/systemtap/stap").function("visit_concatenation@/hom= e/prasadkr/systemtap/elaborate.cxx:3460")? $this:struct const_folder* const= $e:struct concatenation*=0D process("/home/prasadkr/systemtap/stap").function("visit_concatenation@/hom= e/prasadkr/systemtap/elaborate.cxx:3884")? $this:struct typeresolution_info= * const $e:struct concatenation*=0D process("/home/prasadkr/systemtap/stap").function("visit_concatenation@/hom= e/prasadkr/systemtap/staptree.cxx:1784")? $this:struct traversing_visitor* = const $e:struct concatenation*=0D process("/home/prasadkr/systemtap/stap").function("visit_concatenation@/hom= e/prasadkr/systemtap/staptree.cxx:2399")? $this:struct throwing_visitor* co= nst $e:struct concatenation*=0D process("/home/prasadkr/systemtap/stap").function("visit_concatenation@/hom= e/prasadkr/systemtap/staptree.cxx:2660")? $this:struct update_visitor* cons= t $e:struct concatenation*=0D process("/home/prasadkr/systemtap/stap").function("visit_concatenation@/hom= e/prasadkr/systemtap/staptree.cxx:2929")? $this:struct deep_copy_visitor* c= onst $e:struct concatenation*=0D process("/home/prasadkr/systemtap/stap").function("visit_concatenation@/hom= e/prasadkr/systemtap/translate.cxx:3455")? $this:struct c_tmpcounter* const= $e:struct concatenation*=0D process("/home/prasadkr/systemtap/stap").function("visit_concatenation@/hom= e/prasadkr/systemtap/translate.cxx:3465")? $this:struct c_unparser* const $= e:struct concatenation*=0D process("/home/prasadkr/systemtap/stap").function("visit_continue_statement= @/home/prasadkr/systemtap/elaborate.cxx:4561")? $this:struct typeresolution= _info* const=0D process("/home/prasadkr/systemtap/stap").function("visit_continue_statement= @/home/prasadkr/systemtap/staptree.cxx:1711")? $this:struct traversing_visi= tor* const=0D process("/home/prasadkr/systemtap/stap").function("visit_continue_statement= @/home/prasadkr/systemtap/staptree.cxx:2326")? $this:struct throwing_visito= r* const $s:struct continue_statement*=0D process("/home/prasadkr/systemtap/stap").function("visit_continue_statement= @/home/prasadkr/systemtap/staptree.cxx:2575")? $this:struct update_visitor*= const $s:struct continue_statement*=0D process("/home/prasadkr/systemtap/stap").function("visit_continue_statement= @/home/prasadkr/systemtap/staptree.cxx:2856")? $this:struct deep_copy_visit= or* const $s:struct continue_statement*=0D process("/home/prasadkr/systemtap/stap").function("visit_continue_statement= @/home/prasadkr/systemtap/translate.cxx:3129")? $this:struct c_unparser* co= nst $s:struct continue_statement*=0D process("/home/prasadkr/systemtap/stap").function("visit_defined_op@/home/p= rasadkr/systemtap/elaborate.cxx:2984")? $this:struct void_statement_reducer= * const $e:struct defined_op*=0D process("/home/prasadkr/systemtap/stap").function("visit_defined_op@/home/p= rasadkr/systemtap/elaborate.cxx:3510")? $this:struct const_folder* const $e= :struct defined_op*=0D process("/home/prasadkr/systemtap/stap").function("visit_defined_op@/home/p= rasadkr/systemtap/elaborate.cxx:4199")? $this:struct typeresolution_info* c= onst $e:struct defined_op*=0D process("/home/prasadkr/systemtap/stap").function("visit_defined_op@/home/p= rasadkr/systemtap/staptree.cxx:1824")? $this:struct traversing_visitor* con= st $e:struct defined_op*=0D process("/home/prasadkr/systemtap/stap").function("visit_defined_op@/home/p= rasadkr/systemtap/staptree.cxx:2008")? $this:struct varuse_collecting_visit= or* const $e:struct defined_op*=0D process("/home/prasadkr/systemtap/stap").function("visit_defined_op@/home/p= rasadkr/systemtap/staptree.cxx:2435")? $this:struct throwing_visitor* const= $e:struct defined_op*=0D process("/home/prasadkr/systemtap/stap").function("visit_defined_op@/home/p= rasadkr/systemtap/staptree.cxx:2706")? $this:struct update_visitor* const $= e:struct defined_op*=0D process("/home/prasadkr/systemtap/stap").function("visit_defined_op@/home/p= rasadkr/systemtap/staptree.cxx:2969")? $this:struct deep_copy_visitor* cons= t $e:struct defined_op*=0D process("/home/prasadkr/systemtap/stap").function("visit_defined_op@/home/p= rasadkr/systemtap/tapsets.cxx:2112")? $this:struct var_expanding_visitor* c= onst $e:struct defined_op*=0D process("/home/prasadkr/systemtap/stap").function("visit_defined_op@/home/p= rasadkr/systemtap/translate.cxx:3730")? $this:struct c_unparser* const $e:s= truct defined_op*=0D process("/home/prasadkr/systemtap/stap").function("visit_delete_statement@/= home/prasadkr/systemtap/elaborate.cxx:1771")? $this:struct symresolution_in= fo* const $s:struct delete_statement*=0D process("/home/prasadkr/systemtap/stap").function("visit_delete_statement@/= home/prasadkr/systemtap/elaborate.cxx:2655")? $this:struct void_statement_r= educer* const $s:struct delete_statement*=0D process("/home/prasadkr/systemtap/stap").function("visit_delete_statement@/= home/prasadkr/systemtap/elaborate.cxx:4540")? $this:struct typeresolution_i= nfo* const $e:struct delete_statement*=0D process("/home/prasadkr/systemtap/stap").function("visit_delete_statement@/= home/prasadkr/systemtap/staptree.cxx:1695")? $this:struct traversing_visito= r* const $s:struct delete_statement*=0D process("/home/prasadkr/systemtap/stap").function("visit_delete_statement@/= home/prasadkr/systemtap/staptree.cxx:2197")? $this:struct varuse_collecting= _visitor* const $s:struct delete_statement*=0D process("/home/prasadkr/systemtap/stap").function("visit_delete_statement@/= home/prasadkr/systemtap/staptree.cxx:2308")? $this:struct throwing_visitor*= const $s:struct delete_statement*=0D process("/home/prasadkr/systemtap/stap").function("visit_delete_statement@/= home/prasadkr/systemtap/staptree.cxx:2556")? $this:struct update_visitor* c= onst $s:struct delete_statement*=0D process("/home/prasadkr/systemtap/stap").function("visit_delete_statement@/= home/prasadkr/systemtap/staptree.cxx:2838")? $this:struct deep_copy_visitor= * const $s:struct delete_statement*=0D process("/home/prasadkr/systemtap/stap").function("visit_delete_statement@/= home/prasadkr/systemtap/tapsets.cxx:2102")? $this:struct var_expanding_visi= tor* const $s:struct delete_statement*=0D process("/home/prasadkr/systemtap/stap").function("visit_delete_statement@/= home/prasadkr/systemtap/translate.cxx:3101")? $this:struct c_tmpcounter* co= nst $s:struct delete_statement*=0D process("/home/prasadkr/systemtap/stap").function("visit_delete_statement@/= home/prasadkr/systemtap/translate.cxx:3109")? $this:struct c_unparser* cons= t $s:struct delete_statement*=0D process("/home/prasadkr/systemtap/stap").function("visit_embedded_expr@/hom= e/prasadkr/systemtap/elaborate.cxx:4002")? $this:struct typeresolution_info= * const $e:struct embedded_expr*=0D process("/home/prasadkr/systemtap/stap").function("visit_embedded_expr@/hom= e/prasadkr/systemtap/staptree.cxx:1726")? $this:struct traversing_visitor* = const=0D process("/home/prasadkr/systemtap/stap").function("visit_embedded_expr@/hom= e/prasadkr/systemtap/staptree.cxx:1950")? $this:struct varuse_collecting_vi= sitor* const $e:struct embedded_expr*=0D process("/home/prasadkr/systemtap/stap").function("visit_embedded_expr@/hom= e/prasadkr/systemtap/staptree.cxx:2344")? $this:struct throwing_visitor* co= nst $e:struct embedded_expr*=0D process("/home/prasadkr/systemtap/stap").function("visit_embedded_expr@/hom= e/prasadkr/systemtap/staptree.cxx:2593")? $this:struct update_visitor* cons= t $e:struct embedded_expr*=0D process("/home/prasadkr/systemtap/stap").function("visit_embedded_expr@/hom= e/prasadkr/systemtap/staptree.cxx:2874")? $this:struct deep_copy_visitor* c= onst $e:struct embedded_expr*=0D process("/home/prasadkr/systemtap/stap").function("visit_embedded_expr@/hom= e/prasadkr/systemtap/translate.cxx:3192")? $this:struct c_unparser* const $= e:struct embedded_expr*=0D process("/home/prasadkr/systemtap/stap").function("visit_embeddedcode@/home= /prasadkr/systemtap/elaborate.cxx:1222")? $this:struct embeddedcode_info* c= onst $c:struct embeddedcode*=0D process("/home/prasadkr/systemtap/stap").function("visit_embeddedcode@/home= /prasadkr/systemtap/elaborate.cxx:4368")? $this:struct typeresolution_info*= const $s:struct embeddedcode*=0D process("/home/prasadkr/systemtap/stap").function("visit_embeddedcode@/home= /prasadkr/systemtap/staptree.cxx:1632")? $this:struct traversing_visitor* c= onst=0D process("/home/prasadkr/systemtap/stap").function("visit_embeddedcode@/home= /prasadkr/systemtap/staptree.cxx:1914")? $this:struct varuse_collecting_vis= itor* const $s:struct embeddedcode*=0D process("/home/prasadkr/systemtap/stap").function("visit_embeddedcode@/home= /prasadkr/systemtap/staptree.cxx:2266")? $this:struct throwing_visitor* con= st $s:struct embeddedcode*=0D process("/home/prasadkr/systemtap/stap").function("visit_embeddedcode@/home= /prasadkr/systemtap/staptree.cxx:2499")? $this:struct update_visitor* const= $s:struct embeddedcode*=0D process("/home/prasadkr/systemtap/stap").function("visit_embeddedcode@/home= /prasadkr/systemtap/staptree.cxx:2796")? $this:struct deep_copy_visitor* co= nst $s:struct embeddedcode*=0D process("/home/prasadkr/systemtap/stap").function("visit_embeddedcode@/home= /prasadkr/systemtap/translate.cxx:2441")? $this:struct c_unparser* const $s= :struct embeddedcode*=0D process("/home/prasadkr/systemtap/stap").function("visit_entry_op@/home/pra= sadkr/systemtap/elaborate.cxx:4206")? $this:struct typeresolution_info* con= st $e:struct entry_op*=0D process("/home/prasadkr/systemtap/stap").function("visit_entry_op@/home/pra= sadkr/systemtap/staptree.cxx:1830")? $this:struct traversing_visitor* const= $e:struct entry_op*=0D process("/home/prasadkr/systemtap/stap").function("visit_entry_op@/home/pra= sadkr/systemtap/staptree.cxx:2015")? $this:struct varuse_collecting_visitor= * const $e:struct entry_op*=0D process("/home/prasadkr/systemtap/stap").function("visit_entry_op@/home/pra= sadkr/systemtap/staptree.cxx:2441")? $this:struct throwing_visitor* const $= e:struct entry_op*=0D process("/home/prasadkr/systemtap/stap").function("visit_entry_op@/home/pra= sadkr/systemtap/staptree.cxx:2713")? $this:struct update_visitor* const $e:= struct entry_op*=0D process("/home/prasadkr/systemtap/stap").function("visit_entry_op@/home/pra= sadkr/systemtap/staptree.cxx:2975")? $this:struct deep_copy_visitor* const = $e:struct entry_op*=0D process("/home/prasadkr/systemtap/stap").function("visit_entry_op@/home/pra= sadkr/systemtap/tapsets.cxx:3395")? $this:struct dwarf_var_expanding_visito= r* const $e:struct entry_op*=0D process("/home/prasadkr/systemtap/stap").function("visit_entry_op@/home/pra= sadkr/systemtap/translate.cxx:3737")? $this:struct c_unparser* const $e:str= uct entry_op*=0D process("/home/prasadkr/systemtap/stap").function("visit_expr_statement@/ho= me/prasadkr/systemtap/elaborate.cxx:2496")? $this:struct dead_stmtexpr_remo= ver* const $s:struct expr_statement*=0D process("/home/prasadkr/systemtap/stap").function("visit_expr_statement@/ho= me/prasadkr/systemtap/elaborate.cxx:2663")? $this:struct void_statement_red= ucer* const $s:struct expr_statement*=0D process("/home/prasadkr/systemtap/stap").function("visit_expr_statement@/ho= me/prasadkr/systemtap/elaborate.cxx:4509")? $this:struct typeresolution_inf= o* const $e:struct expr_statement*=0D process("/home/prasadkr/systemtap/stap").function("visit_expr_statement@/ho= me/prasadkr/systemtap/staptree.cxx:1642")? $this:struct traversing_visitor*= const $s:struct expr_statement*=0D process("/home/prasadkr/systemtap/stap").function("visit_expr_statement@/ho= me/prasadkr/systemtap/staptree.cxx:2278")? $this:struct throwing_visitor* c= onst $s:struct expr_statement*=0D process("/home/prasadkr/systemtap/stap").function("visit_expr_statement@/ho= me/prasadkr/systemtap/staptree.cxx:2511")? $this:struct update_visitor* con= st $s:struct expr_statement*=0D process("/home/prasadkr/systemtap/stap").function("visit_expr_statement@/ho= me/prasadkr/systemtap/staptree.cxx:2808")? $this:struct deep_copy_visitor* = const $s:struct expr_statement*=0D process("/home/prasadkr/systemtap/stap").function("visit_expr_statement@/ho= me/prasadkr/systemtap/translate.cxx:2461")? $this:struct c_unparser* const = $s:struct expr_statement*=0D process("/home/prasadkr/systemtap/stap").function("visit_for_loop@/home/pra= sadkr/systemtap/elaborate.cxx:2466")? $this:struct dead_stmtexpr_remover* c= onst $s:struct for_loop*=0D process("/home/prasadkr/systemtap/stap").function("visit_for_loop@/home/pra= sadkr/systemtap/elaborate.cxx:2683")? $this:struct void_statement_reducer* = const $s:struct for_loop*=0D process("/home/prasadkr/systemtap/stap").function("visit_for_loop@/home/pra= sadkr/systemtap/elaborate.cxx:3112")? $this:struct const_folder* const $s:s= truct for_loop*=0D process("/home/prasadkr/systemtap/stap").function("visit_for_loop@/home/pra= sadkr/systemtap/elaborate.cxx:4404")? $this:struct typeresolution_info* con= st $e:struct for_loop*=0D process("/home/prasadkr/systemtap/stap").function("visit_for_loop@/home/pra= sadkr/systemtap/staptree.cxx:1657")? $this:struct traversing_visitor* const= $s:struct for_loop*=0D process("/home/prasadkr/systemtap/stap").function("visit_for_loop@/home/pra= sadkr/systemtap/staptree.cxx:2290")? $this:struct throwing_visitor* const $= s:struct for_loop*=0D process("/home/prasadkr/systemtap/stap").function("visit_for_loop@/home/pra= sadkr/systemtap/staptree.cxx:2527")? $this:struct update_visitor* const $s:= struct for_loop*=0D process("/home/prasadkr/systemtap/stap").function("visit_for_loop@/home/pra= sadkr/systemtap/staptree.cxx:2820")? $this:struct deep_copy_visitor* const = $s:struct for_loop*=0D process("/home/prasadkr/systemtap/stap").function("visit_for_loop@/home/pra= sadkr/systemtap/translate.cxx:2526")? $this:struct c_tmpcounter* const $s:s= truct for_loop*=0D process("/home/prasadkr/systemtap/stap").function("visit_for_loop@/home/pra= sadkr/systemtap/translate.cxx:2536")? $this:struct c_unparser* const $s:str= uct for_loop*=0D process("/home/prasadkr/systemtap/stap").function("visit_foreach_loop@/home= /prasadkr/systemtap/elaborate.cxx:1696")? $this:struct symresolution_info* = const $e:struct foreach_loop*=0D process("/home/prasadkr/systemtap/stap").function("visit_foreach_loop@/home= /prasadkr/systemtap/elaborate.cxx:2450")? $this:struct dead_stmtexpr_remove= r* const $s:struct foreach_loop*=0D process("/home/prasadkr/systemtap/stap").function("visit_foreach_loop@/home= /prasadkr/systemtap/elaborate.cxx:2691")? $this:struct void_statement_reduc= er* const $s:struct foreach_loop*=0D process("/home/prasadkr/systemtap/stap").function("visit_foreach_loop@/home= /prasadkr/systemtap/elaborate.cxx:3136")? $this:struct const_folder* const = $s:struct foreach_loop*=0D process("/home/prasadkr/systemtap/stap").function("visit_foreach_loop@/home= /prasadkr/systemtap/elaborate.cxx:4418")? $this:struct typeresolution_info*= const $e:struct foreach_loop*=0D process("/home/prasadkr/systemtap/stap").function("visit_foreach_loop@/home= /prasadkr/systemtap/elaborate.cxx:982")? $this:struct no_var_mutation_durin= g_iteration_check* const $s:struct foreach_loop*=0D process("/home/prasadkr/systemtap/stap").function("visit_foreach_loop@/home= /prasadkr/systemtap/staptree.cxx:1666")? $this:struct traversing_visitor* c= onst $s:struct foreach_loop*=0D process("/home/prasadkr/systemtap/stap").function("visit_foreach_loop@/home= /prasadkr/systemtap/staptree.cxx:2147")? $this:struct varuse_collecting_vis= itor* const $s:struct foreach_loop*=0D process("/home/prasadkr/systemtap/stap").function("visit_foreach_loop@/home= /prasadkr/systemtap/staptree.cxx:2296")? $this:struct throwing_visitor* con= st $s:struct foreach_loop*=0D process("/home/prasadkr/systemtap/stap").function("visit_foreach_loop@/home= /prasadkr/systemtap/staptree.cxx:2537")? $this:struct update_visitor* const= $s:struct foreach_loop*=0D process("/home/prasadkr/systemtap/stap").function("visit_foreach_loop@/home= /prasadkr/systemtap/staptree.cxx:2826")? $this:struct deep_copy_visitor* co= nst $s:struct foreach_loop*=0D process("/home/prasadkr/systemtap/stap").function("visit_foreach_loop@/home= /prasadkr/systemtap/translate.cxx:2682")? $this:struct c_tmpcounter* const = $s:struct foreach_loop*=0D process("/home/prasadkr/systemtap/stap").function("visit_foreach_loop@/home= /prasadkr/systemtap/translate.cxx:2731")? $this:struct c_unparser* const $s= :struct foreach_loop*=0D process("/home/prasadkr/systemtap/stap").function("visit_foreach_loop_value= @/home/prasadkr/systemtap/translate.cxx:2616")? $this:struct c_unparser* co= nst $vis:struct visitor* $s:struct foreach_loop* $value:string const&=0D process("/home/prasadkr/systemtap/stap").function("visit_functioncall@/home= /prasadkr/systemtap/elaborate.cxx:1752")? $this:struct delete_statement_sym= resolution_info* const $e:struct functioncall*=0D process("/home/prasadkr/systemtap/stap").function("visit_functioncall@/home= /prasadkr/systemtap/elaborate.cxx:1842")? $this:struct symresolution_info* = const $e:struct functioncall*=0D process("/home/prasadkr/systemtap/stap").function("visit_functioncall@/home= /prasadkr/systemtap/elaborate.cxx:2839")? $this:struct void_statement_reduc= er* const $e:struct functioncall*=0D process("/home/prasadkr/systemtap/stap").function("visit_functioncall@/home= /prasadkr/systemtap/elaborate.cxx:3574")? $this:struct duplicate_function_r= emover* const $e:struct functioncall*=0D process("/home/prasadkr/systemtap/stap").function("visit_functioncall@/home= /prasadkr/systemtap/elaborate.cxx:4295")? $this:struct typeresolution_info*= const $e:struct functioncall*=0D process("/home/prasadkr/systemtap/stap").function("visit_functioncall@/home= /prasadkr/systemtap/elaborate.cxx:960")? $this:struct no_var_mutation_durin= g_iteration_check* const $e:struct functioncall*=0D process("/home/prasadkr/systemtap/stap").function("visit_functioncall@/home= /prasadkr/systemtap/staptree.cxx:1852")? $this:struct traversing_visitor* c= onst $e:struct functioncall*=0D process("/home/prasadkr/systemtap/stap").function("visit_functioncall@/home= /prasadkr/systemtap/staptree.cxx:1881")? $this:struct functioncall_traversi= ng_visitor* const $e:struct functioncall*=0D process("/home/prasadkr/systemtap/stap").function("visit_functioncall@/home= /prasadkr/systemtap/staptree.cxx:2454")? $this:struct throwing_visitor* con= st $e:struct functioncall*=0D process("/home/prasadkr/systemtap/stap").function("visit_functioncall@/home= /prasadkr/systemtap/staptree.cxx:2729")? $this:struct update_visitor* const= $e:struct functioncall*=0D process("/home/prasadkr/systemtap/stap").function("visit_functioncall@/home= /prasadkr/systemtap/staptree.cxx:2987")? $this:struct deep_copy_visitor* co= nst $e:struct functioncall*=0D process("/home/prasadkr/systemtap/stap").function("visit_functioncall@/home= /prasadkr/systemtap/translate.cxx:4174")? $this:struct c_tmpcounter* const = $e:struct functioncall*=0D process("/home/prasadkr/systemtap/stap").function("visit_functioncall@/home= /prasadkr/systemtap/translate.cxx:4191")? $this:struct c_unparser* const $e= :struct functioncall*=0D process("/home/prasadkr/systemtap/stap").function("visit_functioncall@/home= /prasadkr/systemtap/translate.cxx:5703")? $this:struct recursion_info* cons= t $e:struct functioncall*=0D process("/home/prasadkr/systemtap/stap").function("visit_hist_op@/home/pras= adkr/systemtap/elaborate.cxx:1027")? $this:struct stat_decl_collector* cons= t $e:struct hist_op*=0D process("/home/prasadkr/systemtap/stap").function("visit_hist_op@/home/pras= adkr/systemtap/elaborate.cxx:2651")? $this:struct void_statement_reducer* c= onst $e:struct hist_op*=0D process("/home/prasadkr/systemtap/stap").function("visit_hist_op@/home/pras= adkr/systemtap/elaborate.cxx:4757")? $this:struct typeresolution_info* cons= t $e:struct hist_op*=0D process("/home/prasadkr/systemtap/stap").function("visit_hist_op@/home/pras= adkr/systemtap/staptree.cxx:1874")? $this:struct traversing_visitor* const = $e:struct hist_op*=0D process("/home/prasadkr/systemtap/stap").function("visit_hist_op@/home/pras= adkr/systemtap/staptree.cxx:2472")? $this:struct throwing_visitor* const $e= :struct hist_op*=0D process("/home/prasadkr/systemtap/stap").function("visit_hist_op@/home/pras= adkr/systemtap/staptree.cxx:2753")? $this:struct update_visitor* const $e:s= truct hist_op*=0D process("/home/prasadkr/systemtap/stap").function("visit_hist_op@/home/pras= adkr/systemtap/staptree.cxx:3007")? $this:struct deep_copy_visitor* const $= e:struct hist_op*=0D process("/home/prasadkr/systemtap/stap").function("visit_hist_op@/home/pras= adkr/systemtap/translate.cxx:4633")? $this:struct c_unparser* const=0D process("/home/prasadkr/systemtap/stap").function("visit_if_statement@/home= /prasadkr/systemtap/elaborate.cxx:2397")? $this:struct dead_stmtexpr_remove= r* const $s:struct if_statement*=0D process("/home/prasadkr/systemtap/stap").function("visit_if_statement@/home= /prasadkr/systemtap/elaborate.cxx:2674")? $this:struct void_statement_reduc= er* const $s:struct if_statement*=0D process("/home/prasadkr/systemtap/stap").function("visit_if_statement@/home= /prasadkr/systemtap/elaborate.cxx:3088")? $this:struct const_folder* const = $s:struct if_statement*=0D process("/home/prasadkr/systemtap/stap").function("visit_if_statement@/home= /prasadkr/systemtap/elaborate.cxx:4387")? $this:struct typeresolution_info*= const $e:struct if_statement*=0D process("/home/prasadkr/systemtap/stap").function("visit_if_statement@/home= /prasadkr/systemtap/staptree.cxx:1648")? $this:struct traversing_visitor* c= onst $s:struct if_statement*=0D process("/home/prasadkr/systemtap/stap").function("visit_if_statement@/home= /prasadkr/systemtap/staptree.cxx:2284")? $this:struct throwing_visitor* con= st $s:struct if_statement*=0D process("/home/prasadkr/systemtap/stap").function("visit_if_statement@/home= /prasadkr/systemtap/staptree.cxx:2518")? $this:struct update_visitor* const= $s:struct if_statement*=0D process("/home/prasadkr/systemtap/stap").function("visit_if_statement@/home= /prasadkr/systemtap/staptree.cxx:2814")? $this:struct deep_copy_visitor* co= nst $s:struct if_statement*=0D process("/home/prasadkr/systemtap/stap").function("visit_if_statement@/home= /prasadkr/systemtap/translate.cxx:2471")? $this:struct c_unparser* const $s= :struct if_statement*=0D process("/home/prasadkr/systemtap/stap").function("visit_indexable@/home/pr= asadkr/systemtap/staptree.cxx:1476")? $this:struct indexable* const $u:stru= ct visitor*=0D process("/home/prasadkr/systemtap/stap").function("visit_literal_number@/ho= me/prasadkr/systemtap/elaborate.cxx:3067")? $this:struct const_folder* cons= t $e:struct literal_number*=0D process("/home/prasadkr/systemtap/stap").function("visit_literal_number@/ho= me/prasadkr/systemtap/elaborate.cxx:3823")? $this:struct typeresolution_inf= o* const $e:struct literal_number*=0D process("/home/prasadkr/systemtap/stap").function("visit_literal_number@/ho= me/prasadkr/systemtap/staptree.cxx:1721")? $this:struct traversing_visitor*= const=0D process("/home/prasadkr/systemtap/stap").function("visit_literal_number@/ho= me/prasadkr/systemtap/staptree.cxx:2338")? $this:struct throwing_visitor* c= onst $e:struct literal_number*=0D process("/home/prasadkr/systemtap/stap").function("visit_literal_number@/ho= me/prasadkr/systemtap/staptree.cxx:2587")? $this:struct update_visitor* con= st $e:struct literal_number*=0D process("/home/prasadkr/systemtap/stap").function("visit_literal_number@/ho= me/prasadkr/systemtap/staptree.cxx:2868")? $this:struct deep_copy_visitor* = const $e:struct literal_number*=0D process("/home/prasadkr/systemtap/stap").function("visit_literal_number@/ho= me/prasadkr/systemtap/translate.cxx:3161")? $this:struct c_unparser* const = $e:struct literal_number*=0D process("/home/prasadkr/systemtap/stap").function("visit_literal_string@/ho= me/prasadkr/systemtap/elaborate.cxx:3081")? $this:struct const_folder* cons= t $e:struct literal_string*=0D process("/home/prasadkr/systemtap/stap").function("visit_literal_string@/ho= me/prasadkr/systemtap/elaborate.cxx:3834")? $this:struct typeresolution_inf= o* const $e:struct literal_string*=0D process("/home/prasadkr/systemtap/stap").function("visit_literal_string@/ho= me/prasadkr/systemtap/staptree.cxx:1716")? $this:struct traversing_visitor*= const=0D process("/home/prasadkr/systemtap/stap").function("visit_literal_string@/ho= me/prasadkr/systemtap/staptree.cxx:2332")? $this:struct throwing_visitor* c= onst $e:struct literal_string*=0D process("/home/prasadkr/systemtap/stap").function("visit_literal_string@/ho= me/prasadkr/systemtap/staptree.cxx:2581")? $this:struct update_visitor* con= st $e:struct literal_string*=0D process("/home/prasadkr/systemtap/stap").function("visit_literal_string@/ho= me/prasadkr/systemtap/staptree.cxx:2862")? $this:struct deep_copy_visitor* = const $e:struct literal_string*=0D process("/home/prasadkr/systemtap/stap").function("visit_literal_string@/ho= me/prasadkr/systemtap/translate.cxx:3141")? $this:struct c_unparser* const = $e:struct literal_string*=0D process("/home/prasadkr/systemtap/stap").function("visit_logical_and_expr@/= home/prasadkr/systemtap/elaborate.cxx:2730")? $this:struct void_statement_r= educer* const $e:struct logical_and_expr*=0D process("/home/prasadkr/systemtap/stap").function("visit_logical_and_expr@/= home/prasadkr/systemtap/elaborate.cxx:3336")? $this:struct const_folder* co= nst $e:struct logical_and_expr*=0D process("/home/prasadkr/systemtap/stap").function("visit_logical_and_expr@/= home/prasadkr/systemtap/elaborate.cxx:3852")? $this:struct typeresolution_i= nfo* const $e:struct logical_and_expr*=0D process("/home/prasadkr/systemtap/stap").function("visit_logical_and_expr@/= home/prasadkr/systemtap/staptree.cxx:1764")? $this:struct traversing_visito= r* const $e:struct logical_and_expr*=0D process("/home/prasadkr/systemtap/stap").function("visit_logical_and_expr@/= home/prasadkr/systemtap/staptree.cxx:2381")? $this:struct throwing_visitor*= const $e:struct logical_and_expr*=0D process("/home/prasadkr/systemtap/stap").function("visit_logical_and_expr@/= home/prasadkr/systemtap/staptree.cxx:2637")? $this:struct update_visitor* c= onst $e:struct logical_and_expr*=0D process("/home/prasadkr/systemtap/stap").function("visit_logical_and_expr@/= home/prasadkr/systemtap/staptree.cxx:2911")? $this:struct deep_copy_visitor= * const $e:struct logical_and_expr*=0D process("/home/prasadkr/systemtap/stap").function("visit_logical_and_expr@/= home/prasadkr/systemtap/translate.cxx:3331")? $this:struct c_unparser* cons= t $e:struct logical_and_expr*=0D process("/home/prasadkr/systemtap/stap").function("visit_logical_or_expr@/h= ome/prasadkr/systemtap/elaborate.cxx:2699")? $this:struct void_statement_re= ducer* const $e:struct logical_or_expr*=0D process("/home/prasadkr/systemtap/stap").function("visit_logical_or_expr@/h= ome/prasadkr/systemtap/elaborate.cxx:3289")? $this:struct const_folder* con= st $e:struct logical_or_expr*=0D process("/home/prasadkr/systemtap/stap").function("visit_logical_or_expr@/h= ome/prasadkr/systemtap/elaborate.cxx:3845")? $this:struct typeresolution_in= fo* const $e:struct logical_or_expr*=0D process("/home/prasadkr/systemtap/stap").function("visit_logical_or_expr@/h= ome/prasadkr/systemtap/staptree.cxx:1757")? $this:struct traversing_visitor= * const $e:struct logical_or_expr*=0D process("/home/prasadkr/systemtap/stap").function("visit_logical_or_expr@/h= ome/prasadkr/systemtap/staptree.cxx:2375")? $this:struct throwing_visitor* = const $e:struct logical_or_expr*=0D process("/home/prasadkr/systemtap/stap").function("visit_logical_or_expr@/h= ome/prasadkr/systemtap/staptree.cxx:2629")? $this:struct update_visitor* co= nst $e:struct logical_or_expr*=0D process("/home/prasadkr/systemtap/stap").function("visit_logical_or_expr@/h= ome/prasadkr/systemtap/staptree.cxx:2905")? $this:struct deep_copy_visitor*= const $e:struct logical_or_expr*=0D process("/home/prasadkr/systemtap/stap").function("visit_logical_or_expr@/h= ome/prasadkr/systemtap/translate.cxx:3315")? $this:struct c_unparser* const= $e:struct logical_or_expr*=0D process("/home/prasadkr/systemtap/stap").function("visit_next_statement@/ho= me/prasadkr/systemtap/elaborate.cxx:4549")? $this:struct typeresolution_inf= o* const=0D process("/home/prasadkr/systemtap/stap").function("visit_next_statement@/ho= me/prasadkr/systemtap/staptree.cxx:1701")? $this:struct traversing_visitor*= const=0D process("/home/prasadkr/systemtap/stap").function("visit_next_statement@/ho= me/prasadkr/systemtap/staptree.cxx:2314")? $this:struct throwing_visitor* c= onst $s:struct next_statement*=0D process("/home/prasadkr/systemtap/stap").function("visit_next_statement@/ho= me/prasadkr/systemtap/staptree.cxx:2563")? $this:struct update_visitor* con= st $s:struct next_statement*=0D process("/home/prasadkr/systemtap/stap").function("visit_next_statement@/ho= me/prasadkr/systemtap/staptree.cxx:2844")? $this:struct deep_copy_visitor* = const $s:struct next_statement*=0D process("/home/prasadkr/systemtap/stap").function("visit_next_statement@/ho= me/prasadkr/systemtap/translate.cxx:2978")? $this:struct c_unparser* const = $s:struct next_statement*=0D process("/home/prasadkr/systemtap/stap").function("visit_null_statement@/ho= me/prasadkr/systemtap/elaborate.cxx:2329")? $this:struct dead_stmtexpr_remo= ver* const $s:struct null_statement*=0D process("/home/prasadkr/systemtap/stap").function("visit_null_statement@/ho= me/prasadkr/systemtap/elaborate.cxx:4503")? $this:struct typeresolution_inf= o* const=0D process("/home/prasadkr/systemtap/stap").function("visit_null_statement@/ho= me/prasadkr/systemtap/staptree.cxx:1637")? $this:struct traversing_visitor*= const=0D process("/home/prasadkr/systemtap/stap").function("visit_null_statement@/ho= me/prasadkr/systemtap/staptree.cxx:2272")? $this:struct throwing_visitor* c= onst $s:struct null_statement*=0D process("/home/prasadkr/systemtap/stap").function("visit_null_statement@/ho= me/prasadkr/systemtap/staptree.cxx:2505")? $this:struct update_visitor* con= st $s:struct null_statement*=0D process("/home/prasadkr/systemtap/stap").function("visit_null_statement@/ho= me/prasadkr/systemtap/staptree.cxx:2802")? $this:struct deep_copy_visitor* = const $s:struct null_statement*=0D process("/home/prasadkr/systemtap/stap").function("visit_null_statement@/ho= me/prasadkr/systemtap/translate.cxx:2454")? $this:struct c_unparser* const= =0D process("/home/prasadkr/systemtap/stap").function("visit_post_crement@/home= /prasadkr/systemtap/elaborate.cxx:2657")? $this:struct void_statement_reduc= er* const $e:struct post_crement*=0D process("/home/prasadkr/systemtap/stap").function("visit_post_crement@/home= /prasadkr/systemtap/elaborate.cxx:4048")? $this:struct typeresolution_info*= const $e:struct post_crement*=0D process("/home/prasadkr/systemtap/stap").function("visit_post_crement@/home= /prasadkr/systemtap/staptree.cxx:1750")? $this:struct traversing_visitor* c= onst $e:struct post_crement*=0D process("/home/prasadkr/systemtap/stap").function("visit_post_crement@/home= /prasadkr/systemtap/staptree.cxx:2138")? $this:struct varuse_collecting_vis= itor* const $e:struct post_crement*=0D process("/home/prasadkr/systemtap/stap").function("visit_post_crement@/home= /prasadkr/systemtap/staptree.cxx:2368")? $this:struct throwing_visitor* con= st $e:struct post_crement*=0D process("/home/prasadkr/systemtap/stap").function("visit_post_crement@/home= /prasadkr/systemtap/staptree.cxx:2621")? $this:struct update_visitor* const= $e:struct post_crement*=0D process("/home/prasadkr/systemtap/stap").function("visit_post_crement@/home= /prasadkr/systemtap/staptree.cxx:2898")? $this:struct deep_copy_visitor* co= nst $e:struct post_crement*=0D process("/home/prasadkr/systemtap/stap").function("visit_post_crement@/home= /prasadkr/systemtap/tapsets.cxx:2093")? $this:struct var_expanding_visitor*= const $e:struct post_crement*=0D process("/home/prasadkr/systemtap/stap").function("visit_post_crement@/home= /prasadkr/systemtap/translate.cxx:3567")? $this:struct c_tmpcounter* const = $e:struct post_crement*=0D process("/home/prasadkr/systemtap/stap").function("visit_post_crement@/home= /prasadkr/systemtap/translate.cxx:3575")? $this:struct c_unparser* const $e= :struct post_crement*=0D process("/home/prasadkr/systemtap/stap").function("visit_pre_crement@/home/= prasadkr/systemtap/elaborate.cxx:2656")? $this:struct void_statement_reduce= r* const $e:struct pre_crement*=0D process("/home/prasadkr/systemtap/stap").function("visit_pre_crement@/home/= prasadkr/systemtap/elaborate.cxx:4041")? $this:struct typeresolution_info* = const $e:struct pre_crement*=0D process("/home/prasadkr/systemtap/stap").function("visit_pre_crement@/home/= prasadkr/systemtap/staptree.cxx:1744")? $this:struct traversing_visitor* co= nst $e:struct pre_crement*=0D process("/home/prasadkr/systemtap/stap").function("visit_pre_crement@/home/= prasadkr/systemtap/staptree.cxx:2129")? $this:struct varuse_collecting_visi= tor* const $e:struct pre_crement*=0D process("/home/prasadkr/systemtap/stap").function("visit_pre_crement@/home/= prasadkr/systemtap/staptree.cxx:2362")? $this:struct throwing_visitor* cons= t $e:struct pre_crement*=0D process("/home/prasadkr/systemtap/stap").function("visit_pre_crement@/home/= prasadkr/systemtap/staptree.cxx:2614")? $this:struct update_visitor* const = $e:struct pre_crement*=0D process("/home/prasadkr/systemtap/stap").function("visit_pre_crement@/home/= prasadkr/systemtap/staptree.cxx:2892")? $this:struct deep_copy_visitor* con= st $e:struct pre_crement*=0D process("/home/prasadkr/systemtap/stap").function("visit_pre_crement@/home/= prasadkr/systemtap/tapsets.cxx:2084")? $this:struct var_expanding_visitor* = const $e:struct pre_crement*=0D process("/home/prasadkr/systemtap/stap").function("visit_pre_crement@/home/= prasadkr/systemtap/translate.cxx:3547")? $this:struct c_tmpcounter* const $= e:struct pre_crement*=0D process("/home/prasadkr/systemtap/stap").function("visit_pre_crement@/home/= prasadkr/systemtap/translate.cxx:3555")? $this:struct c_unparser* const $e:= struct pre_crement*=0D process("/home/prasadkr/systemtap/stap").function("visit_print_format@/home= /prasadkr/systemtap/elaborate.cxx:2881")? $this:struct void_statement_reduc= er* const $e:struct print_format*=0D process("/home/prasadkr/systemtap/stap").function("visit_print_format@/home= /prasadkr/systemtap/elaborate.cxx:4615")? $this:struct typeresolution_info*= const $e:struct print_format*=0D process("/home/prasadkr/systemtap/stap").function("visit_print_format@/home= /prasadkr/systemtap/staptree.cxx:1859")? $this:struct traversing_visitor* c= onst $e:struct print_format*=0D process("/home/prasadkr/systemtap/stap").function("visit_print_format@/home= /prasadkr/systemtap/staptree.cxx:2023")? $this:struct varuse_collecting_vis= itor* const $e:struct print_format*=0D process("/home/prasadkr/systemtap/stap").function("visit_print_format@/home= /prasadkr/systemtap/staptree.cxx:2460")? $this:struct throwing_visitor* con= st $e:struct print_format*=0D process("/home/prasadkr/systemtap/stap").function("visit_print_format@/home= /prasadkr/systemtap/staptree.cxx:2737")? $this:struct update_visitor* const= $e:struct print_format*=0D process("/home/prasadkr/systemtap/stap").function("visit_print_format@/home= /prasadkr/systemtap/staptree.cxx:2995")? $this:struct deep_copy_visitor* co= nst $e:struct print_format*=0D process("/home/prasadkr/systemtap/stap").function("visit_print_format@/home= /prasadkr/systemtap/translate.cxx:4260")? $this:struct c_tmpcounter* const = $e:struct print_format*=0D process("/home/prasadkr/systemtap/stap").function("visit_print_format@/home= /prasadkr/systemtap/translate.cxx:4304")? $this:struct c_unparser* const $e= :struct print_format*=0D process("/home/prasadkr/systemtap/stap").function("visit_return_statement@/= home/prasadkr/systemtap/elaborate.cxx:2654")? $this:struct void_statement_r= educer* const $s:struct return_statement*=0D process("/home/prasadkr/systemtap/stap").function("visit_return_statement@/= home/prasadkr/systemtap/elaborate.cxx:4587")? $this:struct typeresolution_i= nfo* const $e:struct return_statement*=0D process("/home/prasadkr/systemtap/stap").function("visit_return_statement@/= home/prasadkr/systemtap/staptree.cxx:1689")? $this:struct traversing_visito= r* const $s:struct return_statement*=0D process("/home/prasadkr/systemtap/stap").function("visit_return_statement@/= home/prasadkr/systemtap/staptree.cxx:2302")? $this:struct throwing_visitor*= const $s:struct return_statement*=0D process("/home/prasadkr/systemtap/stap").function("visit_return_statement@/= home/prasadkr/systemtap/staptree.cxx:2549")? $this:struct update_visitor* c= onst $s:struct return_statement*=0D process("/home/prasadkr/systemtap/stap").function("visit_return_statement@/= home/prasadkr/systemtap/staptree.cxx:2832")? $this:struct deep_copy_visitor= * const $s:struct return_statement*=0D process("/home/prasadkr/systemtap/stap").function("visit_return_statement@/= home/prasadkr/systemtap/translate.cxx:2962")? $this:struct c_unparser* cons= t $s:struct return_statement*=0D process("/home/prasadkr/systemtap/stap").function("visit_stat_op@/home/pras= adkr/systemtap/elaborate.cxx:1008")? $this:struct stat_decl_collector* cons= t $e:struct stat_op*=0D process("/home/prasadkr/systemtap/stap").function("visit_stat_op@/home/pras= adkr/systemtap/elaborate.cxx:2650")? $this:struct void_statement_reducer* c= onst $e:struct stat_op*=0D process("/home/prasadkr/systemtap/stap").function("visit_stat_op@/home/pras= adkr/systemtap/elaborate.cxx:4743")? $this:struct typeresolution_info* cons= t $e:struct stat_op*=0D process("/home/prasadkr/systemtap/stap").function("visit_stat_op@/home/pras= adkr/systemtap/staptree.cxx:1868")? $this:struct traversing_visitor* const = $e:struct stat_op*=0D process("/home/prasadkr/systemtap/stap").function("visit_stat_op@/home/pras= adkr/systemtap/staptree.cxx:2466")? $this:struct throwing_visitor* const $e= :struct stat_op*=0D process("/home/prasadkr/systemtap/stap").function("visit_stat_op@/home/pras= adkr/systemtap/staptree.cxx:2746")? $this:struct update_visitor* const $e:s= truct stat_op*=0D process("/home/prasadkr/systemtap/stap").function("visit_stat_op@/home/pras= adkr/systemtap/staptree.cxx:3001")? $this:struct deep_copy_visitor* const $= e:struct stat_op*=0D process("/home/prasadkr/systemtap/stap").function("visit_stat_op@/home/pras= adkr/systemtap/translate.cxx:4551")? $this:struct c_tmpcounter* const $e:st= ruct stat_op*=0D process("/home/prasadkr/systemtap/stap").function("visit_stat_op@/home/pras= adkr/systemtap/translate.cxx:4563")? $this:struct c_unparser* const $e:stru= ct stat_op*=0D process("/home/prasadkr/systemtap/stap").function("visit_symbol@/home/prasa= dkr/systemtap/elaborate.cxx:1757")? $this:struct delete_statement_symresolu= tion_info* const $e:struct symbol*=0D process("/home/prasadkr/systemtap/stap").function("visit_symbol@/home/prasa= dkr/systemtap/elaborate.cxx:1779")? $this:struct symresolution_info* const = $e:struct symbol*=0D process("/home/prasadkr/systemtap/stap").function("visit_symbol@/home/prasa= dkr/systemtap/elaborate.cxx:4156")? $this:struct typeresolution_info* const= $e:struct symbol*=0D process("/home/prasadkr/systemtap/stap").function("visit_symbol@/home/prasa= dkr/systemtap/elaborate.cxx:4530")? $this:struct delete_statement_typeresol= ution_info* const $e:struct symbol*=0D process("/home/prasadkr/systemtap/stap").function("visit_symbol@/home/prasa= dkr/systemtap/elaborate.cxx:843")? $this:struct symbol_fetcher* const $e:st= ruct symbol*=0D process("/home/prasadkr/systemtap/stap").function("visit_symbol@/home/prasa= dkr/systemtap/staptree.cxx:1806")? $this:struct traversing_visitor* const=0D process("/home/prasadkr/systemtap/stap").function("visit_symbol@/home/prasa= dkr/systemtap/staptree.cxx:2059")? $this:struct varuse_collecting_visitor* = const $e:struct symbol*=0D process("/home/prasadkr/systemtap/stap").function("visit_symbol@/home/prasa= dkr/systemtap/staptree.cxx:2417")? $this:struct throwing_visitor* const $e:= struct symbol*=0D process("/home/prasadkr/systemtap/stap").function("visit_symbol@/home/prasa= dkr/systemtap/staptree.cxx:2685")? $this:struct update_visitor* const $e:st= ruct symbol*=0D process("/home/prasadkr/systemtap/stap").function("visit_symbol@/home/prasa= dkr/systemtap/staptree.cxx:2947")? $this:struct deep_copy_visitor* const $e= :struct symbol*=0D process("/home/prasadkr/systemtap/stap").function("visit_symbol@/home/prasa= dkr/systemtap/translate.cxx:3013")? $this:struct delete_statement_operand_v= isitor* const $e:struct symbol*=0D process("/home/prasadkr/systemtap/stap").function("visit_symbol@/home/prasa= dkr/systemtap/translate.cxx:3587")? $this:struct c_unparser* const $e:struc= t symbol*=0D process("/home/prasadkr/systemtap/stap").function("visit_symbol@/home/prasa= dkr/systemtap/translate.cxx:3654")? $this:struct c_tmpcounter_assignment* c= onst $e:struct symbol*=0D process("/home/prasadkr/systemtap/stap").function("visit_symbol@/home/prasa= dkr/systemtap/translate.cxx:3693")? $this:struct c_unparser_assignment* con= st $e:struct symbol*=0D process("/home/prasadkr/systemtap/stap").function("visit_target_symbol@/hom= e/prasadkr/systemtap/elaborate.cxx:2913")? $this:struct void_statement_redu= cer* const $e:struct target_symbol*=0D process("/home/prasadkr/systemtap/stap").function("visit_target_symbol@/hom= e/prasadkr/systemtap/elaborate.cxx:3524")? $this:struct const_folder* const= $e:struct target_symbol*=0D process("/home/prasadkr/systemtap/stap").function("visit_target_symbol@/hom= e/prasadkr/systemtap/elaborate.cxx:4164")? $this:struct typeresolution_info= * const $e:struct target_symbol*=0D process("/home/prasadkr/systemtap/stap").function("visit_target_symbol@/hom= e/prasadkr/systemtap/elaborate.cxx:848")? $this:struct symbol_fetcher* cons= t $e:struct target_symbol*=0D process("/home/prasadkr/systemtap/stap").function("visit_target_symbol@/hom= e/prasadkr/systemtap/staptree.cxx:1811")? $this:struct traversing_visitor* = const $e:struct target_symbol*=0D process("/home/prasadkr/systemtap/stap").function("visit_target_symbol@/hom= e/prasadkr/systemtap/staptree.cxx:1983")? $this:struct varuse_collecting_vi= sitor* const $e:struct target_symbol*=0D process("/home/prasadkr/systemtap/stap").function("visit_target_symbol@/hom= e/prasadkr/systemtap/staptree.cxx:2423")? $this:struct throwing_visitor* co= nst $e:struct target_symbol*=0D process("/home/prasadkr/systemtap/stap").function("visit_target_symbol@/hom= e/prasadkr/systemtap/staptree.cxx:2691")? $this:struct update_visitor* cons= t $e:struct target_symbol*=0D process("/home/prasadkr/systemtap/stap").function("visit_target_symbol@/hom= e/prasadkr/systemtap/staptree.cxx:2955")? $this:struct deep_copy_visitor* c= onst $e:struct target_symbol*=0D process("/home/prasadkr/systemtap/stap").function("visit_target_symbol@/hom= e/prasadkr/systemtap/tapset-mark.cxx:180")? $this:struct mark_var_expanding= _visitor* const $e:struct target_symbol*=0D process("/home/prasadkr/systemtap/stap").function("visit_target_symbol@/hom= e/prasadkr/systemtap/tapset-procfs.cxx:399")? $this:struct procfs_var_expan= ding_visitor* const $e:struct target_symbol*=0D process("/home/prasadkr/systemtap/stap").function("visit_target_symbol@/hom= e/prasadkr/systemtap/tapset-utrace.cxx:593")? $this:struct utrace_var_expan= ding_visitor* const $e:struct target_symbol*=0D process("/home/prasadkr/systemtap/stap").function("visit_target_symbol@/hom= e/prasadkr/systemtap/tapsets.cxx:3210")? $this:struct dwarf_var_expanding_v= isitor* const $e:struct target_symbol*=0D process("/home/prasadkr/systemtap/stap").function("visit_target_symbol@/hom= e/prasadkr/systemtap/tapsets.cxx:4824")? $this:struct sdt_uprobe_var_expand= ing_visitor* const $e:struct target_symbol*=0D process("/home/prasadkr/systemtap/stap").function("visit_target_symbol@/hom= e/prasadkr/systemtap/tapsets.cxx:5142")? $this:struct sdt_kprobe_var_expand= ing_visitor* const $e:struct target_symbol*=0D process("/home/prasadkr/systemtap/stap").function("visit_target_symbol@/hom= e/prasadkr/systemtap/tapsets.cxx:8043")? $this:struct tracepoint_var_expand= ing_visitor* const $e:struct target_symbol*=0D process("/home/prasadkr/systemtap/stap").function("visit_target_symbol@/hom= e/prasadkr/systemtap/translate.cxx:3716")? $this:struct c_unparser* const $= e:struct target_symbol*=0D process("/home/prasadkr/systemtap/stap").function("visit_target_symbol_arg@= /home/prasadkr/systemtap/tapset-mark.cxx:94")? $this:struct mark_var_expand= ing_visitor* const $e:struct target_symbol*=0D process("/home/prasadkr/systemtap/stap").function("visit_target_symbol_arg@= /home/prasadkr/systemtap/tapset-utrace.cxx:456")? $this:struct utrace_var_e= xpanding_visitor* const $e:struct target_symbol*=0D process("/home/prasadkr/systemtap/stap").function("visit_target_symbol_arg@= /home/prasadkr/systemtap/tapsets.cxx:7805")? $this:struct tracepoint_var_ex= panding_visitor* const $e:struct target_symbol*=0D process("/home/prasadkr/systemtap/stap").function("visit_target_symbol_cach= ed@/home/prasadkr/systemtap/tapset-utrace.cxx:247")? $this:struct utrace_va= r_expanding_visitor* const $e:struct target_symbol*=0D process("/home/prasadkr/systemtap/stap").function("visit_target_symbol_cont= ext@/home/prasadkr/systemtap/tapset-mark.cxx:118")? $this:struct mark_var_e= xpanding_visitor* const $e:struct target_symbol*=0D process("/home/prasadkr/systemtap/stap").function("visit_target_symbol_cont= ext@/home/prasadkr/systemtap/tapset-utrace.cxx:537")? $this:struct utrace_v= ar_expanding_visitor* const $e:struct target_symbol*=0D process("/home/prasadkr/systemtap/stap").function("visit_target_symbol_cont= ext@/home/prasadkr/systemtap/tapsets.cxx:3076")? $this:struct dwarf_var_exp= anding_visitor* const $e:struct target_symbol*=0D process("/home/prasadkr/systemtap/stap").function("visit_target_symbol_cont= ext@/home/prasadkr/systemtap/tapsets.cxx:7970")? $this:struct tracepoint_va= r_expanding_visitor* const $e:struct target_symbol*=0D process("/home/prasadkr/systemtap/stap").function("visit_target_symbol_save= d_return@/home/prasadkr/systemtap/tapsets.cxx:2714")? $this:struct dwarf_va= r_expanding_visitor* const $e:struct target_symbol*=0D process("/home/prasadkr/systemtap/stap").function("visit_ternary_expression= @/home/prasadkr/systemtap/elaborate.cxx:2756")? $this:struct void_statement= _reducer* const $e:struct ternary_expression*=0D process("/home/prasadkr/systemtap/stap").function("visit_ternary_expression= @/home/prasadkr/systemtap/elaborate.cxx:3489")? $this:struct const_folder* = const $e:struct ternary_expression*=0D process("/home/prasadkr/systemtap/stap").function("visit_ternary_expression= @/home/prasadkr/systemtap/elaborate.cxx:4072")? $this:struct typeresolution= _info* const $e:struct ternary_expression*=0D process("/home/prasadkr/systemtap/stap").function("visit_ternary_expression= @/home/prasadkr/systemtap/staptree.cxx:1791")? $this:struct traversing_visi= tor* const $e:struct ternary_expression*=0D process("/home/prasadkr/systemtap/stap").function("visit_ternary_expression= @/home/prasadkr/systemtap/staptree.cxx:2405")? $this:struct throwing_visito= r* const $e:struct ternary_expression*=0D process("/home/prasadkr/systemtap/stap").function("visit_ternary_expression= @/home/prasadkr/systemtap/staptree.cxx:2668")? $this:struct update_visitor*= const $e:struct ternary_expression*=0D process("/home/prasadkr/systemtap/stap").function("visit_ternary_expression= @/home/prasadkr/systemtap/staptree.cxx:2935")? $this:struct deep_copy_visit= or* const $e:struct ternary_expression*=0D process("/home/prasadkr/systemtap/stap").function("visit_ternary_expression= @/home/prasadkr/systemtap/translate.cxx:3488")? $this:struct c_unparser* co= nst $e:struct ternary_expression*=0D process("/home/prasadkr/systemtap/stap").function("visit_try_block@/home/pr= asadkr/systemtap/elaborate.cxx:2259")? $this:struct dead_assignment_remover= * const $s:struct try_block*=0D process("/home/prasadkr/systemtap/stap").function("visit_try_block@/home/pr= asadkr/systemtap/elaborate.cxx:2382")? $this:struct dead_stmtexpr_remover* = const $s:struct try_block*=0D process("/home/prasadkr/systemtap/stap").function("visit_try_block@/home/pr= asadkr/systemtap/elaborate.cxx:4353")? $this:struct typeresolution_info* co= nst $e:struct try_block*=0D process("/home/prasadkr/systemtap/stap").function("visit_try_block@/home/pr= asadkr/systemtap/staptree.cxx:1621")? $this:struct traversing_visitor* cons= t $s:struct try_block*=0D process("/home/prasadkr/systemtap/stap").function("visit_try_block@/home/pr= asadkr/systemtap/staptree.cxx:1899")? $this:struct varuse_collecting_visito= r* const $s:struct try_block*=0D process("/home/prasadkr/systemtap/stap").function("visit_try_block@/home/pr= asadkr/systemtap/staptree.cxx:2259")? $this:struct throwing_visitor* const = $s:struct try_block*=0D process("/home/prasadkr/systemtap/stap").function("visit_try_block@/home/pr= asadkr/systemtap/staptree.cxx:2490")? $this:struct update_visitor* const $s= :struct try_block*=0D process("/home/prasadkr/systemtap/stap").function("visit_try_block@/home/pr= asadkr/systemtap/staptree.cxx:2790")? $this:struct deep_copy_visitor* const= $s:struct try_block*=0D process("/home/prasadkr/systemtap/stap").function("visit_try_block@/home/pr= asadkr/systemtap/translate.cxx:2389")? $this:struct c_unparser* const $s:st= ruct try_block*=0D process("/home/prasadkr/systemtap/stap").function("visit_unary_expression@/= home/prasadkr/systemtap/elaborate.cxx:2814")? $this:struct void_statement_r= educer* const $e:struct unary_expression*=0D process("/home/prasadkr/systemtap/stap").function("visit_unary_expression@/= home/prasadkr/systemtap/elaborate.cxx:3261")? $this:struct const_folder* co= nst $e:struct unary_expression*=0D process("/home/prasadkr/systemtap/stap").function("visit_unary_expression@/= home/prasadkr/systemtap/elaborate.cxx:4055")? $this:struct typeresolution_i= nfo* const $e:struct unary_expression*=0D process("/home/prasadkr/systemtap/stap").function("visit_unary_expression@/= home/prasadkr/systemtap/staptree.cxx:1738")? $this:struct traversing_visito= r* const $e:struct unary_expression*=0D process("/home/prasadkr/systemtap/stap").function("visit_unary_expression@/= home/prasadkr/systemtap/staptree.cxx:2356")? $this:struct throwing_visitor*= const $e:struct unary_expression*=0D process("/home/prasadkr/systemtap/stap").function("visit_unary_expression@/= home/prasadkr/systemtap/staptree.cxx:2607")? $this:struct update_visitor* c= onst $e:struct unary_expression*=0D process("/home/prasadkr/systemtap/stap").function("visit_unary_expression@/= home/prasadkr/systemtap/staptree.cxx:2886")? $this:struct deep_copy_visitor= * const $e:struct unary_expression*=0D process("/home/prasadkr/systemtap/stap").function("visit_unary_expression@/= home/prasadkr/systemtap/translate.cxx:3287")? $this:struct c_unparser* cons= t $e:struct unary_expression*=0D process("/home/prasadkr/systemtap/stap").function("visitor@/home/prasadkr/s= ystemtap/staptree.h:730")?=0D process("/home/prasadkr/systemtap/stap").function("vma_tracker_enabled@/hom= e/prasadkr/systemtap/task_finder.cxx:105")? $s:struct systemtap_session&=0D process("/home/prasadkr/systemtap/stap").function("void_statement_reducer@/= home/prasadkr/systemtap/elaborate.cxx:2619")? $this:struct void_statement_r= educer* const=0D process("/home/prasadkr/systemtap/stap").function("widen@/usr/lib/gcc/ppc64= -redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/basic_ios.h:439")?=0D process("/home/prasadkr/systemtap/stap").function("widen@/usr/lib/gcc/ppc64= -redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/locale_facets.h:865"= )? $__c:char $this:class ctype const* const=0D process("/home/prasadkr/systemtap/stap").function("width@/usr/lib/gcc/ppc64= -redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/ios_base.h:657")?=0D process("/home/prasadkr/systemtap/stap").function("with_number@/home/prasad= kr/systemtap/elaborate.cxx:273")? $this:struct match_key* const=0D process("/home/prasadkr/systemtap/stap").function("with_string@/home/prasad= kr/systemtap/elaborate.cxx:281")? $this:struct match_key* const=0D process("/home/prasadkr/systemtap/stap").function("~StapDwfl@/home/prasadkr= /systemtap/setupdwfl.h:37")? $this:struct StapDwfl* const=0D process("/home/prasadkr/systemtap/stap").function("~_Deque_base@/usr/lib/gc= c/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_deque.h:4= 71")?=0D process("/home/prasadkr/systemtap/stap").function("~_Hashtable@/usr/lib/gcc= /ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/tr1_impl/hashtable:= 720")?=0D process("/home/prasadkr/systemtap/stap").function("~_List_base@/usr/lib/gcc= /ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_list.h:359= ")?=0D process("/home/prasadkr/systemtap/stap").function("~_Rb_tree@/usr/lib/gcc/p= pc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_tree.h:613")= ?=0D process("/home/prasadkr/systemtap/stap").function("~_Sp_counted_base@/usr/l= ib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/tr1_impl/boos= t_sp_counted_base.h:112")?=0D process("/home/prasadkr/systemtap/stap").function("~_Sp_counted_base_impl@/= usr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/tr1/shar= ed_ptr.h:64")?=0D process("/home/prasadkr/systemtap/stap").function("~_Vector_base@/usr/lib/g= cc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_vector.h= :131")?=0D process("/home/prasadkr/systemtap/stap").function("~__shared_count@/usr/lib= /gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/tr1/shared_ptr.= h:150")?=0D process("/home/prasadkr/systemtap/stap").function("~__shared_ptr@/usr/lib/g= cc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/tr1/shared_ptr.h:= 358")?=0D process("/home/prasadkr/systemtap/stap").function("~__unordered_map@/usr/li= b/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/tr1_impl/unord= ered_map:48")?=0D process("/home/prasadkr/systemtap/stap").function("~__unordered_multimap@/u= sr/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/tr1_impl/= unordered_map:103")?=0D process("/home/prasadkr/systemtap/stap").function("~aggvar@/home/prasadkr/s= ystemtap/translate.cxx:514")?=0D process("/home/prasadkr/systemtap/stap").function("~alias_derived_probe@/ho= me/prasadkr/systemtap/elaborate.cxx:613")?=0D process("/home/prasadkr/systemtap/stap").function("~alias_expansion_builder= @/home/prasadkr/systemtap/elaborate.h:289")?=0D process("/home/prasadkr/systemtap/stap").function("~array_in@/home/prasadkr= /systemtap/staptree.h:154")?=0D process("/home/prasadkr/systemtap/stap").function("~arrayindex@/home/prasad= kr/systemtap/staptree.h:306")?=0D process("/home/prasadkr/systemtap/stap").function("~arrayindex_downcaster@/= home/prasadkr/systemtap/translate.cxx:2584")?=0D process("/home/prasadkr/systemtap/stap").function("~assignment@/home/prasad= kr/systemtap/staptree.h:184")?=0D process("/home/prasadkr/systemtap/stap").function("~auto_free@/home/prasadk= r/systemtap/auto_free.h:19")?=0D process("/home/prasadkr/systemtap/stap").function("~auto_free_ref@/home/pra= sadkr/systemtap/auto_free.h:46")?=0D process("/home/prasadkr/systemtap/stap").function("~base_query@/home/prasad= kr/systemtap/tapsets.cxx:492")?=0D process("/home/prasadkr/systemtap/stap").function("~basic_filebuf@/usr/lib/= gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/fstream:214")?=0D process("/home/prasadkr/systemtap/stap").function("~basic_ifstream@/usr/lib= /gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/fstream:485")? = $this:struct basic_ifstream >* const=0D process("/home/prasadkr/systemtap/stap").function("~basic_ios@/usr/lib/gcc/= ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/basic_ios.h:272= ")?=0D process("/home/prasadkr/systemtap/stap").function("~basic_iostream@/usr/lib= /gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/istream:795")?= =0D process("/home/prasadkr/systemtap/stap").function("~basic_istream@/usr/lib/= gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/istream:101")?=0D process("/home/prasadkr/systemtap/stap").function("~basic_istringstream@/us= r/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/sstream:32= 1")?=0D process("/home/prasadkr/systemtap/stap").function("~basic_ofstream@/usr/lib= /gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/fstream:656")?= =0D process("/home/prasadkr/systemtap/stap").function("~basic_ostream@/usr/lib/= gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/ostream:91")?=0D process("/home/prasadkr/systemtap/stap").function("~basic_ostringstream@/us= r/lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/sstream:43= 1")?=0D process("/home/prasadkr/systemtap/stap").function("~basic_streambuf@/usr/li= b/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/streambuf:192"= )? $this:struct basic_streambuf >* const=0D process("/home/prasadkr/systemtap/stap").function("~basic_string@/usr/lib/g= cc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/basic_string= .h:502")?=0D process("/home/prasadkr/systemtap/stap").function("~basic_stringbuf@/usr/li= b/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/iosfwd:63")?=0D process("/home/prasadkr/systemtap/stap").function("~basic_stringstream@/usr= /lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/sstream:537= ")? $this:struct basic_stringstream, std::allo= cator >* const=0D process("/home/prasadkr/systemtap/stap").function("~be_builder@/home/prasad= kr/systemtap/tapset-been.cxx:76")?=0D process("/home/prasadkr/systemtap/stap").function("~be_derived_probe@/home/= prasadkr/systemtap/tapset-been.cxx:37")?=0D process("/home/prasadkr/systemtap/stap").function("~be_derived_probe_group@= /home/prasadkr/systemtap/tapset-been.cxx:68")?=0D process("/home/prasadkr/systemtap/stap").function("~binary_expression@/home= /prasadkr/systemtap/staptree.h:109")?=0D process("/home/prasadkr/systemtap/stap").function("~block@/home/prasadkr/sy= stemtap/staptree.h:542")?=0D process("/home/prasadkr/systemtap/stap").function("~break_statement@/home/p= rasadkr/systemtap/staptree.h:630")?=0D process("/home/prasadkr/systemtap/stap").function("~c_tmpcounter@/home/pras= adkr/systemtap/translate.cxx:184")?=0D process("/home/prasadkr/systemtap/stap").function("~c_tmpcounter_assignment= @/home/prasadkr/systemtap/translate.cxx:250")?=0D process("/home/prasadkr/systemtap/stap").function("~c_unparser@/home/prasad= kr/systemtap/translate.cxx:72")? $this:struct c_unparser* const=0D process("/home/prasadkr/systemtap/stap").function("~c_unparser_assignment@/= home/prasadkr/systemtap/translate.cxx:220")?=0D process("/home/prasadkr/systemtap/stap").function("~cache_ent_info@/home/pr= asadkr/systemtap/cache.cxx:33")?=0D process("/home/prasadkr/systemtap/stap").function("~cast_op@/home/prasadkr/= systemtap/staptree.h:281")?=0D process("/home/prasadkr/systemtap/stap").function("~comparison@/home/prasad= kr/systemtap/staptree.h:162")?=0D process("/home/prasadkr/systemtap/stap").function("~compile_server_info@/ho= me/prasadkr/systemtap/csclient.cxx:69")?=0D process("/home/prasadkr/systemtap/stap").function("~component@/home/prasadk= r/systemtap/staptree.h:246")?=0D process("/home/prasadkr/systemtap/stap").function("~component@/home/prasadk= r/systemtap/staptree.h:673")? $this:struct component* const=0D process("/home/prasadkr/systemtap/stap").function("~concatenation@/home/pra= sadkr/systemtap/staptree.h:168")?=0D process("/home/prasadkr/systemtap/stap").function("~const_folder@/home/pras= adkr/systemtap/elaborate.cxx:3018")?=0D process("/home/prasadkr/systemtap/stap").function("~continue_statement@/hom= e/prasadkr/systemtap/staptree.h:637")?=0D process("/home/prasadkr/systemtap/stap").function("~coverage_element@/home/= prasadkr/systemtap/coveragedb.h:55")?=0D process("/home/prasadkr/systemtap/stap").function("~dead_assignment_remover= @/home/prasadkr/systemtap/elaborate.cxx:2190")?=0D process("/home/prasadkr/systemtap/stap").function("~dead_stmtexpr_remover@/= home/prasadkr/systemtap/elaborate.cxx:2308")?=0D process("/home/prasadkr/systemtap/stap").function("~deep_copy_visitor@/home= /prasadkr/systemtap/staptree.h:1005")?=0D process("/home/prasadkr/systemtap/stap").function("~defined_op@/home/prasad= kr/systemtap/staptree.h:290")?=0D process("/home/prasadkr/systemtap/stap").function("~delete_statement@/home/= prasadkr/systemtap/staptree.h:623")?=0D process("/home/prasadkr/systemtap/stap").function("~delete_statement_operan= d_tmp_visitor@/home/prasadkr/systemtap/translate.cxx:2990")?=0D process("/home/prasadkr/systemtap/stap").function("~delete_statement_operan= d_visitor@/home/prasadkr/systemtap/translate.cxx:3002")?=0D process("/home/prasadkr/systemtap/stap").function("~delete_statement_symres= olution_info@/home/prasadkr/systemtap/elaborate.cxx:1741")?=0D process("/home/prasadkr/systemtap/stap").function("~delete_statement_typere= solution_info@/home/prasadkr/systemtap/elaborate.cxx:4518")?=0D process("/home/prasadkr/systemtap/stap").function("~deque@/usr/lib/gcc/ppc6= 4-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_deque.h:789")?= =0D process("/home/prasadkr/systemtap/stap").function("~derived_probe@/home/pra= sadkr/systemtap/elaborate.h:132")?=0D process("/home/prasadkr/systemtap/stap").function("~derived_probe_builder@/= home/prasadkr/systemtap/elaborate.h:227")?=0D process("/home/prasadkr/systemtap/stap").function("~derived_probe_group@/ho= me/prasadkr/systemtap/elaborate.h:191")?=0D process("/home/prasadkr/systemtap/stap").function("~direct@/home/prasadkr/s= ystemtap/remote.cxx:75")?=0D process("/home/prasadkr/systemtap/stap").function("~duplicate_function_remo= ver@/home/prasadkr/systemtap/elaborate.cxx:3562")?=0D process("/home/prasadkr/systemtap/stap").function("~dwarf_builder@/home/pra= sadkr/systemtap/tapsets.cxx:726")?=0D process("/home/prasadkr/systemtap/stap").function("~dwarf_cast_expanding_vi= sitor@/home/prasadkr/systemtap/tapsets.cxx:3437")?=0D process("/home/prasadkr/systemtap/stap").function("~dwarf_cast_query@/home/= prasadkr/systemtap/tapsets.cxx:3449")?=0D process("/home/prasadkr/systemtap/stap").function("~dwarf_derived_probe@/ho= me/prasadkr/systemtap/tapsets.cxx:372")?=0D process("/home/prasadkr/systemtap/stap").function("~dwarf_derived_probe_gro= up@/home/prasadkr/systemtap/tapsets.cxx:472")?=0D process("/home/prasadkr/systemtap/stap").function("~dwarf_pretty_print@/hom= e/prasadkr/systemtap/tapsets.cxx:2178")? $this:struct dwarf_pretty_print* c= onst=0D process("/home/prasadkr/systemtap/stap").function("~dwarf_query@/home/prasa= dkr/systemtap/tapsets.cxx:602")? $this:struct dwarf_query* const=0D process("/home/prasadkr/systemtap/stap").function("~dwarf_var_expanding_vis= itor@/home/prasadkr/systemtap/tapsets.cxx:1969")?=0D process("/home/prasadkr/systemtap/stap").function("~dwflpp@/home/prasadkr/s= ystemtap/dwflpp.cxx:98")? $this:struct dwflpp* const=0D process("/home/prasadkr/systemtap/stap").function("~embedded_expr@/home/pra= sadkr/systemtap/staptree.h:101")?=0D process("/home/prasadkr/systemtap/stap").function("~embeddedcode@/home/pras= adkr/systemtap/staptree.h:534")?=0D process("/home/prasadkr/systemtap/stap").function("~embeddedcode_info@/home= /prasadkr/systemtap/elaborate.cxx:1215")?=0D process("/home/prasadkr/systemtap/stap").function("~entry_op@/home/prasadkr= /systemtap/staptree.h:298")?=0D process("/home/prasadkr/systemtap/stap").function("~expr_statement@/home/pr= asadkr/systemtap/staptree.h:598")?=0D process("/home/prasadkr/systemtap/stap").function("~expression@/home/prasad= kr/systemtap/staptree.cxx:34")?=0D process("/home/prasadkr/systemtap/stap").function("~for_loop@/home/prasadkr= /systemtap/staptree.h:563")?=0D process("/home/prasadkr/systemtap/stap").function("~foreach_loop@/home/pras= adkr/systemtap/staptree.h:574")?=0D process("/home/prasadkr/systemtap/stap").function("~format_component@/home/= prasadkr/systemtap/staptree.h:376")?=0D process("/home/prasadkr/systemtap/stap").function("~func_info@/home/prasadk= r/systemtap/dwflpp.h:129")?=0D process("/home/prasadkr/systemtap/stap").function("~functioncall@/home/pras= adkr/systemtap/staptree.h:317")?=0D process("/home/prasadkr/systemtap/stap").function("~functioncall_traversing= _visitor@/home/prasadkr/systemtap/staptree.h:826")?=0D process("/home/prasadkr/systemtap/stap").function("~functiondecl@/home/pras= adkr/systemtap/staptree.h:504")?=0D process("/home/prasadkr/systemtap/stap").function("~generic_dpg@/home/prasa= dkr/systemtap/tapsets.h:37")?=0D process("/home/prasadkr/systemtap/stap").function("~hash@/home/prasadkr/sys= temtap/hash.cxx:41")? $this:struct hash* const=0D process("/home/prasadkr/systemtap/stap").function("~hist_op@/home/prasadkr/= systemtap/staptree.h:448")?=0D process("/home/prasadkr/systemtap/stap").function("~hrtimer_derived_probe@/= home/prasadkr/systemtap/tapset-timers.cxx:183")?=0D process("/home/prasadkr/systemtap/stap").function("~hrtimer_derived_probe_g= roup@/home/prasadkr/systemtap/tapset-timers.cxx:218")?=0D process("/home/prasadkr/systemtap/stap").function("~hwbkpt_builder@/home/pr= asadkr/systemtap/tapsets.cxx:7697")?=0D process("/home/prasadkr/systemtap/stap").function("~hwbkpt_derived_probe@/h= ome/prasadkr/systemtap/tapsets.cxx:7430")?=0D process("/home/prasadkr/systemtap/stap").function("~hwbkpt_derived_probe_gr= oup@/home/prasadkr/systemtap/tapsets.cxx:7449")?=0D process("/home/prasadkr/systemtap/stap").function("~if_statement@/home/pras= adkr/systemtap/staptree.h:606")?=0D process("/home/prasadkr/systemtap/stap").function("~indexable@/home/prasadk= r/systemtap/staptree.h:202")?=0D process("/home/prasadkr/systemtap/stap").function("~inline_instance_info@/h= ome/prasadkr/systemtap/dwflpp.h:147")?=0D process("/home/prasadkr/systemtap/stap").function("~itervar@/home/prasadkr/= systemtap/translate.cxx:754")? $this:class itervar* const=0D process("/home/prasadkr/systemtap/stap").function("~itrace_builder@/home/pr= asadkr/systemtap/tapset-itrace.cxx:95")?=0D process("/home/prasadkr/systemtap/stap").function("~itrace_derived_probe@/h= ome/prasadkr/systemtap/tapset-itrace.cxx:37")?=0D process("/home/prasadkr/systemtap/stap").function("~itrace_derived_probe_gr= oup@/home/prasadkr/systemtap/tapset-itrace.cxx:51")?=0D process("/home/prasadkr/systemtap/stap").function("~kprobe_builder@/home/pr= asadkr/systemtap/tapsets.cxx:7343")?=0D process("/home/prasadkr/systemtap/stap").function("~kprobe_derived_probe@/h= ome/prasadkr/systemtap/tapsets.cxx:6876")?=0D process("/home/prasadkr/systemtap/stap").function("~kprobe_derived_probe_gr= oup@/home/prasadkr/systemtap/tapsets.cxx:6906")?=0D process("/home/prasadkr/systemtap/stap").function("~lexer@/home/prasadkr/sy= stemtap/parse.cxx:38")? $this:class lexer* const=0D process("/home/prasadkr/systemtap/stap").function("~list@/usr/lib/gcc/ppc64= -redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_list.h:418")?=0D process("/home/prasadkr/systemtap/stap").function("~literal@/home/prasadkr/= systemtap/staptree.h:77")?=0D process("/home/prasadkr/systemtap/stap").function("~literal_number@/home/pr= asadkr/systemtap/staptree.h:91")?=0D process("/home/prasadkr/systemtap/stap").function("~literal_string@/home/pr= asadkr/systemtap/staptree.h:82")?=0D process("/home/prasadkr/systemtap/stap").function("~logical_and_expr@/home/= prasadkr/systemtap/staptree.h:147")?=0D process("/home/prasadkr/systemtap/stap").function("~logical_or_expr@/home/p= rasadkr/systemtap/staptree.h:141")?=0D process("/home/prasadkr/systemtap/stap").function("~map@/usr/lib/gcc/ppc64-= redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_map.h:87")?=0D process("/home/prasadkr/systemtap/stap").function("~mapvar@/home/prasadkr/s= ystemtap/translate.cxx:539")?=0D process("/home/prasadkr/systemtap/stap").function("~mark_builder@/home/pras= adkr/systemtap/tapset-mark.cxx:565")?=0D process("/home/prasadkr/systemtap/stap").function("~mark_derived_probe@/hom= e/prasadkr/systemtap/tapset-mark.cxx:48")?=0D process("/home/prasadkr/systemtap/stap").function("~mark_derived_probe_grou= p@/home/prasadkr/systemtap/tapset-mark.cxx:68")?=0D process("/home/prasadkr/systemtap/stap").function("~mark_var_expanding_visi= tor@/home/prasadkr/systemtap/tapset-mark.cxx:77")?=0D process("/home/prasadkr/systemtap/stap").function("~match_key@/home/prasadk= r/systemtap/elaborate.h:241")? $this:struct match_key* const=0D process("/home/prasadkr/systemtap/stap").function("~module_cache@/home/pras= adkr/systemtap/dwflpp.cxx:114")? $this:struct module_cache* const=0D process("/home/prasadkr/systemtap/stap").function("~module_info@/home/prasa= dkr/systemtap/tapsets.cxx:6498")? $this:struct module_info* const=0D process("/home/prasadkr/systemtap/stap").function("~multimap@/usr/lib/gcc/p= pc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_multimap.h:8= 7")?=0D process("/home/prasadkr/systemtap/stap").function("~mutated_var_collector@/= home/prasadkr/systemtap/elaborate.cxx:892")?=0D process("/home/prasadkr/systemtap/stap").function("~never_builder@/home/pra= sadkr/systemtap/tapset-been.cxx:199")?=0D process("/home/prasadkr/systemtap/stap").function("~never_derived_probe@/ho= me/prasadkr/systemtap/tapset-been.cxx:190")?=0D process("/home/prasadkr/systemtap/stap").function("~next_statement@/home/pr= asadkr/systemtap/staptree.h:644")?=0D process("/home/prasadkr/systemtap/stap").function("~no_var_mutation_during_= iteration_check@/home/prasadkr/systemtap/elaborate.cxx:927")?=0D process("/home/prasadkr/systemtap/stap").function("~null_statement@/home/pr= asadkr/systemtap/staptree.h:590")?=0D process("/home/prasadkr/systemtap/stap").function("~pair@/usr/lib/gcc/ppc64= -redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_pair.h:68")?=0D process("/home/prasadkr/systemtap/stap").function("~parse_error@/home/prasa= dkr/systemtap/parse.h:54")?=0D process("/home/prasadkr/systemtap/stap").function("~parser@/home/prasadkr/s= ystemtap/parse.cxx:203")? $this:class parser* const=0D process("/home/prasadkr/systemtap/stap").function("~perf_builder@/home/pras= adkr/systemtap/tapset-perfmon.cxx:175")?=0D process("/home/prasadkr/systemtap/stap").function("~perf_derived_probe@/hom= e/prasadkr/systemtap/tapset-perfmon.cxx:35")?=0D process("/home/prasadkr/systemtap/stap").function("~perf_derived_probe_grou= p@/home/prasadkr/systemtap/tapset-perfmon.cxx:45")?=0D process("/home/prasadkr/systemtap/stap").function("~post_crement@/home/pras= adkr/systemtap/staptree.h:134")?=0D process("/home/prasadkr/systemtap/stap").function("~pre_crement@/home/prasa= dkr/systemtap/staptree.h:128")?=0D process("/home/prasadkr/systemtap/stap").function("~print_format@/home/pras= adkr/systemtap/staptree.h:328")?=0D process("/home/prasadkr/systemtap/stap").function("~probe@/home/prasadkr/sy= stemtap/staptree.h:713")?=0D process("/home/prasadkr/systemtap/stap").function("~probe_alias@/home/prasa= dkr/systemtap/staptree.h:719")?=0D process("/home/prasadkr/systemtap/stap").function("~probe_point@/home/prasa= dkr/systemtap/staptree.h:671")? $this:struct probe_point* const=0D process("/home/prasadkr/systemtap/stap").function("~procfs_builder@/home/pr= asadkr/systemtap/tapset-procfs.cxx:508")?=0D process("/home/prasadkr/systemtap/stap").function("~procfs_derived_probe@/h= ome/prasadkr/systemtap/tapset-procfs.cxx:38")?=0D process("/home/prasadkr/systemtap/stap").function("~procfs_derived_probe_gr= oup@/home/prasadkr/systemtap/tapset-procfs.cxx:61")?=0D process("/home/prasadkr/systemtap/stap").function("~procfs_var_expanding_vi= sitor@/home/prasadkr/systemtap/tapset-procfs.cxx:80")?=0D process("/home/prasadkr/systemtap/stap").function("~profile_derived_probe@/= home/prasadkr/systemtap/tapset-timers.cxx:376")?=0D process("/home/prasadkr/systemtap/stap").function("~profile_derived_probe_g= roup@/home/prasadkr/systemtap/tapset-timers.cxx:383")?=0D process("/home/prasadkr/systemtap/stap").function("~recursion_info@/home/pr= asadkr/systemtap/translate.cxx:5696")?=0D process("/home/prasadkr/systemtap/stap").function("~remote@/home/prasadkr/s= ystemtap/remote.h:27")?=0D process("/home/prasadkr/systemtap/stap").function("~return_statement@/home/= prasadkr/systemtap/staptree.h:616")?=0D process("/home/prasadkr/systemtap/stap").function("~sdt_kprobe_var_expandin= g_visitor@/home/prasadkr/systemtap/tapsets.cxx:4629")?=0D process("/home/prasadkr/systemtap/stap").function("~sdt_query@/home/prasadk= r/systemtap/tapsets.cxx:5248")?=0D process("/home/prasadkr/systemtap/stap").function("~sdt_uprobe_var_expandin= g_visitor@/home/prasadkr/systemtap/tapsets.cxx:4652")?=0D process("/home/prasadkr/systemtap/stap").function("~semantic_error@/home/pr= asadkr/systemtap/staptree.h:35")?=0D process("/home/prasadkr/systemtap/stap").function("~set@/usr/lib/gcc/ppc64-= redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_set.h:88")?=0D process("/home/prasadkr/systemtap/stap").function("~shared_ptr@/usr/lib/gcc= /ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/tr1/shared_ptr.h:83= 4")? $this:class shared_ptr* const=0D process("/home/prasadkr/systemtap/stap").function("~ssh_remote@/home/prasad= kr/systemtap/remote.cxx:146")?=0D process("/home/prasadkr/systemtap/stap").function("~stack@/usr/lib/gcc/ppc6= 4-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_stack.h:93")?=0D process("/home/prasadkr/systemtap/stap").function("~stapfile@/home/prasadkr= /systemtap/staptree.h:655")? $this:struct stapfile* const=0D process("/home/prasadkr/systemtap/stap").function("~stat_decl_collector@/ho= me/prasadkr/systemtap/elaborate.cxx:1001")?=0D process("/home/prasadkr/systemtap/stap").function("~stat_op@/home/prasadkr/= systemtap/staptree.h:434")?=0D process("/home/prasadkr/systemtap/stap").function("~statement@/home/prasadk= r/systemtap/staptree.cxx:57")?=0D process("/home/prasadkr/systemtap/stap").function("~stmt_expr@/home/prasadk= r/systemtap/translate.cxx:468")? $this:struct stmt_expr* const=0D process("/home/prasadkr/systemtap/stap").function("~symbol@/home/prasadkr/s= ystemtap/staptree.h:222")?=0D process("/home/prasadkr/systemtap/stap").function("~symbol_fetcher@/home/pr= asadkr/systemtap/elaborate.cxx:837")?=0D process("/home/prasadkr/systemtap/stap").function("~symbol_table@/home/pras= adkr/systemtap/tapsets.cxx:6151")? $this:struct symbol_table* const=0D process("/home/prasadkr/systemtap/stap").function("~symboldecl@/home/prasad= kr/systemtap/staptree.cxx:87")? $this:struct symboldecl* const=0D process("/home/prasadkr/systemtap/stap").function("~symresolution_info@/hom= e/prasadkr/systemtap/elaborate.h:32")?=0D process("/home/prasadkr/systemtap/stap").function("~systemtap_session@/home= /prasadkr/systemtap/session.cxx:208")? $this:struct systemtap_session* cons= t=0D process("/home/prasadkr/systemtap/stap").function("~target_symbol@/home/pra= sadkr/systemtap/staptree.h:236")?=0D process("/home/prasadkr/systemtap/stap").function("~task_finder_derived_pro= be_group@/home/prasadkr/systemtap/task_finder.cxx:41")?=0D process("/home/prasadkr/systemtap/stap").function("~ternary_expression@/hom= e/prasadkr/systemtap/staptree.h:174")?=0D process("/home/prasadkr/systemtap/stap").function("~throwing_visitor@/home/= prasadkr/systemtap/staptree.h:876")?=0D process("/home/prasadkr/systemtap/stap").function("~timer_builder@/home/pra= sadkr/systemtap/tapset-timers.cxx:514")?=0D process("/home/prasadkr/systemtap/stap").function("~timer_derived_probe@/ho= me/prasadkr/systemtap/tapset-timers.cxx:34")?=0D process("/home/prasadkr/systemtap/stap").function("~timer_derived_probe_gro= up@/home/prasadkr/systemtap/tapset-timers.cxx:49")?=0D process("/home/prasadkr/systemtap/stap").function("~tmpvar@/home/prasadkr/s= ystemtap/translate.cxx:477")?=0D process("/home/prasadkr/systemtap/stap").function("~token@/home/prasadkr/sy= stemtap/parse.h:43")?=0D process("/home/prasadkr/systemtap/stap").function("~tracepoint_arg@/home/pr= asadkr/systemtap/tapsets.cxx:7756")?=0D process("/home/prasadkr/systemtap/stap").function("~tracepoint_builder@/hom= e/prasadkr/systemtap/tapsets.cxx:8512")?=0D process("/home/prasadkr/systemtap/stap").function("~tracepoint_derived_prob= e@/home/prasadkr/systemtap/tapsets.cxx:7764")?=0D process("/home/prasadkr/systemtap/stap").function("~tracepoint_derived_prob= e_group@/home/prasadkr/systemtap/tapsets.cxx:7782")?=0D process("/home/prasadkr/systemtap/stap").function("~tracepoint_query@/home/= prasadkr/systemtap/tapsets.cxx:8419")?=0D process("/home/prasadkr/systemtap/stap").function("~tracepoint_var_expandin= g_visitor@/home/prasadkr/systemtap/tapsets.cxx:7790")?=0D process("/home/prasadkr/systemtap/stap").function("~translator_output@/home= /prasadkr/systemtap/translate.cxx:862")? $this:class translator_output* con= st=0D process("/home/prasadkr/systemtap/stap").function("~traversing_visitor@/hom= e/prasadkr/systemtap/staptree.h:782")?=0D process("/home/prasadkr/systemtap/stap").function("~try_block@/home/prasadk= r/systemtap/staptree.h:552")?=0D process("/home/prasadkr/systemtap/stap").function("~typeresolution_info@/ho= me/prasadkr/systemtap/elaborate.h:54")?=0D process("/home/prasadkr/systemtap/stap").function("~unary_expression@/home/= prasadkr/systemtap/staptree.h:119")?=0D process("/home/prasadkr/systemtap/stap").function("~unordered_map@/usr/lib/= gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/tr1_impl/unorder= ed_map:190")?=0D process("/home/prasadkr/systemtap/stap").function("~unordered_multimap@/usr= /lib/gcc/ppc64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/tr1_impl/un= ordered_map:272")?=0D process("/home/prasadkr/systemtap/stap").function("~unparser@/home/prasadkr= /systemtap/translate.h:48")?=0D process("/home/prasadkr/systemtap/stap").function("~unwindsym_dump_context@= /home/prasadkr/systemtap/translate.cxx:4655")? $this:struct unwindsym_dump_= context* const=0D process("/home/prasadkr/systemtap/stap").function("~update_visitor@/home/pr= asadkr/systemtap/staptree.h:951")?=0D process("/home/prasadkr/systemtap/stap").function("~uprobe_builder@/home/pr= asadkr/systemtap/tapsets.cxx:6563")?=0D process("/home/prasadkr/systemtap/stap").function("~uprobe_derived_probe@/h= ome/prasadkr/systemtap/tapsets.cxx:436")?=0D process("/home/prasadkr/systemtap/stap").function("~uprobe_derived_probe_gr= oup@/home/prasadkr/systemtap/tapsets.cxx:6510")?=0D process("/home/prasadkr/systemtap/stap").function("~uri_decoder@/home/prasa= dkr/systemtap/remote.cxx:25")?=0D process("/home/prasadkr/systemtap/stap").function("~utrace_builder@/home/pr= asadkr/systemtap/tapset-utrace.cxx:624")?=0D process("/home/prasadkr/systemtap/stap").function("~utrace_derived_probe@/h= ome/prasadkr/systemtap/tapset-utrace.cxx:52")?=0D process("/home/prasadkr/systemtap/stap").function("~utrace_derived_probe_gr= oup@/home/prasadkr/systemtap/tapset-utrace.cxx:72")?=0D process("/home/prasadkr/systemtap/stap").function("~utrace_var_expanding_vi= sitor@/home/prasadkr/systemtap/tapset-utrace.cxx:94")?=0D process("/home/prasadkr/systemtap/stap").function("~var@/home/prasadkr/syst= emtap/translate.cxx:322")?=0D process("/home/prasadkr/systemtap/stap").function("~var_expanding_visitor@/= home/prasadkr/systemtap/tapsets.h:50")?=0D process("/home/prasadkr/systemtap/stap").function("~vardecl@/home/prasadkr/= systemtap/staptree.h:482")?=0D process("/home/prasadkr/systemtap/stap").function("~varuse_collecting_visit= or@/home/prasadkr/systemtap/staptree.h:839")?=0D process("/home/prasadkr/systemtap/stap").function("~vector@/usr/lib/gcc/ppc= 64-redhat-linux/4.4.4/../../../../include/c++/4.4.4/bits/stl_vector.h:312")= ?=0D process("/home/prasadkr/systemtap/stap").function("~visitor@/home/prasadkr/= systemtap/staptree.h:737")?=0D process("/home/prasadkr/systemtap/stap").function("~void_statement_reducer@= /home/prasadkr/systemtap/elaborate.cxx:2614")?=0D PASS: prcwildcard function spawn stap -L process("../sta*").mark("*")=0D process("/home/prasadkr/systemtap/stap").mark("cache__add__module")? $arg1:= long $arg2:long=0D process("/home/prasadkr/systemtap/stap").mark("cache__add__source")? $arg1:= long $arg2:long=0D process("/home/prasadkr/systemtap/stap").mark("cache__clean")? $arg1:long=0D process("/home/prasadkr/systemtap/stap").mark("cache__get")? $arg1:long $ar= g2:long=0D process("/home/prasadkr/systemtap/stap").mark("client__start")? $arg1:long= =0D process("/home/prasadkr/systemtap/stap").mark("pass0__end")? $arg1:long=0D process("/home/prasadkr/systemtap/stap").mark("pass0__start")? $arg1:long=0D process("/home/prasadkr/systemtap/stap").mark("pass1__end")? $arg1:long=0D process("/home/prasadkr/systemtap/stap").mark("pass1a__start")? $arg1:long= =0D process("/home/prasadkr/systemtap/stap").mark("pass1b__start")? $arg1:long= =0D process("/home/prasadkr/systemtap/stap").mark("pass2__end")? $arg1:long=0D process("/home/prasadkr/systemtap/stap").mark("pass2__start")? $arg1:long=0D process("/home/prasadkr/systemtap/stap").mark("pass3__end")? $arg1:long=0D process("/home/prasadkr/systemtap/stap").mark("pass3__start")? $arg1:long=0D process("/home/prasadkr/systemtap/stap").mark("pass4__end")? $arg1:long=0D process("/home/prasadkr/systemtap/stap").mark("pass4__start")? $arg1:long=0D process("/home/prasadkr/systemtap/stap").mark("pass5__end")? $arg1:long=0D process("/home/prasadkr/systemtap/stap").mark("pass5__start")? $arg1:long=0D process("/home/prasadkr/systemtap/stap").mark("pass6__end")? $arg1:long=0D process("/home/prasadkr/systemtap/stap").mark("pass6__start")? $arg1:long=0D process("/home/prasadkr/systemtap/stap").mark("stap_system__complete")? $ar= g1:long=0D process("/home/prasadkr/systemtap/stap").mark("stap_system__spawn")? $arg1:= long $arg2:long=0D process("/home/prasadkr/systemtap/stap").mark("stap_system__start")? $arg1:= long=0D PASS: prcwildcard mark testcase /home/prasadkr/systemtap/testsuite/systemtap.base/prcwildcard.exp = completed in 3 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/prepost_optim.exp= ... spawn stap /home/prasadkr/systemtap/testsuite/systemtap.base/prepost_optim.= stp=0D 5 7 7 5=0D PASS: prepost_optim (1) testcase /home/prasadkr/systemtap/testsuite/systemtap.base/prepost_optim.ex= p completed in 3 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/preprocessor.exp = ... spawn stap -p2 -e probe never {} %( kernel_v =3D=3D "2.6.32" %? %: ERROR %) %( kernel_v =3D=3D "2?[0-9]*" %? %: ERROR %) %( kernel_v =3D=3D "?noSuchKernel*" %? ERROR %: %) %( kernel_v !=3D "2.6.32" %? ERROR %: %) %( kernel_v !=3D "2?[0-9]*" %? ERROR %: %) %( kernel_v !=3D "?noSuchKernel*" %? %: ERROR %) %( kernel_v < "9.9999" %? %: ERROR %) %( kernel_v <=3D "9.9999" %? %: ERROR %) %( kernel_v > "9.9999" %? ERROR %: %) %( kernel_v >=3D "9.9999" %? ERROR %: %) %( kernel_vr =3D=3D "2.6.32-71.el6.ppc64" %? %: ERROR %) %( kernel_vr =3D=3D "2?[0-9]*" %? %: ERROR %) %( kernel_vr =3D=3D "?noSuchKernel*" %? ERROR %: %) %( kernel_vr !=3D "2.6.32-71.el6.ppc64" %? ERROR %: %) %( kernel_vr !=3D "2?[0-9]*" %? ERROR %: %) %( kernel_vr !=3D "?noSuchKernel*" %? %: ERROR %) %( kernel_vr < "9.9999" %? %: ERROR %) %( kernel_vr <=3D "9.9999" %? %: ERROR %) %( kernel_vr > "9.9999" %? ERROR %: %) %( kernel_vr >=3D "9.9999" %? ERROR %: %) %( arch =3D=3D "powerpc" %? %: ERROR %) %( arch =3D=3D "?owerp?" %? %: ERROR %) %( arch =3D=3D "?noSuchArch?" %? ERROR %: %) %( arch !=3D "powerpc" %? ERROR %: %) %( arch !=3D "?owerp?" %? ERROR %: %) %( arch !=3D "?noSuchArch?" %? %: ERROR %) =0D WARNING: side-effect-free probe 'probe_2089': keyword at :1:1=0D source: probe never {}=0D ^=0D # probes=0D never /* <- never */=0D PASS: preprocessor basic ops testcase /home/prasadkr/systemtap/testsuite/systemtap.base/preprocessor.exp= completed in 0 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/print.exp ... executing: stap -v /home/prasadkr/systemtap/testsuite/systemtap.base/print.= stp spawn stap -v /home/prasadkr/systemtap/testsuite/systemtap.base/print.stp=0D Pass 1: parsed user script and 75 library script(s) using 38528virt/30720re= s/7872shr kb, in 240usr/0sys/246real ms.=0D Pass 2: analyzed script: 2 probe(s), 0 function(s), 0 embed(s), 3 global(s)= using 39104virt/31424res/8064shr kb, in 10usr/0sys/5real ms.=0D Pass 3: translated to C into "/tmp/stap7pueSU/stap_3ecdbb3cd1ea7e578bed1705= 18a6d9e3_1246.c" using 39104virt/31744res/8384shr kb, in 0usr/0sys/1real ms= .=0D Pass 4: compiled C into "stap_3ecdbb3cd1ea7e578bed170518a6d9e3_1246.ko" in = 1640usr/200sys/1867real ms.=0D Pass 5: starting run.=0D systemtap starting probe=0D PASS: systemtap.base/print.stp startup PASS: systemtap.base/print.stp load generation systemtap ending probe=0D systemtap test success=0D systemtap test success=0D systemtap test success=0D systemtap test success=0D systemtap test success=0D systemtap test success=0D systemtap test success=0D systemtap test success=0D systemtap test success=0D Pass 5: run completed in 0usr/20sys/329real ms.=0D FAIL: systemtap.base/print.stp shutdown (eof) testcase /home/prasadkr/systemtap/testsuite/systemtap.base/print.exp comple= ted in 3 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/probe_list.exp ... spawn stap -l begin { if (a) next }#=0D begin=0D PASS: probe list is correct testcase /home/prasadkr/systemtap/testsuite/systemtap.base/probe_list.exp c= ompleted in 0 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/probefunc.exp ... executing: stap -v -g -e { global funcname=20 probe kernel.statement(0xc000000000084620).absolute { funcname =3D probefunc() } probe begin { log("systemtap starting probe") } probe end { log("systemtap ending probe") printf("%s\n", funcname) } } spawn stap -v -g -e=20 global funcname=20 probe kernel.statement(0xc000000000084620).absolute { funcname =3D probefunc() } probe begin { log("systemtap starting probe") } probe end { log("systemtap ending probe") printf("%s\n", funcname) } =0D Pass 1: parsed user script and 75 library script(s) using 38528virt/30656re= s/7872shr kb, in 240usr/0sys/245real ms.=0D Pass 2: analyzed script: 3 probe(s), 2 function(s), 1 embed(s), 1 global(s)= using 142784virt/32128res/8512shr kb, in 10usr/0sys/6real ms.=0D Pass 3: translated to C into "/tmp/stapOfEawQ/stap_aa6c2ea35c962ec1ad2abb7d= 53747cec_1899.c" using 146880virt/41024res/13312shr kb, in 1100usr/10sys/11= 16real ms.=0D Pass 4: compiled C into "stap_aa6c2ea35c962ec1ad2abb7d53747cec_1899.ko" in = 3600usr/240sys/3883real ms.=0D Pass 5: starting run.=0D systemtap starting probe=0D PASS: probefunc:.statement.(0xaddr).absolute startup PASS: probefunc:.statement.(0xaddr).absolute load generation systemtap ending probe=0D scheduler_tick=0D Pass 5: run completed in 10usr/60sys/1394real ms.=0D PASS: probefunc:.statement.(0xaddr).absolute shutdown and output metric: probefunc:.statement.(0xaddr).absolute 240 0 245 10 0 6 1100 10 11= 16 3600 240 3883 10 60 1394 executing: stap -v -e { global funcname=20 probe kernel.function("scheduler_tick") { funcname =3D probefunc() } probe begin { log("systemtap starting probe") } probe end { log("systemtap ending probe") printf("%s\n", funcname) } } spawn stap -v -e=20 global funcname=20 probe kernel.function("scheduler_tick") { funcname =3D probefunc() } probe begin { log("systemtap starting probe") } probe end { log("systemtap ending probe") printf("%s\n", funcname) } =0D Pass 1: parsed user script and 75 library script(s) using 38528virt/30592re= s/7872shr kb, in 240usr/0sys/245real ms.=0D Pass 2: analyzed script: 3 probe(s), 2 function(s), 1 embed(s), 1 global(s)= using 162816virt/113728res/69888shr kb, in 450usr/10sys/457real ms.=0D Pass 3: translated to C into "/tmp/stapfJZv6x/stap_67d867d6deea648fd57055b0= 8d23e30c_1888.c" using 162816virt/115264res/71424shr kb, in 1110usr/10sys/1= 118real ms.=0D Pass 4: compiled C into "stap_67d867d6deea648fd57055b08d23e30c_1888.ko" in = 3710usr/230sys/3950real ms.=0D Pass 5: starting run.=0D systemtap starting probe=0D PASS: probefunc:kernel.function("scheduler_tick") startup PASS: probefunc:kernel.function("scheduler_tick") load generation systemtap ending probe=0D scheduler_tick=0D Pass 5: run completed in 0usr/70sys/1416real ms.=0D PASS: probefunc:kernel.function("scheduler_tick") shutdown and output metric: probefunc:kernel.function("scheduler_tick") 240 0 245 450 10 457 1= 110 10 1118 3710 230 3950 0 70 1416 executing: stap -v -e { global funcname=20 probe kernel.function("context_switch").inline { funcname =3D probefunc() } probe begin { log("systemtap starting probe") } probe end { log("systemtap ending probe") printf("%s\n", funcname) } } spawn stap -v -e=20 global funcname=20 probe kernel.function("context_switch").inline { funcname =3D probefunc() } probe begin { log("systemtap starting probe") } probe end { log("systemtap ending probe") printf("%s\n", funcname) } =0D Pass 1: parsed user script and 75 library script(s) using 38528virt/30592re= s/7872shr kb, in 240usr/0sys/245real ms.=0D Pass 2: analyzed script: 3 probe(s), 2 function(s), 1 embed(s), 1 global(s)= using 162880virt/113856res/69888shr kb, in 460usr/10sys/461real ms.=0D Pass 3: translated to C into "/tmp/stapJ7DOlY/stap_eec50f5fd1448294c37996ac= e7037698_1903.c" using 162880virt/115392res/71424shr kb, in 1090usr/10sys/1= 106real ms.=0D Pass 4: compiled C into "stap_eec50f5fd1448294c37996ace7037698_1903.ko" in = 3750usr/240sys/3995real ms.=0D Pass 5: starting run.=0D systemtap starting probe=0D PASS: probefunc:kernel.function("context_switch").inline startup PASS: probefunc:kernel.function("context_switch").inline load generation systemtap ending probe=0D context_switch=0D Pass 5: run completed in 10usr/60sys/1406real ms.=0D PASS: probefunc:kernel.function("context_switch").inline shutdown and output metric: probefunc:kernel.function("context_switch").inline 240 0 245 460 1= 0 461 1090 10 1106 3750 240 3995 10 60 1406 testcase /home/prasadkr/systemtap/testsuite/systemtap.base/probefunc.exp co= mpleted in 21 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/procfs.exp ... executing: stap -v -e { global saved_value probe procfs("command").read { $value =3D saved_value } probe procfs("command").write { saved_value =3D $value } probe begin { saved_value =3D "100\n" printf("systemtap starting probe\n") } probe end { printf("systemtap ending probe\n") printf("final value =3D %s", saved_value) } } -m PROCFS spawn stap -v -e=20 global saved_value probe procfs("command").read { $value =3D saved_value } probe procfs("command").write { saved_value =3D $value } probe begin { saved_value =3D "100\n" printf("systemtap starting probe\n") } probe end { printf("systemtap ending probe\n") printf("final value =3D %s", saved_value) } -m PROCFS=0D Pass 1: parsed user script and 75 library script(s) using 38528virt/30720re= s/7872shr kb, in 250usr/0sys/266real ms.=0D Pass 2: analyzed script: 4 probe(s), 2 function(s), 1 embed(s), 1 global(s)= using 39104virt/31424res/8064shr kb, in 10usr/0sys/6real ms.=0D Pass 3: translated to C into "/tmp/stapC1mxDn/PROCFS.c" using 39104virt/316= 16res/8256shr kb, in 0usr/0sys/1real ms.=0D Pass 4: compiled C into "PROCFS.ko" in 1830usr/200sys/2043real ms.=0D Pass 5: starting run.=0D systemtap starting probe=0D PASS: PROCFS startup PASS: PROCFS read 100 PASS: PROCFS received correct initial value PASS: PROCFS wrote 200 PASS: PROCFS read 200 PASS: PROCFS received correct value PASS: PROCFS read 200 PASS: PROCFS received correct value PASS: PROCFS wrote hello PASS: PROCFS read hello PASS: PROCFS received correct value PASS: PROCFS wrote goodbye PASS: PROCFS read goodbye PASS: PROCFS received correct value PASS: PROCFS load generation systemtap ending probe=0D final value =3D goodbye=0D Pass 5: run completed in 0usr/20sys/332real ms.=0D PASS: PROCFS shutdown and output metric: PROCFS 250 0 266 10 0 6 0 0 1 1830 200 2043 0 20 332 testcase /home/prasadkr/systemtap/testsuite/systemtap.base/procfs.exp compl= eted in 3 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/procfs_maxsize.ex= p ... executing: stap -v -DMAXSTRINGLEN=3D32 -e { global values[10] global idx =3D 0 probe procfs.read { $value =3D "abcdefghijklmno" $value .=3D "ABCDEFGHIJKLMNO" $value .=3D "pqrstuvwxyz1234" } probe procfs.write { values[idx] =3D $value idx++ } probe begin { printf("systemtap starting probe\n") } probe end { printf("systemtap ending probe\n") for (i =3D 0; i < idx; i++) { printf("value%d=3D%s\n", i, values[i]) } } } -m PROCFS_BUFFER1 spawn stap -v -DMAXSTRINGLEN=3D32 -e=20 global values[10] global idx =3D 0 probe procfs.read { $value =3D "abcdefghijklmno" $value .=3D "ABCDEFGHIJKLMNO" $value .=3D "pqrstuvwxyz1234" } probe procfs.write { values[idx] =3D $value idx++ } probe begin { printf("systemtap starting probe\n") } probe end { printf("systemtap ending probe\n") for (i =3D 0; i < idx; i++) { printf("value%d=3D%s\n", i, values[i]) } } -m PROCFS_BUFFER1=0D Pass 1: parsed user script and 75 library script(s) using 38592virt/30720re= s/7872shr kb, in 270usr/0sys/263real ms.=0D Pass 2: analyzed script: 4 probe(s), 3 function(s), 1 embed(s), 2 global(s)= using 39168virt/31424res/8064shr kb, in 0usr/0sys/6real ms.=0D Pass 3: translated to C into "/tmp/stapy8eeE2/PROCFS_BUFFER1.c" using 39168= virt/31616res/8256shr kb, in 0usr/0sys/13real ms.=0D Pass 4: compiled C into "PROCFS_BUFFER1.ko" in 2030usr/200sys/2234real ms.= =0D Pass 5: starting run.=0D systemtap starting probe=0D PASS: PROCFS_BUFFER1 startup PASS: PROCFS_BUFFER1 read abcdefghijklmnoABCDEFGHIJKLMNOp PASS: PROCFS_BUFFER1 received correct initial value PASS: PROCFS_BUFFER1 wrote abcdefghijklmnoABCDEFGHIJKLMNOpqrstuvwxyz1234567= 89 PASS: PROCFS_BUFFER1 load generation systemtap ending probe=0D value0=3DabcdefghijklmnoABCDEFGHIJKLMNOp=0D value1=3Dqrstuvwxyz123456789=0D Pass 5: run completed in 0usr/20sys/355real ms.=0D PASS: PROCFS_BUFFER1 shutdown and output metric: PROCFS_BUFFER1 270 0 263 0 0 6 0 0 13 2030 200 2234 0 20 355 executing: stap -v -DMAXSTRINGLEN=3D32 -DSTP_PROCFS_BUFSIZE=3D16 -e { global values[10] global idx =3D 0 probe procfs.read { $value =3D "abcdefghijklmno" $value .=3D "ABCDEFGHIJKLMNO" $value .=3D "pqrstuvwxyz1234" } probe procfs.write { values[idx] =3D $value idx++ } probe begin { printf("systemtap starting probe\n") } probe end { printf("systemtap ending probe\n") for (i =3D 0; i < idx; i++) { printf("value%d=3D%s\n", i, values[i]) } } } -m PROCFS_BUFFER2 spawn stap -v -DMAXSTRINGLEN=3D32 -DSTP_PROCFS_BUFSIZE=3D16 -e=20 global values[10] global idx =3D 0 probe procfs.read { $value =3D "abcdefghijklmno" $value .=3D "ABCDEFGHIJKLMNO" $value .=3D "pqrstuvwxyz1234" } probe procfs.write { values[idx] =3D $value idx++ } probe begin { printf("systemtap starting probe\n") } probe end { printf("systemtap ending probe\n") for (i =3D 0; i < idx; i++) { printf("value%d=3D%s\n", i, values[i]) } } -m PROCFS_BUFFER2=0D Pass 1: parsed user script and 75 library script(s) using 38528virt/30720re= s/7872shr kb, in 270usr/0sys/263real ms.=0D Pass 2: analyzed script: 4 probe(s), 3 function(s), 1 embed(s), 2 global(s)= using 39104virt/31424res/8064shr kb, in 0usr/0sys/6real ms.=0D Pass 3: translated to C into "/tmp/stapsG2ROZ/PROCFS_BUFFER2.c" using 39104= virt/31616res/8256shr kb, in 0usr/0sys/1real ms.=0D Pass 4: compiled C into "PROCFS_BUFFER2.ko" in 1960usr/200sys/2165real ms.= =0D Pass 5: starting run.=0D systemtap starting probe=0D PASS: PROCFS_BUFFER2 startup PASS: PROCFS_BUFFER2 read abcdefghijklmno PASS: PROCFS_BUFFER2 received correct initial value PASS: PROCFS_BUFFER2 wrote abcdefghijklmnoABCDEFGHIJKLMNOpqrstuvwxyz1234567= 89 PASS: PROCFS_BUFFER2 load generation systemtap ending probe=0D value0=3Dabcdefghijklmno=0D value1=3DABCDEFGHIJKLMNO=0D value2=3Dpqrstuvwxyz1234=0D value3=3D56789=0D Pass 5: run completed in 0usr/20sys/336real ms.=0D PASS: PROCFS_BUFFER2 shutdown and output metric: PROCFS_BUFFER2 270 0 263 0 0 6 0 0 1 1960 200 2165 0 20 336 executing: stap -v -DMAXSTRINGLEN=3D16 -DSTP_PROCFS_BUFSIZE=3D32 -e { global values[10] global idx =3D 0 probe procfs.read { $value =3D "abcdefghijklmno" $value .=3D "ABCDEFGHIJKLMNO" $value .=3D "pqrstuvwxyz1234" } probe procfs.write { values[idx] =3D $value idx++ } probe begin { printf("systemtap starting probe\n") } probe end { printf("systemtap ending probe\n") for (i =3D 0; i < idx; i++) { printf("value%d=3D%s\n", i, values[i]) } } } -m PROCFS_BUFFER3 spawn stap -v -DMAXSTRINGLEN=3D16 -DSTP_PROCFS_BUFSIZE=3D32 -e=20 global values[10] global idx =3D 0 probe procfs.read { $value =3D "abcdefghijklmno" $value .=3D "ABCDEFGHIJKLMNO" $value .=3D "pqrstuvwxyz1234" } probe procfs.write { values[idx] =3D $value idx++ } probe begin { printf("systemtap starting probe\n") } probe end { printf("systemtap ending probe\n") for (i =3D 0; i < idx; i++) { printf("value%d=3D%s\n", i, values[i]) } } -m PROCFS_BUFFER3=0D Pass 1: parsed user script and 75 library script(s) using 38528virt/30720re= s/7872shr kb, in 270usr/0sys/263real ms.=0D Pass 2: analyzed script: 4 probe(s), 3 function(s), 1 embed(s), 2 global(s)= using 39104virt/31424res/8064shr kb, in 0usr/0sys/6real ms.=0D Pass 3: translated to C into "/tmp/stapwvNOXP/PROCFS_BUFFER3.c" using 39104= virt/31616res/8256shr kb, in 0usr/0sys/1real ms.=0D Pass 4: compiled C into "PROCFS_BUFFER3.ko" in 1960usr/200sys/2165real ms.= =0D Pass 5: starting run.=0D systemtap starting probe=0D PASS: PROCFS_BUFFER3 startup PASS: PROCFS_BUFFER3 read abcdefghijklmnoABCDEFGHIJKLMNOp PASS: PROCFS_BUFFER3 received correct initial value PASS: PROCFS_BUFFER3 wrote abcdefghijklmnoABCDEFGHIJKLMNOpqrstuvwxyz1234567= 89 PASS: PROCFS_BUFFER3 load generation systemtap ending probe=0D value0=3Dabcdefghijklmno=0D value1=3DABCDEFGHIJKLMNO=0D value2=3Dpqrstuvwxyz1234=0D value3=3D56789=0D Pass 5: run completed in 0usr/20sys/335real ms.=0D PASS: PROCFS_BUFFER3 shutdown and output metric: PROCFS_BUFFER3 270 0 263 0 0 6 0 0 1 1960 200 2165 0 20 335 executing: stap -v -DMAXSTRINGLEN=3D16 -e { global values[10] global idx =3D 0 probe procfs.read.maxsize(32) { $value =3D "abcdefghijklmno" $value .=3D "ABCDEFGHIJKLMNO" $value .=3D "pqrstuvwxyz1234" } probe procfs.write { values[idx] =3D $value idx++ } probe begin { printf("systemtap starting probe\n") } probe end { printf("systemtap ending probe\n") for (i =3D 0; i < idx; i++) { printf("value%d=3D%s\n", i, values[i]) } } } -m PROCFS_BUFFER4 spawn stap -v -DMAXSTRINGLEN=3D16 -e=20 global values[10] global idx =3D 0 probe procfs.read.maxsize(32) { $value =3D "abcdefghijklmno" $value .=3D "ABCDEFGHIJKLMNO" $value .=3D "pqrstuvwxyz1234" } probe procfs.write { values[idx] =3D $value idx++ } probe begin { printf("systemtap starting probe\n") } probe end { printf("systemtap ending probe\n") for (i =3D 0; i < idx; i++) { printf("value%d=3D%s\n", i, values[i]) } } -m PROCFS_BUFFER4=0D Pass 1: parsed user script and 75 library script(s) using 38656virt/30656re= s/7872shr kb, in 270usr/0sys/263real ms.=0D Pass 2: analyzed script: 4 probe(s), 3 function(s), 1 embed(s), 2 global(s)= using 39040virt/31360res/8064shr kb, in 0usr/0sys/6real ms.=0D Pass 3: translated to C into "/tmp/stapfiqs5F/PROCFS_BUFFER4.c" using 39040= virt/31552res/8256shr kb, in 0usr/0sys/1real ms.=0D Pass 4: compiled C into "PROCFS_BUFFER4.ko" in 1960usr/200sys/2164real ms.= =0D Pass 5: starting run.=0D systemtap starting probe=0D PASS: PROCFS_BUFFER4 startup PASS: PROCFS_BUFFER4 read abcdefghijklmnoABCDEFGHIJKLMNOp PASS: PROCFS_BUFFER4 received correct initial value PASS: PROCFS_BUFFER4 wrote abcdefghijklmnoABCDEFGHIJKLMNOpqrstuvwxyz1234567= 89 PASS: PROCFS_BUFFER4 load generation systemtap ending probe=0D value0=3Dabcdefghijklmno=0D value1=3DABCDEFGHIJKLMNO=0D value2=3Dpqrstuvwxyz1234=0D value3=3D56789=0D Pass 5: run completed in 0usr/20sys/337real ms.=0D PASS: PROCFS_BUFFER4 shutdown and output metric: PROCFS_BUFFER4 270 0 263 0 0 6 0 0 1 1960 200 2164 0 20 337 executing: stap -v -DMAXSTRINGLEN=3D16 -DSTP_PROCFS_BUFSIZE=3D64 -e { global values[10] global idx =3D 0 probe procfs.read.maxsize(32) { $value =3D "abcdefghijklmno" $value .=3D "ABCDEFGHIJKLMNO" $value .=3D "pqrstuvwxyz1234" } probe procfs.write { values[idx] =3D $value idx++ } probe begin { printf("systemtap starting probe\n") } probe end { printf("systemtap ending probe\n") for (i =3D 0; i < idx; i++) { printf("value%d=3D%s\n", i, values[i]) } } } -m PROCFS_BUFFER5 spawn stap -v -DMAXSTRINGLEN=3D16 -DSTP_PROCFS_BUFSIZE=3D64 -e=20 global values[10] global idx =3D 0 probe procfs.read.maxsize(32) { $value =3D "abcdefghijklmno" $value .=3D "ABCDEFGHIJKLMNO" $value .=3D "pqrstuvwxyz1234" } probe procfs.write { values[idx] =3D $value idx++ } probe begin { printf("systemtap starting probe\n") } probe end { printf("systemtap ending probe\n") for (i =3D 0; i < idx; i++) { printf("value%d=3D%s\n", i, values[i]) } } -m PROCFS_BUFFER5=0D Pass 1: parsed user script and 75 library script(s) using 38656virt/30656re= s/7872shr kb, in 270usr/0sys/263real ms.=0D Pass 2: analyzed script: 4 probe(s), 3 function(s), 1 embed(s), 2 global(s)= using 39040virt/31360res/8064shr kb, in 0usr/0sys/6real ms.=0D Pass 3: translated to C into "/tmp/stapiCzLEy/PROCFS_BUFFER5.c" using 39040= virt/31552res/8256shr kb, in 0usr/0sys/1real ms.=0D Pass 4: compiled C into "PROCFS_BUFFER5.ko" in 2010usr/200sys/2219real ms.= =0D Pass 5: starting run.=0D systemtap starting probe=0D PASS: PROCFS_BUFFER5 startup PASS: PROCFS_BUFFER5 read abcdefghijklmnoABCDEFGHIJKLMNOp PASS: PROCFS_BUFFER5 received correct initial value PASS: PROCFS_BUFFER5 wrote abcdefghijklmnoABCDEFGHIJKLMNOpqrstuvwxyz1234567= 89 PASS: PROCFS_BUFFER5 load generation systemtap ending probe=0D value0=3Dabcdefghijklmno=0D value1=3DABCDEFGHIJKLMNO=0D value2=3Dpqrstuvwxyz1234=0D value3=3D56789=0D Pass 5: run completed in 0usr/20sys/329real ms.=0D PASS: PROCFS_BUFFER5 shutdown and output metric: PROCFS_BUFFER5 270 0 263 0 0 6 0 0 1 2010 200 2219 0 20 329 executing: stap -v -DMAXSTRINGLEN=3D16 -e { global values[10] global idx =3D 0 probe procfs("default").read { $value =3D "abcdefghijklmno" $value .=3D "ABCDEFGHIJKLMNO" $value .=3D "pqrstuvwxyz1234" } probe procfs.read.maxsize(32) { $value =3D "abcdefghijklmno" $value .=3D "ABCDEFGHIJKLMNO" $value .=3D "pqrstuvwxyz1234" } probe procfs.write { values[idx] =3D $value idx++ } probe begin { printf("systemtap starting probe\n") } probe end { printf("systemtap ending probe\n") for (i =3D 0; i < idx; i++) { printf("value%d=3D%s\n", i, values[i]) } } } -m PROCFS_BUFFER6 spawn stap -v -DMAXSTRINGLEN=3D16 -e=20 global values[10] global idx =3D 0 probe procfs("default").read { $value =3D "abcdefghijklmno" $value .=3D "ABCDEFGHIJKLMNO" $value .=3D "pqrstuvwxyz1234" } probe procfs.read.maxsize(32) { $value =3D "abcdefghijklmno" $value .=3D "ABCDEFGHIJKLMNO" $value .=3D "pqrstuvwxyz1234" } probe procfs.write { values[idx] =3D $value idx++ } probe begin { printf("systemtap starting probe\n") } probe end { printf("systemtap ending probe\n") for (i =3D 0; i < idx; i++) { printf("value%d=3D%s\n", i, values[i]) } } -m PROCFS_BUFFER6=0D Pass 1: parsed user script and 75 library script(s) using 38592virt/30720re= s/7872shr kb, in 270usr/0sys/263real ms.=0D Pass 2: analyzed script: 5 probe(s), 3 function(s), 1 embed(s), 2 global(s)= using 39168virt/31424res/8064shr kb, in 0usr/0sys/6real ms.=0D Pass 3: translated to C into "/tmp/stapC66pkC/PROCFS_BUFFER6.c" using 39168= virt/31616res/8256shr kb, in 0usr/0sys/1real ms.=0D Pass 4: compiled C into "PROCFS_BUFFER6.ko" in 1970usr/200sys/2171real ms.= =0D Pass 5: starting run.=0D systemtap starting probe=0D PASS: PROCFS_BUFFER6 startup PASS: PROCFS_BUFFER6 read abcdefghijklmno PASS: PROCFS_BUFFER6 received correct initial value PASS: PROCFS_BUFFER6 read abcdefghijklmnoABCDEFGHIJKLMNOp PASS: PROCFS_BUFFER6 received correct initial value PASS: PROCFS_BUFFER6 wrote abcdefghijklmnoABCDEFGHIJKLMNOpqrstuvwxyz1234567= 89 PASS: PROCFS_BUFFER6 load generation systemtap ending probe=0D value0=3Dabcdefghijklmno=0D value1=3DABCDEFGHIJKLMNO=0D value2=3Dpqrstuvwxyz1234=0D value3=3D56789=0D Pass 5: run completed in 0usr/20sys/338real ms.=0D PASS: PROCFS_BUFFER6 shutdown and output metric: PROCFS_BUFFER6 270 0 263 0 0 6 0 0 1 1970 200 2171 0 20 338 executing: stap -v -DMAXSTRINGLEN=3D512 -e { global large_strings[10] # Put more data than we can really handle into $value probe procfs.read.maxsize(2048) { $value =3D large_strings[0] for (i =3D 1; i < 10; i+=3D1) { $value .=3D large_strings[i] } } probe begin { # build up several maximum length strings max =3D 512 for (i =3D 0; i < max/64; i+=3D1) { for (j =3D 0; j < 10; j++) { if (i < (max/64 - 1)) { large_strings[j] .=3D sprintf("%3d:1234567890123456789012345678901234= 5678901234567890123456789\n", i + (j * (max/64))) } else { large_strings[j] .=3D sprintf("%3d:1234567890123456789012345678901234= 567890123456789012345678\n", i + (j * (max/64))) } } } printf("systemtap starting probe\n") } probe end { printf("systemtap ending probe\n") } } -m PROCFS_BUFFER7 spawn stap -v -DMAXSTRINGLEN=3D512 -e=20 global large_strings[10] # Put more data than we can really handle into $value probe procfs.read.maxsize(2048) { $value =3D large_strings[0] for (i =3D 1; i < 10; i+=3D1) { $value .=3D large_strings[i] } } probe begin { # build up several maximum length strings max =3D 512 for (i =3D 0; i < max/64; i+=3D1) { for (j =3D 0; j < 10; j++) { if (i < (max/64 - 1)) { large_strings[j] .=3D sprintf("%3d:1234567890123456789012345678901234= 5678901234567890123456789\n", i + (j * (max/64))) } else { large_strings[j] .=3D sprintf("%3d:1234567890123456789012345678901234= 567890123456789012345678\n", i + (j * (max/64))) } } } printf("systemtap starting probe\n") } probe end { printf("systemtap ending probe\n") } -m PROCFS_BUFFER7=0D Pass 1: parsed user script and 75 library script(s) using 38528virt/30656re= s/7872shr kb, in 270usr/0sys/264real ms.=0D Pass 2: analyzed script: 3 probe(s), 2 function(s), 1 embed(s), 1 global(s)= using 39104virt/31360res/8064shr kb, in 0usr/0sys/6real ms.=0D Pass 3: translated to C into "/tmp/stapiwJyFq/PROCFS_BUFFER7.c" using 39104= virt/31552res/8256shr kb, in 0usr/0sys/1real ms.=0D Pass 4: compiled C into "PROCFS_BUFFER7.ko" in 1960usr/200sys/2166real ms.= =0D Pass 5: starting run.=0D systemtap starting probe=0D PASS: PROCFS_BUFFER7 startup PASS: PROCFS_BUFFER7 read 0:123456789012345678901234567890123456789012345= 67890123456789 1:12345678901234567890123456789012345678901234567890123456789 2:12345678901234567890123456789012345678901234567890123456789 3:12345678901234567890123456789012345678901234567890123456789 4:12345678901234567890123456789012345678901234567890123456789 5:12345678901234567890123456789012345678901234567890123456789 6:12345678901234567890123456789012345678901234567890123456789 7:1234567890123456789012345678901234567890123456789012345678 8:12345678901234567890123456789012345678901234567890123456789 9:12345678901234567890123456789012345678901234567890123456789 10:12345678901234567890123456789012345678901234567890123456789 11:12345678901234567890123456789012345678901234567890123456789 12:12345678901234567890123456789012345678901234567890123456789 13:12345678901234567890123456789012345678901234567890123456789 14:12345678901234567890123456789012345678901234567890123456789 15:1234567890123456789012345678901234567890123456789012345678 16:12345678901234567890123456789012345678901234567890123456789 17:12345678901234567890123456789012345678901234567890123456789 18:12345678901234567890123456789012345678901234567890123456789 19:12345678901234567890123456789012345678901234567890123456789 20:12345678901234567890123456789012345678901234567890123456789 21:12345678901234567890123456789012345678901234567890123456789 22:12345678901234567890123456789012345678901234567890123456789 23:1234567890123456789012345678901234567890123456789012345678 24:12345678901234567890123456789012345678901234567890123456789 25:12345678901234567890123456789012345678901234567890123456789 26:12345678901234567890123456789012345678901234567890123456789 27:12345678901234567890123456789012345678901234567890123456789 28:12345678901234567890123456789012345678901234567890123456789 29:12345678901234567890123456789012345678901234567890123456789 30:12345678901234567890123456789012345678901234567890123456789 31:1234567890123456789012345678901234567890123456789012345678 32 PASS: PROCFS_BUFFER7 received correct initial value PASS: PROCFS_BUFFER7 load generation systemtap ending probe=0D Pass 5: run completed in 0usr/20sys/353real ms.=0D PASS: PROCFS_BUFFER7 shutdown and output metric: PROCFS_BUFFER7 270 0 264 0 0 6 0 0 1 1960 200 2166 0 20 353 testcase /home/prasadkr/systemtap/testsuite/systemtap.base/procfs_maxsize.e= xp completed in 20 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/procfs_umask.exp = ... executing: stap -v -e { global value probe procfs("umask-000-r").umask(000).read {$value =3D "100\n" } probe procfs("umask-000-w").umask(000).write {printf("the val is, %s", = $value)} probe procfs("umask-004-r").umask(004).read {$value =3D "200\n"} probe procfs("umask-020-w").umask(020).write {printf("the val is, %s", = $value)} probe procfs("umask-044-r").umask(044).read {$value =3D "300\n"} probe procfs("umask-022-w").umask(022).write {printf("the val is, %s", = $value)} probe procfs("umask-400-r").umask(400).read {$value =3D "400\n"} probe procfs("umask-200-w").umask(200).write {printf("the val is, %s", = $value)} probe procfs("umask-440-r").umask(440).read {$value =3D "500\n"} probe procfs("umask-202-w").umask(202).write {printf("the val is, %s", = $value)} probe procfs("umask-404-r").umask(404).read {$value =3D "600\n"} probe procfs("umask-002-w").umask(002).write {printf("the val is, %s", = $value)} =20=20=20=20 probe begin { value =3D "600\n" printf("systemtap starting probe\n") } probe end { printf("systemtap ending probe\n") printf("Testing permissions\n") } } -m PROCFS_UMASK spawn stap -v -e=20 global value probe procfs("umask-000-r").umask(000).read {$value =3D "100\n" } probe procfs("umask-000-w").umask(000).write {printf("the val is, %s", = $value)} probe procfs("umask-004-r").umask(004).read {$value =3D "200\n"} probe procfs("umask-020-w").umask(020).write {printf("the val is, %s", = $value)} probe procfs("umask-044-r").umask(044).read {$value =3D "300\n"} probe procfs("umask-022-w").umask(022).write {printf("the val is, %s", = $value)} probe procfs("umask-400-r").umask(400).read {$value =3D "400\n"} probe procfs("umask-200-w").umask(200).write {printf("the val is, %s", = $value)} probe procfs("umask-440-r").umask(440).read {$value =3D "500\n"} probe procfs("umask-202-w").umask(202).write {printf("the val is, %s", = $value)} probe procfs("umask-404-r").umask(404).read {$value =3D "600\n"} probe procfs("umask-002-w").umask(002).write {printf("the val is, %s", = $value)} =20=20=20=20 probe begin { value =3D "600\n" printf("systemtap starting probe\n") } probe end { printf("systemtap ending probe\n") printf("Testing permissions\n") } -m PROCFS_UMASK=0D Pass 1: parsed user script and 75 library script(s) using 38528virt/30720re= s/7872shr kb, in 240usr/0sys/245real ms.=0D Pass 2: analyzed script: 15 probe(s), 2 function(s), 1 embed(s), 1 global(s= ) using 39104virt/31424res/8064shr kb, in 0usr/0sys/6real ms.=0D Pass 3: translated to C into "/tmp/stapSJbdEk/PROCFS_UMASK.c" using 39104vi= rt/31680res/8256shr kb, in 10usr/0sys/2real ms.=0D Pass 4: compiled C into "PROCFS_UMASK.ko" in 1880usr/200sys/2101real ms.=0D Pass 5: starting run.=0D systemtap starting probe=0D PASS: PROCFS_UMASK startup PASS: PROCFS_UMASK PASS: PROCFS_UMASK load generation systemtap ending probe=0D Testing permissions=0D value=3D"600=0D "=0D Pass 5: run completed in 10usr/20sys/329real ms.=0D PASS: PROCFS_UMASK shutdown and output testcase /home/prasadkr/systemtap/testsuite/systemtap.base/procfs_umask.exp= completed in 3 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/procfs_write.exp = ... executing: stap -v -DMAXSTRINGLEN=3D512 -e { global iteration =3D 0 global saved_value[20] probe procfs("command").write { saved_value[iteration] =3D $value iteration++ } probe begin { printf("systemtap starting probe\n") } probe end { printf("systemtap ending probe\n") for (i =3D 0; i < iteration; i++) { printf("%s", saved_value[i]) } } } -m PROCFS_WRITE spawn stap -v -DMAXSTRINGLEN=3D512 -e=20 global iteration =3D 0 global saved_value[20] probe procfs("command").write { saved_value[iteration] =3D $value iteration++ } probe begin { printf("systemtap starting probe\n") } probe end { printf("systemtap ending probe\n") for (i =3D 0; i < iteration; i++) { printf("%s", saved_value[i]) } } -m PROCFS_WRITE=0D Pass 1: parsed user script and 75 library script(s) using 38592virt/30656re= s/7872shr kb, in 270usr/0sys/263real ms.=0D Pass 2: analyzed script: 3 probe(s), 1 function(s), 1 embed(s), 2 global(s)= using 39168virt/31360res/8064shr kb, in 0usr/0sys/6real ms.=0D Pass 3: translated to C into "/tmp/stapatDlX1/PROCFS_WRITE.c" using 39168vi= rt/31552res/8256shr kb, in 0usr/0sys/1real ms.=0D Pass 4: compiled C into "PROCFS_WRITE.ko" in 1940usr/200sys/2154real ms.=0D Pass 5: starting run.=0D systemtap starting probe=0D PASS: PROCFS_WRITE startup PASS: PROCFS_WRITE wrote 0:1234567890123456789012345678901234567890123456= 7890123456789 1:12345678901234567890123456789012345678901234567890123456789 2:12345678901234567890123456789012345678901234567890123456789 3:12345678901234567890123456789012345678901234567890123456789 4:12345678901234567890123456789012345678901234567890123456789 5:12345678901234567890123456789012345678901234567890123456789 6:12345678901234567890123456789012345678901234567890123456789 7:12345678901234567890123456789012345678901234567890123456789 8:12345678901234567890123456789012345678901234567890123456789 9:12345678901234567890123456789012345678901234567890123456789 10:12345678901234567890123456789012345678901234567890123456789 11:12345678901234567890123456789012345678901234567890123456789 12:12345678901234567890123456789012345678901234567890123456789 13:12345678901234567890123456789012345678901234567890123456789 14:12345678901234567890123456789012345678901234567890123456789 15:12345678901234567890123456789012345678901234567890123456789 16:12345678901234567890123456789012345678901234567890123456789 17:12345678901234567890123456789012345678901234567890123456789 18:12345678901234567890123456789012345678901234567890123456789 19:12345678901234567890123456789012345678901234567890123456789 20:12345678901234567890123456789012345678901234567890123456789 21:12345678901234567890123456789012345678901234567890123456789 22:12345678901234567890123456789012345678901234567890123456789 23:12345678901234567890123456789012345678901234567890123456789 24:12345678901234567890123456789012345678901234567890123456789 25:12345678901234567890123456789012345678901234567890123456789 26:12345678901234567890123456789012345678901234567890123456789 27:12345678901234567890123456789012345678901234567890123456789 28:12345678901234567890123456789012345678901234567890123456789 29:12345678901234567890123456789012345678901234567890123456789 30:12345678901234567890123456789012345678901234567890123456789 31:12345678901234567890123456789012345678901234567890123456789 32:12345678901234567890123456789012345678901234567890123456789 33:12345678901234567890123456789012345678901234567890123456789 34:12345678901234567890123456789012345678901234567890123456789 35:12345678901234567890123456789012345678901234567890123456789 36:12345678901234567890123456789012345678901234567890123456789 37:12345678901234567890123456789012345678901234567890123456789 38:12345678901234567890123456789012345678901234567890123456789 39:12345678901234567890123456789012345678901234567890123456789 40:12345678901234567890123456789012345678901234567890123456789 41:12345678901234567890123456789012345678901234567890123456789 42:12345678901234567890123456789012345678901234567890123456789 43:12345678901234567890123456789012345678901234567890123456789 44:12345678901234567890123456789012345678901234567890123456789 45:12345678901234567890123456789012345678901234567890123456789 46:12345678901234567890123456789012345678901234567890123456789 47:12345678901234567890123456789012345678901234567890123456789 48:12345678901234567890123456789012345678901234567890123456789 49:12345678901234567890123456789012345678901234567890123456789 50:12345678901234567890123456789012345678901234567890123456789 51:12345678901234567890123456789012345678901234567890123456789 52:12345678901234567890123456789012345678901234567890123456789 53:12345678901234567890123456789012345678901234567890123456789 54:12345678901234567890123456789012345678901234567890123456789 55:12345678901234567890123456789012345678901234567890123456789 56:12345678901234567890123456789012345678901234567890123456789 57:12345678901234567890123456789012345678901234567890123456789 58:12345678901234567890123456789012345678901234567890123456789 59:12345678901234567890123456789012345678901234567890123456789 60:12345678901234567890123456789012345678901234567890123456789 61:12345678901234567890123456789012345678901234567890123456789 62:12345678901234567890123456789012345678901234567890123456789 63:12345678901234567890123456789012345678901234567890123456789 64:12345678901234567890123456789012345678901234567890123456789 65:12345678901234567890123456789012345678901234567890123456789 66:12345678901234567890123456789012345678901234567890123456789 PASS: PROCFS_WRITE load generation systemtap ending probe=0D 0:12345678901234567890123456789012345678901234567890123456789=0D 1:12345678901234567890123456789012345678901234567890123456789=0D 2:12345678901234567890123456789012345678901234567890123456789=0D 3:12345678901234567890123456789012345678901234567890123456789=0D 4:12345678901234567890123456789012345678901234567890123456789=0D 5:12345678901234567890123456789012345678901234567890123456789=0D 6:12345678901234567890123456789012345678901234567890123456789=0D 7:12345678901234567890123456789012345678901234567890123456789=0D 8:12345678901234567890123456789012345678901234567890123456789=0D 9:12345678901234567890123456789012345678901234567890123456789=0D 10:12345678901234567890123456789012345678901234567890123456789=0D 11:12345678901234567890123456789012345678901234567890123456789=0D 12:12345678901234567890123456789012345678901234567890123456789=0D 13:12345678901234567890123456789012345678901234567890123456789=0D 14:12345678901234567890123456789012345678901234567890123456789=0D 15:12345678901234567890123456789012345678901234567890123456789=0D 16:12345678901234567890123456789012345678901234567890123456789=0D 17:12345678901234567890123456789012345678901234567890123456789=0D 18:12345678901234567890123456789012345678901234567890123456789=0D 19:12345678901234567890123456789012345678901234567890123456789=0D 20:12345678901234567890123456789012345678901234567890123456789=0D 21:12345678901234567890123456789012345678901234567890123456789=0D 22:12345678901234567890123456789012345678901234567890123456789=0D 23:12345678901234567890123456789012345678901234567890123456789=0D 24:12345678901234567890123456789012345678901234567890123456789=0D 25:12345678901234567890123456789012345678901234567890123456789=0D 26:12345678901234567890123456789012345678901234567890123456789=0D 27:12345678901234567890123456789012345678901234567890123456789=0D 28:12345678901234567890123456789012345678901234567890123456789=0D 29:12345678901234567890123456789012345678901234567890123456789=0D 30:12345678901234567890123456789012345678901234567890123456789=0D 31:12345678901234567890123456789012345678901234567890123456789=0D 32:12345678901234567890123456789012345678901234567890123456789=0D 33:12345678901234567890123456789012345678901234567890123456789=0D 34:12345678901234567890123456789012345678901234567890123456789=0D 35:12345678901234567890123456789012345678901234567890123456789=0D 36:12345678901234567890123456789012345678901234567890123456789=0D 37:12345678901234567890123456789012345678901234567890123456789=0D 38:12345678901234567890123456789012345678901234567890123456789=0D 39:12345678901234567890123456789012345678901234567890123456789=0D 40:12345678901234567890123456789012345678901234567890123456789=0D 41:12345678901234567890123456789012345678901234567890123456789=0D 42:12345678901234567890123456789012345678901234567890123456789=0D 43:12345678901234567890123456789012345678901234567890123456789=0D 44:12345678901234567890123456789012345678901234567890123456789=0D 45:12345678901234567890123456789012345678901234567890123456789=0D 46:12345678901234567890123456789012345678901234567890123456789=0D 47:12345678901234567890123456789012345678901234567890123456789=0D 48:12345678901234567890123456789012345678901234567890123456789=0D 49:12345678901234567890123456789012345678901234567890123456789=0D 50:12345678901234567890123456789012345678901234567890123456789=0D 51:12345678901234567890123456789012345678901234567890123456789=0D 52:12345678901234567890123456789012345678901234567890123456789=0D 53:12345678901234567890123456789012345678901234567890123456789=0D 54:12345678901234567890123456789012345678901234567890123456789=0D 55:12345678901234567890123456789012345678901234567890123456789=0D 56:12345678901234567890123456789012345678901234567890123456789=0D 57:12345678901234567890123456789012345678901234567890123456789=0D 58:12345678901234567890123456789012345678901234567890123456789=0D 59:12345678901234567890123456789012345678901234567890123456789=0D 60:12345678901234567890123456789012345678901234567890123456789=0D 61:12345678901234567890123456789012345678901234567890123456789=0D 62:12345678901234567890123456789012345678901234567890123456789=0D 63:12345678901234567890123456789012345678901234567890123456789=0D 64:12345678901234567890123456789012345678901234567890123456789=0D 65:12345678901234567890123456789012345678901234567890123456789=0D 66:12345678901234567890123456789012345678901234567890123456789=0D Pass 5: run completed in 0usr/20sys/330real ms.=0D PASS: PROCFS_WRITE shutdown and output metric: PROCFS_WRITE 270 0 263 0 0 6 0 0 1 1940 200 2154 0 20 330 testcase /home/prasadkr/systemtap/testsuite/systemtap.base/procfs_write.exp= completed in 3 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/prologues.exp ... spawn stap -P /home/prasadkr/systemtap/testsuite/systemtap.base/prologues.s= tp=0D read (5, 0xfffd2447d3c, 8196)=0D read (5, 0xfffd2447d3c, 8196)=0D read (3, 0xfff84dd8c00, 4095)=0D read (6, 0xfffa8bfe700, 131072)=0D write (1, "read (5, 0xfffd2447d3c, 8196)\nread (5, 0xfff"..., 122)=0D read (6, 0xfffa8bfe700, 131072)=0D write (1, "write (1, \"read (5, 0xfffd2447d3c, 8196)\\nr"..., 99)=0D read (6, 0xfffa8bfe700, 131072)=0D write (1, "write (1, \"write (1, \\\"read (5, 0xfffd2447"..., 98)=0D read (6, 0xfffa8bfe700, 131072)=0D write (1, "write (1, \"write (1, \\\"write (1, \\\\\\\"r"..., 98)=0D read (6, 0xfffa8bfe700, 131072)=0D write (1, "write (1, \"write (1, \\\"write (1, \\\\\\\"w"..., 98)=0D read (6, 0xfffa8bfe700, 131072)=0D write (1, "write (1, \"write (1, \\\"write (1, \\\\\\\"w"..., 98)=0D read (6, 0xfffa8bfe700, 131072)=0D write (1, "write (1, \"write (1, \\\"write (1, \\\\\\\"w"..., 98)=0D read (6, 0xfffa8bfe700, 131072)=0D write (1, "write (1, \"write (1, \\\"write (1, \\\\\\\"w"..., 98)=0D read (6, 0xfffa8bfe700, 131072)=0D write (1, "write (1, \"write (1, \\\"write (1, \\\\\\\"w"..., 98)=0D read (6, 0xfffa8bfe700, 131072)=0D PASS: prologues -P spawn stap /home/prasadkr/systemtap/testsuite/systemtap.base/prologues.stp= =0D read (5, 0xfffe14b5a3c, 8196)=0D read (5, 0xfffe14b5a3c, 8196)=0D read (3, 0xfff84dd8c00, 4095)=0D read (6, 0xfff7ca7e700, 131072)=0D write (1, "read (5, 0xfffe14b5a3c, 8196)\nread (5, 0xfff"..., 122)=0D read (6, 0xfff7ca7e700, 131072)=0D write (1, "write (1, \"read (5, 0xfffe14b5a3c, 8196)\\nr"..., 99)=0D read (6, 0xfff7ca7e700, 131072)=0D write (1, "write (1, \"write (1, \\\"read (5, 0xfffe14b5"..., 98)=0D read (6, 0xfff7ca7e700, 131072)=0D write (1, "write (1, \"write (1, \\\"write (1, \\\\\\\"r"..., 98)=0D read (6, 0xfff7ca7e700, 131072)=0D write (1, "write (1, \"write (1, \\\"write (1, \\\\\\\"w"..., 98)=0D read (6, 0xfff7ca7e700, 131072)=0D write (1, "write (1, \"write (1, \\\"write (1, \\\\\\\"w"..., 98)=0D read (6, 0xfff7ca7e700, 131072)=0D write (1, "write (1, \"write (1, \\\"write (1, \\\\\\\"w"..., 98)=0D read (6, 0xfff7ca7e700, 131072)=0D write (1, "write (1, \"write (1, \\\"write (1, \\\\\\\"w"..., 98)=0D read (6, 0xfff7ca7e700, 131072)=0D write (1, "write (1, \"write (1, \\\"write (1, \\\\\\\"w"..., 98)=0D read (6, 0xfff7ca7e700, 131072)=0D PASS: prologues no-P testcase /home/prasadkr/systemtap/testsuite/systemtap.base/prologues.exp co= mpleted in 10 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/ptridx.exp ... Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.base/pt= ridx.c -g -O2 -lm -o ptridx.exe (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.base/= ptridx.c -g -O2 -lm -o ptridx.exe=0D PASS: ptridx.c compile PASS: ptridx (list labels) spawn stap /home/prasadkr/systemtap/testsuite/systemtap.base/ptridx.stp -c = ./ptridx.exe -w=0D semantic error: failed to retrieve location attribute for local 'p' (dieoff= set: 0x320): identifier '$p' at /home/prasadkr/systemtap/testsuite/systemta= p.base/ptridx.stp:11:22=0D source: printf("%d, %d\n", $p[0], $p[1]);=0D ^=0D Pass 2: analysis failed. Try again with another '--vp 01' option.=0D XFAIL: ptridx (0) testcase /home/prasadkr/systemtap/testsuite/systemtap.base/ptridx.exp compl= eted in 0 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/rand.exp ... executing: stap /home/prasadkr/systemtap/testsuite/systemtap.base/rand.stp PASS: systemtap.base/rand.stp testcase /home/prasadkr/systemtap/testsuite/systemtap.base/rand.exp complet= ed in 3 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/rep_ret.exp ... UNSUPPORTED: rep_ret testcase /home/prasadkr/systemtap/testsuite/systemtap.base/rep_ret.exp comp= leted in 0 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/sdt.exp ... Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t.c -g -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/inclu= de -Wall -Wextra -Werror -O2 -lm -o sdt.c.exe.0 (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt.c -g -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/incl= ude -Wall -Wextra -Werror -O2 -lm -o sdt.c.exe.0=0D PASS: compiling sdt.c -O2 uprobe executing: stap -w /home/prasadkr/systemtap/testsuite/systemtap.base/sdt.st= p sdt.c.exe.0 -c ./sdt.c.exe.0 PASS: sdt -O2 uprobe Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t.c -g -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/inclu= de -Wall -Wextra -Werror -O3 -lm -o sdt.c.exe.1 (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt.c -g -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/incl= ude -Wall -Wextra -Werror -O3 -lm -o sdt.c.exe.1=0D PASS: compiling sdt.c -O3 uprobe executing: stap -w /home/prasadkr/systemtap/testsuite/systemtap.base/sdt.st= p sdt.c.exe.1 -c ./sdt.c.exe.1 PASS: sdt -O3 uprobe Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t.c -g -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/inclu= de -Wall -Wextra -Werror -std=3Dc89 -lm -o sdt.c.exe.2 (timeout =3D 3= 00) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt.c -g -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/incl= ude -Wall -Wextra -Werror -std=3Dc89 -lm -o sdt.c.exe.2=0D PASS: compiling sdt.c c89 uprobe executing: stap -w /home/prasadkr/systemtap/testsuite/systemtap.base/sdt.st= p sdt.c.exe.2 -c ./sdt.c.exe.2 PASS: sdt c89 uprobe Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t.c -g -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/inclu= de -Wall -Wextra -Werror -std=3Dc89 -pedantic -lm -o sdt.c.exe.2 (tim= eout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt.c -g -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/incl= ude -Wall -Wextra -Werror -std=3Dc89 -pedantic -lm -o sdt.c.exe.2=0D cc1: warnings being treated as errors=0D /home/prasadkr/systemtap/testsuite/systemtap.base/sdt.c: In function =E2=80= =98call9=E2=80=99:=0D /home/prasadkr/systemtap/testsuite/systemtap.base/sdt.c:50: error: string l= ength =E2=80=98542=E2=80=99 is greater than the length =E2=80=98509=E2=80= =99 ISO C90 compilers are required to support=0D /home/prasadkr/systemtap/testsuite/systemtap.base/sdt.c: In function =E2=80= =98call10=E2=80=99:=0D /home/prasadkr/systemtap/testsuite/systemtap.base/sdt.c:55: error: string l= ength =E2=80=98579=E2=80=99 is greater than the length =E2=80=98509=E2=80= =99 ISO C90 compilers are required to support=0D compiler exited with status 1 output is: cc1: warnings being treated as errors=0D /home/prasadkr/systemtap/testsuite/systemtap.base/sdt.c: In function =E2=80= =98call9=E2=80=99:=0D /home/prasadkr/systemtap/testsuite/systemtap.base/sdt.c:50: error: string l= ength =E2=80=98542=E2=80=99 is greater than the length =E2=80=98509=E2=80= =99 ISO C90 compilers are required to support=0D /home/prasadkr/systemtap/testsuite/systemtap.base/sdt.c: In function =E2=80= =98call10=E2=80=99:=0D /home/prasadkr/systemtap/testsuite/systemtap.base/sdt.c:55: error: string l= ength =E2=80=98579=E2=80=99 is greater than the length =E2=80=98509=E2=80= =99 ISO C90 compilers are required to support=0D FAIL: compiling sdt.c c89 -pedantic uprobe UNTESTED: sdt c89 -pedantic uprobe Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t.c -g -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/inclu= de -Wall -Wextra -Werror -std=3Dc99 -lm -o sdt.c.exe.3 (timeout =3D 3= 00) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt.c -g -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/incl= ude -Wall -Wextra -Werror -std=3Dc99 -lm -o sdt.c.exe.3=0D PASS: compiling sdt.c c99 uprobe executing: stap -w /home/prasadkr/systemtap/testsuite/systemtap.base/sdt.st= p sdt.c.exe.3 -c ./sdt.c.exe.3 PASS: sdt c99 uprobe Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t.c -g -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/inclu= de -Wall -Wextra -Werror -std=3Dc99 -pedantic -lm -o sdt.c.exe.3 (tim= eout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt.c -g -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/incl= ude -Wall -Wextra -Werror -std=3Dc99 -pedantic -lm -o sdt.c.exe.3=0D PASS: compiling sdt.c c99 -pedantic uprobe executing: stap -w /home/prasadkr/systemtap/testsuite/systemtap.base/sdt.st= p sdt.c.exe.3 -c ./sdt.c.exe.3 PASS: sdt c99 -pedantic uprobe Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t.c -g -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/inclu= de -Wall -Wextra -Werror -std=3Dgnu99 -lm -o sdt.c.exe.4 (timeout =3D= 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt.c -g -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/incl= ude -Wall -Wextra -Werror -std=3Dgnu99 -lm -o sdt.c.exe.4=0D PASS: compiling sdt.c gnu99 uprobe executing: stap -w /home/prasadkr/systemtap/testsuite/systemtap.base/sdt.st= p sdt.c.exe.4 -c ./sdt.c.exe.4 PASS: sdt gnu99 uprobe Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t.c -g -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/inclu= de -Wall -Wextra -Werror -std=3Dgnu99 -pedantic -lm -o sdt.c.exe.4 (t= imeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt.c -g -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/incl= ude -Wall -Wextra -Werror -std=3Dgnu99 -pedantic -lm -o sdt.c.exe.4=0D PASS: compiling sdt.c gnu99 -pedantic uprobe executing: stap -w /home/prasadkr/systemtap/testsuite/systemtap.base/sdt.st= p sdt.c.exe.4 -c ./sdt.c.exe.4 PASS: sdt gnu99 -pedantic uprobe Executing on host: g++ /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t.c -g -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/inclu= de -Wall -Wextra -Werror -std=3Dc++98 -x c++ -lm -o sdt.c.exe.5 (ti= meout =3D 300) spawn -ignore SIGHUP g++ /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt.c -g -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/incl= ude -Wall -Wextra -Werror -std=3Dc++98 -x c++ -lm -o sdt.c.exe.5=0D PASS: compiling sdt.c c++98 uprobe executing: stap -w /home/prasadkr/systemtap/testsuite/systemtap.base/sdt.st= p sdt.c.exe.5 -c ./sdt.c.exe.5 PASS: sdt c++98 uprobe Executing on host: g++ /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t.c -g -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/inclu= de -Wall -Wextra -Werror -std=3Dc++98 -x c++ -pedantic -lm -o sdt.c.ex= e.5 (timeout =3D 300) spawn -ignore SIGHUP g++ /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt.c -g -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/incl= ude -Wall -Wextra -Werror -std=3Dc++98 -x c++ -pedantic -lm -o sdt.c.exe.5= =0D PASS: compiling sdt.c c++98 -pedantic uprobe executing: stap -w /home/prasadkr/systemtap/testsuite/systemtap.base/sdt.st= p sdt.c.exe.5 -c ./sdt.c.exe.5 PASS: sdt c++98 -pedantic uprobe Executing on host: g++ /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t.c -g -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/inclu= de -Wall -Wextra -Werror -std=3Dgnu++98 -x c++ -lm -o sdt.c.exe.6 (= timeout =3D 300) spawn -ignore SIGHUP g++ /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt.c -g -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/incl= ude -Wall -Wextra -Werror -std=3Dgnu++98 -x c++ -lm -o sdt.c.exe.6=0D PASS: compiling sdt.c gnu++98 uprobe executing: stap -w /home/prasadkr/systemtap/testsuite/systemtap.base/sdt.st= p sdt.c.exe.6 -c ./sdt.c.exe.6 PASS: sdt gnu++98 uprobe Executing on host: g++ /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t.c -g -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/inclu= de -Wall -Wextra -Werror -std=3Dgnu++98 -x c++ -pedantic -lm -o sdt.c.= exe.6 (timeout =3D 300) spawn -ignore SIGHUP g++ /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt.c -g -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/incl= ude -Wall -Wextra -Werror -std=3Dgnu++98 -x c++ -pedantic -lm -o sdt.c.exe.= 6=0D PASS: compiling sdt.c gnu++98 -pedantic uprobe executing: stap -w /home/prasadkr/systemtap/testsuite/systemtap.base/sdt.st= p sdt.c.exe.6 -c ./sdt.c.exe.6 PASS: sdt gnu++98 -pedantic uprobe Executing on host: g++ /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t.c -g -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/inclu= de -Wall -Wextra -Werror -std=3Dc++0x -x c++ -lm -o sdt.c.exe.7 (ti= meout =3D 300) spawn -ignore SIGHUP g++ /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt.c -g -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/incl= ude -Wall -Wextra -Werror -std=3Dc++0x -x c++ -lm -o sdt.c.exe.7=0D PASS: compiling sdt.c c++0x uprobe executing: stap -w /home/prasadkr/systemtap/testsuite/systemtap.base/sdt.st= p sdt.c.exe.7 -c ./sdt.c.exe.7 PASS: sdt c++0x uprobe Executing on host: g++ /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t.c -g -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/inclu= de -Wall -Wextra -Werror -std=3Dc++0x -x c++ -pedantic -lm -o sdt.c.ex= e.7 (timeout =3D 300) spawn -ignore SIGHUP g++ /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt.c -g -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/incl= ude -Wall -Wextra -Werror -std=3Dc++0x -x c++ -pedantic -lm -o sdt.c.exe.7= =0D PASS: compiling sdt.c c++0x -pedantic uprobe executing: stap -w /home/prasadkr/systemtap/testsuite/systemtap.base/sdt.st= p sdt.c.exe.7 -c ./sdt.c.exe.7 PASS: sdt c++0x -pedantic uprobe Executing on host: g++ /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t.c -g -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/inclu= de -Wall -Wextra -Werror -std=3Dgnu++0x -x c++ -lm -o sdt.c.exe.8 (= timeout =3D 300) spawn -ignore SIGHUP g++ /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt.c -g -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/incl= ude -Wall -Wextra -Werror -std=3Dgnu++0x -x c++ -lm -o sdt.c.exe.8=0D PASS: compiling sdt.c gnu++0x uprobe executing: stap -w /home/prasadkr/systemtap/testsuite/systemtap.base/sdt.st= p sdt.c.exe.8 -c ./sdt.c.exe.8 PASS: sdt gnu++0x uprobe Executing on host: g++ /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t.c -g -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/inclu= de -Wall -Wextra -Werror -std=3Dgnu++0x -x c++ -pedantic -lm -o sdt.c.= exe.8 (timeout =3D 300) spawn -ignore SIGHUP g++ /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt.c -g -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/incl= ude -Wall -Wextra -Werror -std=3Dgnu++0x -x c++ -pedantic -lm -o sdt.c.exe.= 8=0D PASS: compiling sdt.c gnu++0x -pedantic uprobe executing: stap -w /home/prasadkr/systemtap/testsuite/systemtap.base/sdt.st= p sdt.c.exe.8 -c ./sdt.c.exe.8 PASS: sdt gnu++0x -pedantic uprobe Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t.c -g -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/inclu= de -Wall -Wextra -Werror -DSTAP_SDT_V2 -O2 -lm -o sdt.c.exe.0 (timeou= t =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt.c -g -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/incl= ude -Wall -Wextra -Werror -DSTAP_SDT_V2 -O2 -lm -o sdt.c.exe.0=0D PASS: compiling sdt.c -O2 V2_uprobe executing: stap -w /home/prasadkr/systemtap/testsuite/systemtap.base/sdt.st= p sdt.c.exe.0 -c ./sdt.c.exe.0 FAIL: sdt -O2 V2_uprobe line 2: expected "1" Got "17591289404336" Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t.c -g -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/inclu= de -Wall -Wextra -Werror -DSTAP_SDT_V2 -O3 -lm -o sdt.c.exe.1 (timeou= t =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt.c -g -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/incl= ude -Wall -Wextra -Werror -DSTAP_SDT_V2 -O3 -lm -o sdt.c.exe.1=0D PASS: compiling sdt.c -O3 V2_uprobe executing: stap -w /home/prasadkr/systemtap/testsuite/systemtap.base/sdt.st= p sdt.c.exe.1 -c ./sdt.c.exe.1 FAIL: sdt -O3 V2_uprobe line 2: expected "1" Got "17591194541920" Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t.c -g -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/inclu= de -Wall -Wextra -Werror -DSTAP_SDT_V2 -std=3Dc89 -lm -o sdt.c.exe.2 = (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt.c -g -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/incl= ude -Wall -Wextra -Werror -DSTAP_SDT_V2 -std=3Dc89 -lm -o sdt.c.exe.2=0D PASS: compiling sdt.c c89 V2_uprobe executing: stap -w /home/prasadkr/systemtap/testsuite/systemtap.base/sdt.st= p sdt.c.exe.2 -c ./sdt.c.exe.2 PASS: sdt c89 V2_uprobe Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t.c -g -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/inclu= de -Wall -Wextra -Werror -DSTAP_SDT_V2 -std=3Dc89 -pedantic -lm -o sdt.c= .exe.2 (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt.c -g -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/incl= ude -Wall -Wextra -Werror -DSTAP_SDT_V2 -std=3Dc89 -pedantic -lm -o sdt.c.e= xe.2=0D PASS: compiling sdt.c c89 -pedantic V2_uprobe executing: stap -w /home/prasadkr/systemtap/testsuite/systemtap.base/sdt.st= p sdt.c.exe.2 -c ./sdt.c.exe.2 PASS: sdt c89 -pedantic V2_uprobe Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t.c -g -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/inclu= de -Wall -Wextra -Werror -DSTAP_SDT_V2 -std=3Dc99 -lm -o sdt.c.exe.3 = (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt.c -g -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/incl= ude -Wall -Wextra -Werror -DSTAP_SDT_V2 -std=3Dc99 -lm -o sdt.c.exe.3=0D PASS: compiling sdt.c c99 V2_uprobe executing: stap -w /home/prasadkr/systemtap/testsuite/systemtap.base/sdt.st= p sdt.c.exe.3 -c ./sdt.c.exe.3 PASS: sdt c99 V2_uprobe Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t.c -g -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/inclu= de -Wall -Wextra -Werror -DSTAP_SDT_V2 -std=3Dc99 -pedantic -lm -o sdt.c= .exe.3 (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt.c -g -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/incl= ude -Wall -Wextra -Werror -DSTAP_SDT_V2 -std=3Dc99 -pedantic -lm -o sdt.c.e= xe.3=0D PASS: compiling sdt.c c99 -pedantic V2_uprobe executing: stap -w /home/prasadkr/systemtap/testsuite/systemtap.base/sdt.st= p sdt.c.exe.3 -c ./sdt.c.exe.3 PASS: sdt c99 -pedantic V2_uprobe Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t.c -g -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/inclu= de -Wall -Wextra -Werror -DSTAP_SDT_V2 -std=3Dgnu99 -lm -o sdt.c.exe.4 = (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt.c -g -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/incl= ude -Wall -Wextra -Werror -DSTAP_SDT_V2 -std=3Dgnu99 -lm -o sdt.c.exe.4=0D PASS: compiling sdt.c gnu99 V2_uprobe executing: stap -w /home/prasadkr/systemtap/testsuite/systemtap.base/sdt.st= p sdt.c.exe.4 -c ./sdt.c.exe.4 PASS: sdt gnu99 V2_uprobe Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t.c -g -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/inclu= de -Wall -Wextra -Werror -DSTAP_SDT_V2 -std=3Dgnu99 -pedantic -lm -o sdt= .c.exe.4 (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt.c -g -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/incl= ude -Wall -Wextra -Werror -DSTAP_SDT_V2 -std=3Dgnu99 -pedantic -lm -o sdt.c= .exe.4=0D PASS: compiling sdt.c gnu99 -pedantic V2_uprobe executing: stap -w /home/prasadkr/systemtap/testsuite/systemtap.base/sdt.st= p sdt.c.exe.4 -c ./sdt.c.exe.4 PASS: sdt gnu99 -pedantic V2_uprobe Executing on host: g++ /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t.c -g -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/inclu= de -Wall -Wextra -Werror -DSTAP_SDT_V2 -std=3Dc++98 -x c++ -lm -o sdt.= c.exe.5 (timeout =3D 300) spawn -ignore SIGHUP g++ /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt.c -g -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/incl= ude -Wall -Wextra -Werror -DSTAP_SDT_V2 -std=3Dc++98 -x c++ -lm -o sdt.c.ex= e.5=0D PASS: compiling sdt.c c++98 V2_uprobe executing: stap -w /home/prasadkr/systemtap/testsuite/systemtap.base/sdt.st= p sdt.c.exe.5 -c ./sdt.c.exe.5 PASS: sdt c++98 V2_uprobe Executing on host: g++ /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t.c -g -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/inclu= de -Wall -Wextra -Werror -DSTAP_SDT_V2 -std=3Dc++98 -x c++ -pedantic -lm= -o sdt.c.exe.5 (timeout =3D 300) spawn -ignore SIGHUP g++ /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt.c -g -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/incl= ude -Wall -Wextra -Werror -DSTAP_SDT_V2 -std=3Dc++98 -x c++ -pedantic -lm -= o sdt.c.exe.5=0D PASS: compiling sdt.c c++98 -pedantic V2_uprobe executing: stap -w /home/prasadkr/systemtap/testsuite/systemtap.base/sdt.st= p sdt.c.exe.5 -c ./sdt.c.exe.5 PASS: sdt c++98 -pedantic V2_uprobe Executing on host: g++ /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t.c -g -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/inclu= de -Wall -Wextra -Werror -DSTAP_SDT_V2 -std=3Dgnu++98 -x c++ -lm -o sd= t.c.exe.6 (timeout =3D 300) spawn -ignore SIGHUP g++ /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt.c -g -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/incl= ude -Wall -Wextra -Werror -DSTAP_SDT_V2 -std=3Dgnu++98 -x c++ -lm -o sdt.c.= exe.6=0D PASS: compiling sdt.c gnu++98 V2_uprobe executing: stap -w /home/prasadkr/systemtap/testsuite/systemtap.base/sdt.st= p sdt.c.exe.6 -c ./sdt.c.exe.6 PASS: sdt gnu++98 V2_uprobe Executing on host: g++ /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t.c -g -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/inclu= de -Wall -Wextra -Werror -DSTAP_SDT_V2 -std=3Dgnu++98 -x c++ -pedantic -= lm -o sdt.c.exe.6 (timeout =3D 300) spawn -ignore SIGHUP g++ /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt.c -g -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/incl= ude -Wall -Wextra -Werror -DSTAP_SDT_V2 -std=3Dgnu++98 -x c++ -pedantic -lm= -o sdt.c.exe.6=0D PASS: compiling sdt.c gnu++98 -pedantic V2_uprobe executing: stap -w /home/prasadkr/systemtap/testsuite/systemtap.base/sdt.st= p sdt.c.exe.6 -c ./sdt.c.exe.6 PASS: sdt gnu++98 -pedantic V2_uprobe Executing on host: g++ /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t.c -g -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/inclu= de -Wall -Wextra -Werror -DSTAP_SDT_V2 -std=3Dc++0x -x c++ -lm -o sdt.= c.exe.7 (timeout =3D 300) spawn -ignore SIGHUP g++ /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt.c -g -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/incl= ude -Wall -Wextra -Werror -DSTAP_SDT_V2 -std=3Dc++0x -x c++ -lm -o sdt.c.ex= e.7=0D PASS: compiling sdt.c c++0x V2_uprobe executing: stap -w /home/prasadkr/systemtap/testsuite/systemtap.base/sdt.st= p sdt.c.exe.7 -c ./sdt.c.exe.7 PASS: sdt c++0x V2_uprobe Executing on host: g++ /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t.c -g -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/inclu= de -Wall -Wextra -Werror -DSTAP_SDT_V2 -std=3Dc++0x -x c++ -pedantic -lm= -o sdt.c.exe.7 (timeout =3D 300) spawn -ignore SIGHUP g++ /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt.c -g -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/incl= ude -Wall -Wextra -Werror -DSTAP_SDT_V2 -std=3Dc++0x -x c++ -pedantic -lm -= o sdt.c.exe.7=0D PASS: compiling sdt.c c++0x -pedantic V2_uprobe executing: stap -w /home/prasadkr/systemtap/testsuite/systemtap.base/sdt.st= p sdt.c.exe.7 -c ./sdt.c.exe.7 PASS: sdt c++0x -pedantic V2_uprobe Executing on host: g++ /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t.c -g -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/inclu= de -Wall -Wextra -Werror -DSTAP_SDT_V2 -std=3Dgnu++0x -x c++ -lm -o sd= t.c.exe.8 (timeout =3D 300) spawn -ignore SIGHUP g++ /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt.c -g -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/incl= ude -Wall -Wextra -Werror -DSTAP_SDT_V2 -std=3Dgnu++0x -x c++ -lm -o sdt.c.= exe.8=0D PASS: compiling sdt.c gnu++0x V2_uprobe executing: stap -w /home/prasadkr/systemtap/testsuite/systemtap.base/sdt.st= p sdt.c.exe.8 -c ./sdt.c.exe.8 PASS: sdt gnu++0x V2_uprobe Executing on host: g++ /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t.c -g -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/inclu= de -Wall -Wextra -Werror -DSTAP_SDT_V2 -std=3Dgnu++0x -x c++ -pedantic -= lm -o sdt.c.exe.8 (timeout =3D 300) spawn -ignore SIGHUP g++ /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt.c -g -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/incl= ude -Wall -Wextra -Werror -DSTAP_SDT_V2 -std=3Dgnu++0x -x c++ -pedantic -lm= -o sdt.c.exe.8=0D PASS: compiling sdt.c gnu++0x -pedantic V2_uprobe executing: stap -w /home/prasadkr/systemtap/testsuite/systemtap.base/sdt.st= p sdt.c.exe.8 -c ./sdt.c.exe.8 PASS: sdt gnu++0x -pedantic V2_uprobe Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t.c -g -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/inclu= de -Wall -Wextra -Werror -DEXPERIMENTAL_KPROBE_SDT -O2 -lm -o sdt.c.exe.= 0 (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt.c -g -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/incl= ude -Wall -Wextra -Werror -DEXPERIMENTAL_KPROBE_SDT -O2 -lm -o sdt.c.exe.0= =0D PASS: compiling sdt.c -O2 V2_kprobe executing: stap -w /home/prasadkr/systemtap/testsuite/systemtap.base/sdt.st= p sdt.c.exe.0 -c ./sdt.c.exe.0 PASS: sdt -O2 V2_kprobe Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t.c -g -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/inclu= de -Wall -Wextra -Werror -DEXPERIMENTAL_KPROBE_SDT -O3 -lm -o sdt.c.exe.= 1 (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt.c -g -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/incl= ude -Wall -Wextra -Werror -DEXPERIMENTAL_KPROBE_SDT -O3 -lm -o sdt.c.exe.1= =0D PASS: compiling sdt.c -O3 V2_kprobe executing: stap -w /home/prasadkr/systemtap/testsuite/systemtap.base/sdt.st= p sdt.c.exe.1 -c ./sdt.c.exe.1 PASS: sdt -O3 V2_kprobe Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t.c -g -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/inclu= de -Wall -Wextra -Werror -DEXPERIMENTAL_KPROBE_SDT -std=3Dc89 -lm -o sdt= .c.exe.2 (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt.c -g -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/incl= ude -Wall -Wextra -Werror -DEXPERIMENTAL_KPROBE_SDT -std=3Dc89 -lm -o sdt.c= .exe.2=0D PASS: compiling sdt.c c89 V2_kprobe executing: stap -w /home/prasadkr/systemtap/testsuite/systemtap.base/sdt.st= p sdt.c.exe.2 -c ./sdt.c.exe.2 PASS: sdt c89 V2_kprobe Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t.c -g -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/inclu= de -Wall -Wextra -Werror -DEXPERIMENTAL_KPROBE_SDT -std=3Dc89 -pedantic -l= m -o sdt.c.exe.2 (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt.c -g -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/incl= ude -Wall -Wextra -Werror -DEXPERIMENTAL_KPROBE_SDT -std=3Dc89 -pedantic -l= m -o sdt.c.exe.2=0D PASS: compiling sdt.c c89 -pedantic V2_kprobe executing: stap -w /home/prasadkr/systemtap/testsuite/systemtap.base/sdt.st= p sdt.c.exe.2 -c ./sdt.c.exe.2 PASS: sdt c89 -pedantic V2_kprobe Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t.c -g -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/inclu= de -Wall -Wextra -Werror -DEXPERIMENTAL_KPROBE_SDT -std=3Dc99 -lm -o sdt= .c.exe.3 (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt.c -g -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/incl= ude -Wall -Wextra -Werror -DEXPERIMENTAL_KPROBE_SDT -std=3Dc99 -lm -o sdt.c= .exe.3=0D PASS: compiling sdt.c c99 V2_kprobe executing: stap -w /home/prasadkr/systemtap/testsuite/systemtap.base/sdt.st= p sdt.c.exe.3 -c ./sdt.c.exe.3 PASS: sdt c99 V2_kprobe Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t.c -g -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/inclu= de -Wall -Wextra -Werror -DEXPERIMENTAL_KPROBE_SDT -std=3Dc99 -pedantic -l= m -o sdt.c.exe.3 (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt.c -g -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/incl= ude -Wall -Wextra -Werror -DEXPERIMENTAL_KPROBE_SDT -std=3Dc99 -pedantic -l= m -o sdt.c.exe.3=0D PASS: compiling sdt.c c99 -pedantic V2_kprobe executing: stap -w /home/prasadkr/systemtap/testsuite/systemtap.base/sdt.st= p sdt.c.exe.3 -c ./sdt.c.exe.3 PASS: sdt c99 -pedantic V2_kprobe Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t.c -g -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/inclu= de -Wall -Wextra -Werror -DEXPERIMENTAL_KPROBE_SDT -std=3Dgnu99 -lm -o s= dt.c.exe.4 (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt.c -g -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/incl= ude -Wall -Wextra -Werror -DEXPERIMENTAL_KPROBE_SDT -std=3Dgnu99 -lm -o sdt= .c.exe.4=0D PASS: compiling sdt.c gnu99 V2_kprobe executing: stap -w /home/prasadkr/systemtap/testsuite/systemtap.base/sdt.st= p sdt.c.exe.4 -c ./sdt.c.exe.4 PASS: sdt gnu99 V2_kprobe Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t.c -g -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/inclu= de -Wall -Wextra -Werror -DEXPERIMENTAL_KPROBE_SDT -std=3Dgnu99 -pedantic = -lm -o sdt.c.exe.4 (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt.c -g -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/incl= ude -Wall -Wextra -Werror -DEXPERIMENTAL_KPROBE_SDT -std=3Dgnu99 -pedantic = -lm -o sdt.c.exe.4=0D PASS: compiling sdt.c gnu99 -pedantic V2_kprobe executing: stap -w /home/prasadkr/systemtap/testsuite/systemtap.base/sdt.st= p sdt.c.exe.4 -c ./sdt.c.exe.4 PASS: sdt gnu99 -pedantic V2_kprobe Executing on host: g++ /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t.c -g -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/inclu= de -Wall -Wextra -Werror -DEXPERIMENTAL_KPROBE_SDT -std=3Dc++98 -x c++ -= lm -o sdt.c.exe.5 (timeout =3D 300) spawn -ignore SIGHUP g++ /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt.c -g -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/incl= ude -Wall -Wextra -Werror -DEXPERIMENTAL_KPROBE_SDT -std=3Dc++98 -x c++ -lm= -o sdt.c.exe.5=0D PASS: compiling sdt.c c++98 V2_kprobe executing: stap -w /home/prasadkr/systemtap/testsuite/systemtap.base/sdt.st= p sdt.c.exe.5 -c ./sdt.c.exe.5 PASS: sdt c++98 V2_kprobe Executing on host: g++ /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t.c -g -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/inclu= de -Wall -Wextra -Werror -DEXPERIMENTAL_KPROBE_SDT -std=3Dc++98 -x c++ -pe= dantic -lm -o sdt.c.exe.5 (timeout =3D 300) spawn -ignore SIGHUP g++ /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt.c -g -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/incl= ude -Wall -Wextra -Werror -DEXPERIMENTAL_KPROBE_SDT -std=3Dc++98 -x c++ -pe= dantic -lm -o sdt.c.exe.5=0D PASS: compiling sdt.c c++98 -pedantic V2_kprobe executing: stap -w /home/prasadkr/systemtap/testsuite/systemtap.base/sdt.st= p sdt.c.exe.5 -c ./sdt.c.exe.5 PASS: sdt c++98 -pedantic V2_kprobe Executing on host: g++ /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t.c -g -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/inclu= de -Wall -Wextra -Werror -DEXPERIMENTAL_KPROBE_SDT -std=3Dgnu++98 -x c++ = -lm -o sdt.c.exe.6 (timeout =3D 300) spawn -ignore SIGHUP g++ /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt.c -g -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/incl= ude -Wall -Wextra -Werror -DEXPERIMENTAL_KPROBE_SDT -std=3Dgnu++98 -x c++ -= lm -o sdt.c.exe.6=0D PASS: compiling sdt.c gnu++98 V2_kprobe executing: stap -w /home/prasadkr/systemtap/testsuite/systemtap.base/sdt.st= p sdt.c.exe.6 -c ./sdt.c.exe.6 PASS: sdt gnu++98 V2_kprobe Executing on host: g++ /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t.c -g -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/inclu= de -Wall -Wextra -Werror -DEXPERIMENTAL_KPROBE_SDT -std=3Dgnu++98 -x c++ -= pedantic -lm -o sdt.c.exe.6 (timeout =3D 300) spawn -ignore SIGHUP g++ /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt.c -g -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/incl= ude -Wall -Wextra -Werror -DEXPERIMENTAL_KPROBE_SDT -std=3Dgnu++98 -x c++ -= pedantic -lm -o sdt.c.exe.6=0D PASS: compiling sdt.c gnu++98 -pedantic V2_kprobe executing: stap -w /home/prasadkr/systemtap/testsuite/systemtap.base/sdt.st= p sdt.c.exe.6 -c ./sdt.c.exe.6 PASS: sdt gnu++98 -pedantic V2_kprobe Executing on host: g++ /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t.c -g -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/inclu= de -Wall -Wextra -Werror -DEXPERIMENTAL_KPROBE_SDT -std=3Dc++0x -x c++ -= lm -o sdt.c.exe.7 (timeout =3D 300) spawn -ignore SIGHUP g++ /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt.c -g -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/incl= ude -Wall -Wextra -Werror -DEXPERIMENTAL_KPROBE_SDT -std=3Dc++0x -x c++ -lm= -o sdt.c.exe.7=0D PASS: compiling sdt.c c++0x V2_kprobe executing: stap -w /home/prasadkr/systemtap/testsuite/systemtap.base/sdt.st= p sdt.c.exe.7 -c ./sdt.c.exe.7 PASS: sdt c++0x V2_kprobe Executing on host: g++ /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t.c -g -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/inclu= de -Wall -Wextra -Werror -DEXPERIMENTAL_KPROBE_SDT -std=3Dc++0x -x c++ -pe= dantic -lm -o sdt.c.exe.7 (timeout =3D 300) spawn -ignore SIGHUP g++ /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt.c -g -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/incl= ude -Wall -Wextra -Werror -DEXPERIMENTAL_KPROBE_SDT -std=3Dc++0x -x c++ -pe= dantic -lm -o sdt.c.exe.7=0D PASS: compiling sdt.c c++0x -pedantic V2_kprobe executing: stap -w /home/prasadkr/systemtap/testsuite/systemtap.base/sdt.st= p sdt.c.exe.7 -c ./sdt.c.exe.7 PASS: sdt c++0x -pedantic V2_kprobe Executing on host: g++ /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t.c -g -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/inclu= de -Wall -Wextra -Werror -DEXPERIMENTAL_KPROBE_SDT -std=3Dgnu++0x -x c++ = -lm -o sdt.c.exe.8 (timeout =3D 300) spawn -ignore SIGHUP g++ /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt.c -g -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/incl= ude -Wall -Wextra -Werror -DEXPERIMENTAL_KPROBE_SDT -std=3Dgnu++0x -x c++ -= lm -o sdt.c.exe.8=0D PASS: compiling sdt.c gnu++0x V2_kprobe executing: stap -w /home/prasadkr/systemtap/testsuite/systemtap.base/sdt.st= p sdt.c.exe.8 -c ./sdt.c.exe.8 PASS: sdt gnu++0x V2_kprobe Executing on host: g++ /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t.c -g -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/inclu= de -Wall -Wextra -Werror -DEXPERIMENTAL_KPROBE_SDT -std=3Dgnu++0x -x c++ -= pedantic -lm -o sdt.c.exe.8 (timeout =3D 300) spawn -ignore SIGHUP g++ /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt.c -g -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/incl= ude -Wall -Wextra -Werror -DEXPERIMENTAL_KPROBE_SDT -std=3Dgnu++0x -x c++ -= pedantic -lm -o sdt.c.exe.8=0D PASS: compiling sdt.c gnu++0x -pedantic V2_kprobe executing: stap -w /home/prasadkr/systemtap/testsuite/systemtap.base/sdt.st= p sdt.c.exe.8 -c ./sdt.c.exe.8 PASS: sdt gnu++0x -pedantic V2_kprobe testcase /home/prasadkr/systemtap/testsuite/systemtap.base/sdt.exp complete= d in 228 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/sdt_misc.exp ... /usr/local/bin/dtrace -DSTAP_SDT_V1 --types -h -s /home/prasadkr/systemtap/= testsuite/systemtap.base/sdt_misc_.d /usr/local/bin/dtrace -DSTAP_SDT_V1 --types -G -s /home/prasadkr/systemtap/= testsuite/systemtap.base/sdt_misc_.d PASS: sdt_misc dtrace -DSTAP_SDT_V1 Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t_misc.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/inc= lude -Wall -Werror /home/prasadkr/systemtap/testsuite/sdt_misc_.o -I. -g -D= STAP_SDT_V1 -lm -o /home/prasadkr/systemtap/testsuite/sdt_misc_V1_uprobe= .x (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt_misc.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/in= clude -Wall -Werror /home/prasadkr/systemtap/testsuite/sdt_misc_.o -I. -g -= DSTAP_SDT_V1 -lm -o /home/prasadkr/systemtap/testsuite/sdt_misc_V1_uprobe.x= =0D PASS: sdt_misc compiling V1_uprobe spawn /usr/local/bin/stap -c /home/prasadkr/systemtap/testsuite/sdt_misc_V1= _uprobe.x /home/prasadkr/systemtap/testsuite/systemtap.base/sdt_misc.stp /h= ome/prasadkr/systemtap/testsuite/sdt_misc_V1_uprobe.x spawn /usr/local/bin/stap -c /home/prasadkr/systemtap/testsuite/sdt_misc_V1= _uprobe.x /home/prasadkr/systemtap/testsuite/systemtap.base/sdt_misc.stp /h= ome/prasadkr/systemtap/testsuite/sdt_misc_V1_uprobe.x=0D In test_probe_2 probe 0x2=0D In test_probe_2 probe 0x2=0D In test_probe_0 probe 0x3=0D In test_probe_3 probe 0x3 0x10000d28=0D In test_probe_4 dtrace probe 0xffffa2ae7e8=0D In test_probe_1 probe 0x0=0D PASS: sdt_misc V1_uprobe Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t_misc.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/inc= lude -Wall -Werror /home/prasadkr/systemtap/testsuite/sdt_misc_.o -I. -g -D= STAP_SDT_V1 -DLOOP -lm -o /home/prasadkr/systemtap/testsuite/sdt_misc_V1= _uprobe_loop.x (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt_misc.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/in= clude -Wall -Werror /home/prasadkr/systemtap/testsuite/sdt_misc_.o -I. -g -= DSTAP_SDT_V1 -DLOOP -lm -o /home/prasadkr/systemtap/testsuite/sdt_misc_V1_u= probe_loop.x=0D PASS: sdt_misc compiling V1_uprobe -DLOOP /home/prasadkr/systemtap/testsuite/sdt_misc_V1_uprobe_loop.x >| ,semclean 2= >&1 & TEST=3D$! ; /usr/local/bin/stap /home/prasadkr/systemtap/testsuite/s= ystemtap.base/sdt_misc.stp /home/prasadkr/systemtap/testsuite/sdt_misc_V1_u= probe_loop.x >| ,semout ; /usr/bin/kill -SIGINT $TEST spawn cat ,semout=0D In test_probe_2 probe 0x2=0D In test_probe_2 probe 0x2=0D In test_probe_0 probe 0x3=0D In test_probe_3 probe 0x3 0x10000dd0=0D In test_probe_4 dtrace probe 0xfffece71638=0D In test_probe_1 probe 0x0=0D PASS: sdt_misc V1_uprobe attach spawn cat ,semclean=0D PASS epilogue test_probe_0_semaphore=3D0=0D PASS epilogue test_probe_2_semaphore=3D0=0D PASS epilogue test_probe_3_semaphore=3D0=0D PASS epilogue test_probe_4_semaphore=3D0=0D PASS: sdt_misc V1_uprobe epilogue Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/in= clude -Wall -Werror -I. -g -DSTAP_SDT_V1 -O2 -m64 -lm -o sdt_types.x = (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/i= nclude -Wall -Werror -I. -g -DSTAP_SDT_V1 -O2 -m64 -lm -o sdt_types.x=0D PASS: sdt_misc compiling types V1_uprobe -O2=20 spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x # V1_uprobe -O2 spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_small_var")=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_bit_var")=0D Pass 2: analysis failed. Try again with another '--vp 01' option.=0D XFAIL: sdt_misc types types V1_uprobe -O2 Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/in= clude -Wall -Werror -I. -g -DSTAP_SDT_V1 -O3 -m64 -lm -o sdt_types.x = (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/i= nclude -Wall -Werror -I. -g -DSTAP_SDT_V1 -O3 -m64 -lm -o sdt_types.x=0D PASS: sdt_misc compiling types V1_uprobe -O3=20 spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x # V1_uprobe -O3 spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_small_var")=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_bit_var")=0D Pass 2: analysis failed. Try again with another '--vp 01' option.=0D XFAIL: sdt_misc types types V1_uprobe -O3 Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/in= clude -Wall -Werror -I. -g -DSTAP_SDT_V1 -std=3Dc89 -DNO_LONG_LONG -m64 -l= m -o sdt_types.x (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/i= nclude -Wall -Werror -I. -g -DSTAP_SDT_V1 -std=3Dc89 -DNO_LONG_LONG -m64 -l= m -o sdt_types.x=0D PASS: sdt_misc compiling types V1_uprobe c89=20 spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x # V1_uprobe c89 spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_small_var")=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_bit_var")=0D Pass 2: analysis failed. Try again with another '--vp 01' option.=0D XFAIL: sdt_misc types types V1_uprobe c89 Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/in= clude -Wall -Werror -I. -g -DSTAP_SDT_V1 -std=3Dc89 -pedantic -DNO_LONG_LON= G -m64 -lm -o sdt_types.x (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/i= nclude -Wall -Werror -I. -g -DSTAP_SDT_V1 -std=3Dc89 -pedantic -DNO_LONG_LO= NG -m64 -lm -o sdt_types.x=0D PASS: sdt_misc compiling types V1_uprobe c89 -pedantic spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x # V1_uprobe c89 spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_small_var")=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_bit_var")=0D Pass 2: analysis failed. Try again with another '--vp 01' option.=0D XFAIL: sdt_misc types types V1_uprobe c89 Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/in= clude -Wall -Werror -I. -g -DSTAP_SDT_V1 -std=3Dc99 -m64 -lm -o sdt_type= s.x (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/i= nclude -Wall -Werror -I. -g -DSTAP_SDT_V1 -std=3Dc99 -m64 -lm -o sdt_types.= x=0D PASS: sdt_misc compiling types V1_uprobe c99=20 spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x # V1_uprobe c99 spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_small_var")=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_bit_var")=0D Pass 2: analysis failed. Try again with another '--vp 01' option.=0D XFAIL: sdt_misc types types V1_uprobe c99 Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/in= clude -Wall -Werror -I. -g -DSTAP_SDT_V1 -std=3Dc99 -pedantic -m64 -lm -= o sdt_types.x (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/i= nclude -Wall -Werror -I. -g -DSTAP_SDT_V1 -std=3Dc99 -pedantic -m64 -lm -o = sdt_types.x=0D PASS: sdt_misc compiling types V1_uprobe c99 -pedantic spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x # V1_uprobe c99 spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_small_var")=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_bit_var")=0D Pass 2: analysis failed. Try again with another '--vp 01' option.=0D XFAIL: sdt_misc types types V1_uprobe c99 Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/in= clude -Wall -Werror -I. -g -DSTAP_SDT_V1 -std=3Dgnu99 -m64 -lm -o sdt_ty= pes.x (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/i= nclude -Wall -Werror -I. -g -DSTAP_SDT_V1 -std=3Dgnu99 -m64 -lm -o sdt_type= s.x=0D PASS: sdt_misc compiling types V1_uprobe gnu99=20 spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x # V1_uprobe gnu99 spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_small_var")=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_bit_var")=0D Pass 2: analysis failed. Try again with another '--vp 01' option.=0D XFAIL: sdt_misc types types V1_uprobe gnu99 Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/in= clude -Wall -Werror -I. -g -DSTAP_SDT_V1 -std=3Dgnu99 -pedantic -m64 -lm = -o sdt_types.x (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/i= nclude -Wall -Werror -I. -g -DSTAP_SDT_V1 -std=3Dgnu99 -pedantic -m64 -lm -= o sdt_types.x=0D PASS: sdt_misc compiling types V1_uprobe gnu99 -pedantic spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x # V1_uprobe gnu99 spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_small_var")=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_bit_var")=0D Pass 2: analysis failed. Try again with another '--vp 01' option.=0D XFAIL: sdt_misc types types V1_uprobe gnu99 Executing on host: g++ /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/in= clude -Wall -Werror -I. -g -DSTAP_SDT_V1 -std=3Dc++98 -x c++ -DNO_LONG_LON= G -m64 -lm -o sdt_types.x (timeout =3D 300) spawn -ignore SIGHUP g++ /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/i= nclude -Wall -Werror -I. -g -DSTAP_SDT_V1 -std=3Dc++98 -x c++ -DNO_LONG_LON= G -m64 -lm -o sdt_types.x=0D PASS: sdt_misc compiling types V1_uprobe c++98=20 spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x # V1_uprobe c++98 spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_small_var")=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_bit_var")=0D Pass 2: analysis failed. Try again with another '--vp 01' option.=0D XFAIL: sdt_misc types types V1_uprobe c++98 Executing on host: g++ /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/in= clude -Wall -Werror -I. -g -DSTAP_SDT_V1 -std=3Dc++98 -x c++ -pedantic -DN= O_LONG_LONG -m64 -lm -o sdt_types.x (timeout =3D 300) spawn -ignore SIGHUP g++ /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/i= nclude -Wall -Werror -I. -g -DSTAP_SDT_V1 -std=3Dc++98 -x c++ -pedantic -DN= O_LONG_LONG -m64 -lm -o sdt_types.x=0D PASS: sdt_misc compiling types V1_uprobe c++98 -pedantic spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x # V1_uprobe c++98 spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_small_var")=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_bit_var")=0D Pass 2: analysis failed. Try again with another '--vp 01' option.=0D XFAIL: sdt_misc types types V1_uprobe c++98 Executing on host: g++ /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/in= clude -Wall -Werror -I. -g -DSTAP_SDT_V1 -std=3Dgnu++98 -x c++ -DNO_LONG_L= ONG -m64 -lm -o sdt_types.x (timeout =3D 300) spawn -ignore SIGHUP g++ /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/i= nclude -Wall -Werror -I. -g -DSTAP_SDT_V1 -std=3Dgnu++98 -x c++ -DNO_LONG_L= ONG -m64 -lm -o sdt_types.x=0D PASS: sdt_misc compiling types V1_uprobe gnu++98=20 spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x # V1_uprobe gnu++98 spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_small_var")=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_bit_var")=0D Pass 2: analysis failed. Try again with another '--vp 01' option.=0D XFAIL: sdt_misc types types V1_uprobe gnu++98 Executing on host: g++ /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/in= clude -Wall -Werror -I. -g -DSTAP_SDT_V1 -std=3Dgnu++98 -x c++ -pedantic -= DNO_LONG_LONG -m64 -lm -o sdt_types.x (timeout =3D 300) spawn -ignore SIGHUP g++ /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/i= nclude -Wall -Werror -I. -g -DSTAP_SDT_V1 -std=3Dgnu++98 -x c++ -pedantic -= DNO_LONG_LONG -m64 -lm -o sdt_types.x=0D PASS: sdt_misc compiling types V1_uprobe gnu++98 -pedantic spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x # V1_uprobe gnu++98 spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_small_var")=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_bit_var")=0D Pass 2: analysis failed. Try again with another '--vp 01' option.=0D XFAIL: sdt_misc types types V1_uprobe gnu++98 Executing on host: g++ /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/in= clude -Wall -Werror -I. -g -DSTAP_SDT_V1 -std=3Dc++0x -x c++ -m64 -lm = -o sdt_types.x (timeout =3D 300) spawn -ignore SIGHUP g++ /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/i= nclude -Wall -Werror -I. -g -DSTAP_SDT_V1 -std=3Dc++0x -x c++ -m64 -lm -o s= dt_types.x=0D PASS: sdt_misc compiling types V1_uprobe c++0x=20 spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x # V1_uprobe c++0x spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_small_var")=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_bit_var")=0D Pass 2: analysis failed. Try again with another '--vp 01' option.=0D XFAIL: sdt_misc types types V1_uprobe c++0x Executing on host: g++ /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/in= clude -Wall -Werror -I. -g -DSTAP_SDT_V1 -std=3Dc++0x -x c++ -pedantic -m6= 4 -lm -o sdt_types.x (timeout =3D 300) spawn -ignore SIGHUP g++ /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/i= nclude -Wall -Werror -I. -g -DSTAP_SDT_V1 -std=3Dc++0x -x c++ -pedantic -m6= 4 -lm -o sdt_types.x=0D PASS: sdt_misc compiling types V1_uprobe c++0x -pedantic spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x # V1_uprobe c++0x spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_small_var")=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_bit_var")=0D Pass 2: analysis failed. Try again with another '--vp 01' option.=0D XFAIL: sdt_misc types types V1_uprobe c++0x Executing on host: g++ /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/in= clude -Wall -Werror -I. -g -DSTAP_SDT_V1 -std=3Dgnu++0x -x c++ -m64 -lm = -o sdt_types.x (timeout =3D 300) spawn -ignore SIGHUP g++ /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/i= nclude -Wall -Werror -I. -g -DSTAP_SDT_V1 -std=3Dgnu++0x -x c++ -m64 -lm -o= sdt_types.x=0D PASS: sdt_misc compiling types V1_uprobe gnu++0x=20 spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x # V1_uprobe gnu++0x spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_small_var")=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_bit_var")=0D Pass 2: analysis failed. Try again with another '--vp 01' option.=0D XFAIL: sdt_misc types types V1_uprobe gnu++0x Executing on host: g++ /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/in= clude -Wall -Werror -I. -g -DSTAP_SDT_V1 -std=3Dgnu++0x -x c++ -pedantic -= m64 -lm -o sdt_types.x (timeout =3D 300) spawn -ignore SIGHUP g++ /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/i= nclude -Wall -Werror -I. -g -DSTAP_SDT_V1 -std=3Dgnu++0x -x c++ -pedantic -= m64 -lm -o sdt_types.x=0D PASS: sdt_misc compiling types V1_uprobe gnu++0x -pedantic spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x # V1_uprobe gnu++0x spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_small_var")=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_bit_var")=0D Pass 2: analysis failed. Try again with another '--vp 01' option.=0D XFAIL: sdt_misc types types V1_uprobe gnu++0x Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t_misc.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/inc= lude -Wall -Werror /home/prasadkr/systemtap/testsuite/sdt_misc_.o -I. -g -D= STAP_SDT_V1 -shared -fPIC -DNO_MAIN -lm -o /home/prasadkr/systemtap/test= suite/libsdt_V1_uprobe.so (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt_misc.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/in= clude -Wall -Werror /home/prasadkr/systemtap/testsuite/sdt_misc_.o -I. -g -= DSTAP_SDT_V1 -shared -fPIC -DNO_MAIN -lm -o /home/prasadkr/systemtap/testsu= ite/libsdt_V1_uprobe.so=0D Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t_misc.c -Wl,-rpath,/home/prasadkr/systemtap/testsuite -L/home/prasadkr/sy= stemtap/testsuite -lsdt_V1_uprobe -DONLY_MAIN -lm -o /home/prasadkr/syst= emtap/testsuite/sdt_misc_V1_uprobe_shared.x (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt_misc.c -Wl,-rpath,/home/prasadkr/systemtap/testsuite -L/home/prasadkr/s= ystemtap/testsuite -lsdt_V1_uprobe -DONLY_MAIN -lm -o /home/prasadkr/system= tap/testsuite/sdt_misc_V1_uprobe_shared.x=0D PASS: sdt_misc compiling -shared V1_uprobe spawn /usr/local/bin/stap -c /home/prasadkr/systemtap/testsuite/sdt_misc_V1= _uprobe_shared.x /home/prasadkr/systemtap/testsuite/systemtap.base/sdt_misc= .stp /home/prasadkr/systemtap/testsuite/sdt_misc_V1_uprobe_shared.x /home/p= rasadkr/systemtap/testsuite/libsdt_V1_uprobe.so spawn /usr/local/bin/stap -c /home/prasadkr/systemtap/testsuite/sdt_misc_V1= _uprobe_shared.x /home/prasadkr/systemtap/testsuite/systemtap.base/sdt_misc= .stp /home/prasadkr/systemtap/testsuite/sdt_misc_V1_uprobe_shared.x /home/p= rasadkr/systemtap/testsuite/libsdt_V1_uprobe.so=0D In test_probe_2 probe 0x2=0D In test_probe_2 probe 0x2=0D In test_probe_0 probe 0x3=0D In test_probe_3 probe 0x3 0x10000ae0=0D In test_probe_4 dtrace probe 0xfffc99f7718=0D In test_probe_1 probe 0x0=0D PASS: sdt_misc shared V1_uprobe Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t_misc.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/inc= lude -Wall -Werror /home/prasadkr/systemtap/testsuite/sdt_misc_.o -I. -g -D= STAP_SDT_V1 -shared -fPIC -DNO_MAIN -DLOOP -lm -o /home/prasadkr/systemt= ap/testsuite/libsdt_V1_uprobe_loop.so (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt_misc.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/in= clude -Wall -Werror /home/prasadkr/systemtap/testsuite/sdt_misc_.o -I. -g -= DSTAP_SDT_V1 -shared -fPIC -DNO_MAIN -DLOOP -lm -o /home/prasadkr/systemtap= /testsuite/libsdt_V1_uprobe_loop.so=0D Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t_misc.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/inc= lude -I. -g -DSTAP_SDT_V1 -DLOOP -DONLY_MAIN -Wl,-rpath,/home/prasadkr/syst= emtap/testsuite -L/home/prasadkr/systemtap/testsuite -lsdt_V1_uprobe_loop = -lm -o /home/prasadkr/systemtap/testsuite/sdt_misc_V1_uprobe_loop_shared.= x (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt_misc.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/in= clude -I. -g -DSTAP_SDT_V1 -DLOOP -DONLY_MAIN -Wl,-rpath,/home/prasadkr/sys= temtap/testsuite -L/home/prasadkr/systemtap/testsuite -lsdt_V1_uprobe_loop = -lm -o /home/prasadkr/systemtap/testsuite/sdt_misc_V1_uprobe_loop_shared.x= =0D PASS: sdt_misc compiling V1_uprobe -DLOOP /home/prasadkr/systemtap/testsuite/sdt_misc_V1_uprobe_loop_shared.x >| ,sem= clean 2>&1 & TEST=3D$! ; /usr/local/bin/stap /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_misc.stp /home/prasadkr/systemtap/testsuite/sdt_mi= sc_V1_uprobe_loop_shared.x /home/prasadkr/systemtap/testsuite/libsdt_V1_upr= obe_loop.so >| ,semout ; /usr/bin/kill -SIGINT $TEST spawn cat ,semout=0D In test_probe_2 probe 0x2=0D In test_probe_2 probe 0x2=0D In test_probe_0 probe 0x3=0D In test_probe_3 probe 0x3 0x10000b38=0D In test_probe_4 dtrace probe 0xfffebd64c98=0D In test_probe_1 probe 0x0=0D PASS: sdt_misc V1_uprobe shared attach spawn cat ,semclean=0D PASS epilogue test_probe_0_semaphore=3D0=0D PASS epilogue test_probe_2_semaphore=3D0=0D PASS epilogue test_probe_3_semaphore=3D0=0D PASS epilogue test_probe_4_semaphore=3D0=0D PASS: sdt_misc V1_uprobe shared shared epilogue spawn /usr/local/bin/stap -L "process("./sdt_types.x").mark("*") spawn /usr/local/bin/stap -L process("./sdt_types.x").mark("*")=0D process("./sdt_types.x").mark("arr_char") $arg1:char* $char_var:char $const= _char_var:char const $volatile_char_var:char volatile $ptr_char_var:char* $= ptr_const_char_var:char const* $char_ptr_const_var:char* const $ptr_volatil= e_char_var:char volatile* $char_ptr_volatile_var:char* volatile $short_int_= var:short int $const_short_int_var:short int const $volatile_short_int_var:= short int volatile $ptr_short_int_var:short int* $ptr_const_short_int_var:s= hort int const* $short_int_ptr_const_var:short int* const $ptr_volatile_sho= rt_int_var:short int volatile* $short_int_ptr_volatile_var:short int* volat= ile $short_uint_var:short unsigned int $int_var:int $const_int_var:int cons= t $volatile_int_var:int volatile $ptr_int_var:int* $ptr_const_int_var:int c= onst* $int_ptr_const_var:int* const $ptr_volatile_int_var:int volatile* $in= t_ptr_volatile_var:int* volatile $uint_var:unsigned int $long_int_var:long = int $const_long_int_var:long int const $volatile_long_int_var:long int vola= tile $ptr_long_int_var:long int* $ptr_const_long_int_var:long int const* $l= ong_int_ptr_const_var:long int* const $ptr_volatile_long_int_var:long int v= olatile* $long_int_ptr_volatile_var:long int* volatile $long_long_int_var:l= ong long int $const_long_long_int_var:long long int const $volatile_long_lo= ng_int_var:long long int volatile $ptr_long_long_int_var:long long int* $pt= r_const_long_long_int_var:long long int const* $long_long_int_ptr_const_var= :long long int* const $ptr_volatile_long_long_int_var:long long int volatil= e* $long_long_int_ptr_volatile_var:long long int* volatile $arr_char:char[]= $bitfields_a_var:struct {...} $bitfields_b_var:struct {...} $argc:int $arg= v:char**=0D process("./sdt_types.x").mark("bitfields_a_var") $arg1:int $arg2:int $arg3:= char $arg4:int $arg5:int $arg6:char $arg7:int $arg8:int $char_var:char $con= st_char_var:char const $volatile_char_var:char volatile $ptr_char_var:char*= $ptr_const_char_var:char const* $char_ptr_const_var:char* const $ptr_volat= ile_char_var:char volatile* $char_ptr_volatile_var:char* volatile $short_in= t_var:short int $const_short_int_var:short int const $volatile_short_int_va= r:short int volatile $ptr_short_int_var:short int* $ptr_const_short_int_var= :short int const* $short_int_ptr_const_var:short int* const $ptr_volatile_s= hort_int_var:short int volatile* $short_int_ptr_volatile_var:short int* vol= atile $short_uint_var:short unsigned int $int_var:int $const_int_var:int co= nst $volatile_int_var:int volatile $ptr_int_var:int* $ptr_const_int_var:int= const* $int_ptr_const_var:int* const $ptr_volatile_int_var:int volatile* $= int_ptr_volatile_var:int* volatile $uint_var:unsigned int $long_int_var:lon= g int $const_long_int_var:long int const $volatile_long_int_var:long int vo= latile $ptr_long_int_var:long int* $ptr_const_long_int_var:long int const* = $long_int_ptr_const_var:long int* const $ptr_volatile_long_int_var:long int= volatile* $long_int_ptr_volatile_var:long int* volatile $long_long_int_var= :long long int $const_long_long_int_var:long long int const $volatile_long_= long_int_var:long long int volatile $ptr_long_long_int_var:long long int* $= ptr_const_long_long_int_var:long long int const* $long_long_int_ptr_const_v= ar:long long int* const $ptr_volatile_long_long_int_var:long long int volat= ile* $long_long_int_ptr_volatile_var:long long int* volatile $arr_char:char= [] $bitfields_a_var:struct {...} $bitfields_b_var:struct {...} $argc:int $a= rgv:char**=0D process("./sdt_types.x").mark("bitfields_b_var") $arg1:unsigned char $arg2:= int $arg3:int $arg4:int $arg5:int $arg6:int $arg7:int $arg8:int $arg9:int $= arg10:char $char_var:char $const_char_var:char const $volatile_char_var:cha= r volatile $ptr_char_var:char* $ptr_const_char_var:char const* $char_ptr_co= nst_var:char* const $ptr_volatile_char_var:char volatile* $char_ptr_volatil= e_var:char* volatile $short_int_var:short int $const_short_int_var:short in= t const $volatile_short_int_var:short int volatile $ptr_short_int_var:short= int* $ptr_const_short_int_var:short int const* $short_int_ptr_const_var:sh= ort int* const $ptr_volatile_short_int_var:short int volatile* $short_int_p= tr_volatile_var:short int* volatile $short_uint_var:short unsigned int $int= _var:int $const_int_var:int const $volatile_int_var:int volatile $ptr_int_v= ar:int* $ptr_const_int_var:int const* $int_ptr_const_var:int* const $ptr_vo= latile_int_var:int volatile* $int_ptr_volatile_var:int* volatile $uint_var:= unsigned int $long_int_var:long int $const_long_int_var:long int const $vol= atile_long_int_var:long int volatile $ptr_long_int_var:long int* $ptr_const= _long_int_var:long int const* $long_int_ptr_const_var:long int* const $ptr_= volatile_long_int_var:long int volatile* $long_int_ptr_volatile_var:long in= t* volatile $long_long_int_var:long long int $const_long_long_int_var:long = long int const $volatile_long_long_int_var:long long int volatile $ptr_long= _long_int_var:long long int* $ptr_const_long_long_int_var:long long int con= st* $long_long_int_ptr_const_var:long long int* const $ptr_volatile_long_lo= ng_int_var:long long int volatile* $long_long_int_ptr_volatile_var:long lon= g int* volatile $arr_char:char[] $bitfields_a_var:struct {...} $bitfields_b= _var:struct {...} $argc:int $argv:char**=0D process("./sdt_types.x").mark("char_ptr_const_var") $arg1:char* const $arg2= :char* $char_var:char $const_char_var:char const $volatile_char_var:char vo= latile $ptr_char_var:char* $ptr_const_char_var:char const* $char_ptr_const_= var:char* const $ptr_volatile_char_var:char volatile* $char_ptr_volatile_va= r:char* volatile $short_int_var:short int $const_short_int_var:short int co= nst $volatile_short_int_var:short int volatile $ptr_short_int_var:short int= * $ptr_const_short_int_var:short int const* $short_int_ptr_const_var:short = int* const $ptr_volatile_short_int_var:short int volatile* $short_int_ptr_v= olatile_var:short int* volatile $short_uint_var:short unsigned int $int_var= :int $const_int_var:int const $volatile_int_var:int volatile $ptr_int_var:i= nt* $ptr_const_int_var:int const* $int_ptr_const_var:int* const $ptr_volati= le_int_var:int volatile* $int_ptr_volatile_var:int* volatile $uint_var:unsi= gned int $long_int_var:long int $const_long_int_var:long int const $volatil= e_long_int_var:long int volatile $ptr_long_int_var:long int* $ptr_const_lon= g_int_var:long int const* $long_int_ptr_const_var:long int* const $ptr_vola= tile_long_int_var:long int volatile* $long_int_ptr_volatile_var:long int* v= olatile $long_long_int_var:long long int $const_long_long_int_var:long long= int const $volatile_long_long_int_var:long long int volatile $ptr_long_lon= g_int_var:long long int* $ptr_const_long_long_int_var:long long int const* = $long_long_int_ptr_const_var:long long int* const $ptr_volatile_long_long_i= nt_var:long long int volatile* $long_long_int_ptr_volatile_var:long long in= t* volatile $arr_char:char[] $bitfields_a_var:struct {...} $bitfields_b_var= :struct {...} $argc:int $argv:char**=0D process("./sdt_types.x").mark("char_ptr_volatile_var") $arg1:char* volatile= $arg2:char* $char_var:char $const_char_var:char const $volatile_char_var:c= har volatile $ptr_char_var:char* $ptr_const_char_var:char const* $char_ptr_= const_var:char* const $ptr_volatile_char_var:char volatile* $char_ptr_volat= ile_var:char* volatile $short_int_var:short int $const_short_int_var:short = int const $volatile_short_int_var:short int volatile $ptr_short_int_var:sho= rt int* $ptr_const_short_int_var:short int const* $short_int_ptr_const_var:= short int* const $ptr_volatile_short_int_var:short int volatile* $short_int= _ptr_volatile_var:short int* volatile $short_uint_var:short unsigned int $i= nt_var:int $const_int_var:int const $volatile_int_var:int volatile $ptr_int= _var:int* $ptr_const_int_var:int const* $int_ptr_const_var:int* const $ptr_= volatile_int_var:int volatile* $int_ptr_volatile_var:int* volatile $uint_va= r:unsigned int $long_int_var:long int $const_long_int_var:long int const $v= olatile_long_int_var:long int volatile $ptr_long_int_var:long int* $ptr_con= st_long_int_var:long int const* $long_int_ptr_const_var:long int* const $pt= r_volatile_long_int_var:long int volatile* $long_int_ptr_volatile_var:long = int* volatile $long_long_int_var:long long int $const_long_long_int_var:lon= g long int const $volatile_long_long_int_var:long long int volatile $ptr_lo= ng_long_int_var:long long int* $ptr_const_long_long_int_var:long long int c= onst* $long_long_int_ptr_const_var:long long int* const $ptr_volatile_long_= long_int_var:long long int volatile* $long_long_int_ptr_volatile_var:long l= ong int* volatile $arr_char:char[] $bitfields_a_var:struct {...} $bitfields= _b_var:struct {...} $argc:int $argv:char**=0D process("./sdt_types.x").mark("char_var") $arg1:char $char_var:char $const_= char_var:char const $volatile_char_var:char volatile $ptr_char_var:char* $p= tr_const_char_var:char const* $char_ptr_const_var:char* const $ptr_volatile= _char_var:char volatile* $char_ptr_volatile_var:char* volatile $short_int_v= ar:short int $const_short_int_var:short int const $volatile_short_int_var:s= hort int volatile $ptr_short_int_var:short int* $ptr_const_short_int_var:sh= ort int const* $short_int_ptr_const_var:short int* const $ptr_volatile_shor= t_int_var:short int volatile* $short_int_ptr_volatile_var:short int* volati= le $short_uint_var:short unsigned int $int_var:int $const_int_var:int const= $volatile_int_var:int volatile $ptr_int_var:int* $ptr_const_int_var:int co= nst* $int_ptr_const_var:int* const $ptr_volatile_int_var:int volatile* $int= _ptr_volatile_var:int* volatile $uint_var:unsigned int $long_int_var:long i= nt $const_long_int_var:long int const $volatile_long_int_var:long int volat= ile $ptr_long_int_var:long int* $ptr_const_long_int_var:long int const* $lo= ng_int_ptr_const_var:long int* const $ptr_volatile_long_int_var:long int vo= latile* $long_int_ptr_volatile_var:long int* volatile $long_long_int_var:lo= ng long int $const_long_long_int_var:long long int const $volatile_long_lon= g_int_var:long long int volatile $ptr_long_long_int_var:long long int* $ptr= _const_long_long_int_var:long long int const* $long_long_int_ptr_const_var:= long long int* const $ptr_volatile_long_long_int_var:long long int volatile= * $long_long_int_ptr_volatile_var:long long int* volatile $arr_char:char[] = $bitfields_a_var:struct {...} $bitfields_b_var:struct {...} $argc:int $argv= :char**=0D process("./sdt_types.x").mark("const_char_var") $arg1:char const $char_var:= char $const_char_var:char const $volatile_char_var:char volatile $ptr_char_= var:char* $ptr_const_char_var:char const* $char_ptr_const_var:char* const $= ptr_volatile_char_var:char volatile* $char_ptr_volatile_var:char* volatile = $short_int_var:short int $const_short_int_var:short int const $volatile_sho= rt_int_var:short int volatile $ptr_short_int_var:short int* $ptr_const_shor= t_int_var:short int const* $short_int_ptr_const_var:short int* const $ptr_v= olatile_short_int_var:short int volatile* $short_int_ptr_volatile_var:short= int* volatile $short_uint_var:short unsigned int $int_var:int $const_int_v= ar:int const $volatile_int_var:int volatile $ptr_int_var:int* $ptr_const_in= t_var:int const* $int_ptr_const_var:int* const $ptr_volatile_int_var:int vo= latile* $int_ptr_volatile_var:int* volatile $uint_var:unsigned int $long_in= t_var:long int $const_long_int_var:long int const $volatile_long_int_var:lo= ng int volatile $ptr_long_int_var:long int* $ptr_const_long_int_var:long in= t const* $long_int_ptr_const_var:long int* const $ptr_volatile_long_int_var= :long int volatile* $long_int_ptr_volatile_var:long int* volatile $long_lon= g_int_var:long long int $const_long_long_int_var:long long int const $volat= ile_long_long_int_var:long long int volatile $ptr_long_long_int_var:long lo= ng int* $ptr_const_long_long_int_var:long long int const* $long_long_int_pt= r_const_var:long long int* const $ptr_volatile_long_long_int_var:long long = int volatile* $long_long_int_ptr_volatile_var:long long int* volatile $arr_= char:char[] $bitfields_a_var:struct {...} $bitfields_b_var:struct {...} $ar= gc:int $argv:char**=0D process("./sdt_types.x").mark("const_int_var") $arg1:int const $char_var:ch= ar $const_char_var:char const $volatile_char_var:char volatile $ptr_char_va= r:char* $ptr_const_char_var:char const* $char_ptr_const_var:char* const $pt= r_volatile_char_var:char volatile* $char_ptr_volatile_var:char* volatile $s= hort_int_var:short int $const_short_int_var:short int const $volatile_short= _int_var:short int volatile $ptr_short_int_var:short int* $ptr_const_short_= int_var:short int const* $short_int_ptr_const_var:short int* const $ptr_vol= atile_short_int_var:short int volatile* $short_int_ptr_volatile_var:short i= nt* volatile $short_uint_var:short unsigned int $int_var:int $const_int_var= :int const $volatile_int_var:int volatile $ptr_int_var:int* $ptr_const_int_= var:int const* $int_ptr_const_var:int* const $ptr_volatile_int_var:int vola= tile* $int_ptr_volatile_var:int* volatile $uint_var:unsigned int $long_int_= var:long int $const_long_int_var:long int const $volatile_long_int_var:long= int volatile $ptr_long_int_var:long int* $ptr_const_long_int_var:long int = const* $long_int_ptr_const_var:long int* const $ptr_volatile_long_int_var:l= ong int volatile* $long_int_ptr_volatile_var:long int* volatile $long_long_= int_var:long long int $const_long_long_int_var:long long int const $volatil= e_long_long_int_var:long long int volatile $ptr_long_long_int_var:long long= int* $ptr_const_long_long_int_var:long long int const* $long_long_int_ptr_= const_var:long long int* const $ptr_volatile_long_long_int_var:long long in= t volatile* $long_long_int_ptr_volatile_var:long long int* volatile $arr_ch= ar:char[] $bitfields_a_var:struct {...} $bitfields_b_var:struct {...} $argc= :int $argv:char**=0D process("./sdt_types.x").mark("const_long_int_var") $arg1:long int const $c= har_var:char $const_char_var:char const $volatile_char_var:char volatile $p= tr_char_var:char* $ptr_const_char_var:char const* $char_ptr_const_var:char*= const $ptr_volatile_char_var:char volatile* $char_ptr_volatile_var:char* v= olatile $short_int_var:short int $const_short_int_var:short int const $vola= tile_short_int_var:short int volatile $ptr_short_int_var:short int* $ptr_co= nst_short_int_var:short int const* $short_int_ptr_const_var:short int* cons= t $ptr_volatile_short_int_var:short int volatile* $short_int_ptr_volatile_v= ar:short int* volatile $short_uint_var:short unsigned int $int_var:int $con= st_int_var:int const $volatile_int_var:int volatile $ptr_int_var:int* $ptr_= const_int_var:int const* $int_ptr_const_var:int* const $ptr_volatile_int_va= r:int volatile* $int_ptr_volatile_var:int* volatile $uint_var:unsigned int = $long_int_var:long int $const_long_int_var:long int const $volatile_long_in= t_var:long int volatile $ptr_long_int_var:long int* $ptr_const_long_int_var= :long int const* $long_int_ptr_const_var:long int* const $ptr_volatile_long= _int_var:long int volatile* $long_int_ptr_volatile_var:long int* volatile $= long_long_int_var:long long int $const_long_long_int_var:long long int cons= t $volatile_long_long_int_var:long long int volatile $ptr_long_long_int_var= :long long int* $ptr_const_long_long_int_var:long long int const* $long_lon= g_int_ptr_const_var:long long int* const $ptr_volatile_long_long_int_var:lo= ng long int volatile* $long_long_int_ptr_volatile_var:long long int* volati= le $arr_char:char[] $bitfields_a_var:struct {...} $bitfields_b_var:struct {= ...} $argc:int $argv:char**=0D process("./sdt_types.x").mark("const_long_long_int_var") $arg1:long long in= t const $char_var:char $const_char_var:char const $volatile_char_var:char v= olatile $ptr_char_var:char* $ptr_const_char_var:char const* $char_ptr_const= _var:char* const $ptr_volatile_char_var:char volatile* $char_ptr_volatile_v= ar:char* volatile $short_int_var:short int $const_short_int_var:short int c= onst $volatile_short_int_var:short int volatile $ptr_short_int_var:short in= t* $ptr_const_short_int_var:short int const* $short_int_ptr_const_var:short= int* const $ptr_volatile_short_int_var:short int volatile* $short_int_ptr_= volatile_var:short int* volatile $short_uint_var:short unsigned int $int_va= r:int $const_int_var:int const $volatile_int_var:int volatile $ptr_int_var:= int* $ptr_const_int_var:int const* $int_ptr_const_var:int* const $ptr_volat= ile_int_var:int volatile* $int_ptr_volatile_var:int* volatile $uint_var:uns= igned int $long_int_var:long int $const_long_int_var:long int const $volati= le_long_int_var:long int volatile $ptr_long_int_var:long int* $ptr_const_lo= ng_int_var:long int const* $long_int_ptr_const_var:long int* const $ptr_vol= atile_long_int_var:long int volatile* $long_int_ptr_volatile_var:long int* = volatile $long_long_int_var:long long int $const_long_long_int_var:long lon= g int const $volatile_long_long_int_var:long long int volatile $ptr_long_lo= ng_int_var:long long int* $ptr_const_long_long_int_var:long long int const*= $long_long_int_ptr_const_var:long long int* const $ptr_volatile_long_long_= int_var:long long int volatile* $long_long_int_ptr_volatile_var:long long i= nt* volatile $arr_char:char[] $bitfields_a_var:struct {...} $bitfields_b_va= r:struct {...} $argc:int $argv:char**=0D process("./sdt_types.x").mark("const_short_int_var") $arg1:short int const = $char_var:char $const_char_var:char const $volatile_char_var:char volatile = $ptr_char_var:char* $ptr_const_char_var:char const* $char_ptr_const_var:cha= r* const $ptr_volatile_char_var:char volatile* $char_ptr_volatile_var:char*= volatile $short_int_var:short int $const_short_int_var:short int const $vo= latile_short_int_var:short int volatile $ptr_short_int_var:short int* $ptr_= const_short_int_var:short int const* $short_int_ptr_const_var:short int* co= nst $ptr_volatile_short_int_var:short int volatile* $short_int_ptr_volatile= _var:short int* volatile $short_uint_var:short unsigned int $int_var:int $c= onst_int_var:int const $volatile_int_var:int volatile $ptr_int_var:int* $pt= r_const_int_var:int const* $int_ptr_const_var:int* const $ptr_volatile_int_= var:int volatile* $int_ptr_volatile_var:int* volatile $uint_var:unsigned in= t $long_int_var:long int $const_long_int_var:long int const $volatile_long_= int_var:long int volatile $ptr_long_int_var:long int* $ptr_const_long_int_v= ar:long int const* $long_int_ptr_const_var:long int* const $ptr_volatile_lo= ng_int_var:long int volatile* $long_int_ptr_volatile_var:long int* volatile= $long_long_int_var:long long int $const_long_long_int_var:long long int co= nst $volatile_long_long_int_var:long long int volatile $ptr_long_long_int_v= ar:long long int* $ptr_const_long_long_int_var:long long int const* $long_l= ong_int_ptr_const_var:long long int* const $ptr_volatile_long_long_int_var:= long long int volatile* $long_long_int_ptr_volatile_var:long long int* vola= tile $arr_char:char[] $bitfields_a_var:struct {...} $bitfields_b_var:struct= {...} $argc:int $argv:char**=0D process("./sdt_types.x").mark("constants") $arg1:int $arg2:char $arg3:char[= ] const $char_var:char $const_char_var:char const $volatile_char_var:char v= olatile $ptr_char_var:char* $ptr_const_char_var:char const* $char_ptr_const= _var:char* const $ptr_volatile_char_var:char volatile* $char_ptr_volatile_v= ar:char* volatile $short_int_var:short int $const_short_int_var:short int c= onst $volatile_short_int_var:short int volatile $ptr_short_int_var:short in= t* $ptr_const_short_int_var:short int const* $short_int_ptr_const_var:short= int* const $ptr_volatile_short_int_var:short int volatile* $short_int_ptr_= volatile_var:short int* volatile $short_uint_var:short unsigned int $int_va= r:int $const_int_var:int const $volatile_int_var:int volatile $ptr_int_var:= int* $ptr_const_int_var:int const* $int_ptr_const_var:int* const $ptr_volat= ile_int_var:int volatile* $int_ptr_volatile_var:int* volatile $uint_var:uns= igned int $long_int_var:long int $const_long_int_var:long int const $volati= le_long_int_var:long int volatile $ptr_long_int_var:long int* $ptr_const_lo= ng_int_var:long int const* $long_int_ptr_const_var:long int* const $ptr_vol= atile_long_int_var:long int volatile* $long_int_ptr_volatile_var:long int* = volatile $long_long_int_var:long long int $const_long_long_int_var:long lon= g int const $volatile_long_long_int_var:long long int volatile $ptr_long_lo= ng_int_var:long long int* $ptr_const_long_long_int_var:long long int const*= $long_long_int_ptr_const_var:long long int* const $ptr_volatile_long_long_= int_var:long long int volatile* $long_long_int_ptr_volatile_var:long long i= nt* volatile $arr_char:char[] $bitfields_a_var:struct {...} $bitfields_b_va= r:struct {...} $argc:int $argv:char**=0D process("./sdt_types.x").mark("int_ptr_const_var") $arg1:int* const $arg2:i= nt* $char_var:char $const_char_var:char const $volatile_char_var:char volat= ile $ptr_char_var:char* $ptr_const_char_var:char const* $char_ptr_const_var= :char* const $ptr_volatile_char_var:char volatile* $char_ptr_volatile_var:c= har* volatile $short_int_var:short int $const_short_int_var:short int const= $volatile_short_int_var:short int volatile $ptr_short_int_var:short int* $= ptr_const_short_int_var:short int const* $short_int_ptr_const_var:short int= * const $ptr_volatile_short_int_var:short int volatile* $short_int_ptr_vola= tile_var:short int* volatile $short_uint_var:short unsigned int $int_var:in= t $const_int_var:int const $volatile_int_var:int volatile $ptr_int_var:int*= $ptr_const_int_var:int const* $int_ptr_const_var:int* const $ptr_volatile_= int_var:int volatile* $int_ptr_volatile_var:int* volatile $uint_var:unsigne= d int $long_int_var:long int $const_long_int_var:long int const $volatile_l= ong_int_var:long int volatile $ptr_long_int_var:long int* $ptr_const_long_i= nt_var:long int const* $long_int_ptr_const_var:long int* const $ptr_volatil= e_long_int_var:long int volatile* $long_int_ptr_volatile_var:long int* vola= tile $long_long_int_var:long long int $const_long_long_int_var:long long in= t const $volatile_long_long_int_var:long long int volatile $ptr_long_long_i= nt_var:long long int* $ptr_const_long_long_int_var:long long int const* $lo= ng_long_int_ptr_const_var:long long int* const $ptr_volatile_long_long_int_= var:long long int volatile* $long_long_int_ptr_volatile_var:long long int* = volatile $arr_char:char[] $bitfields_a_var:struct {...} $bitfields_b_var:st= ruct {...} $argc:int $argv:char**=0D process("./sdt_types.x").mark("int_ptr_volatile_var") $arg1:int* volatile $= arg2:int* $char_var:char $const_char_var:char const $volatile_char_var:char= volatile $ptr_char_var:char* $ptr_const_char_var:char const* $char_ptr_con= st_var:char* const $ptr_volatile_char_var:char volatile* $char_ptr_volatile= _var:char* volatile $short_int_var:short int $const_short_int_var:short int= const $volatile_short_int_var:short int volatile $ptr_short_int_var:short = int* $ptr_const_short_int_var:short int const* $short_int_ptr_const_var:sho= rt int* const $ptr_volatile_short_int_var:short int volatile* $short_int_pt= r_volatile_var:short int* volatile $short_uint_var:short unsigned int $int_= var:int $const_int_var:int const $volatile_int_var:int volatile $ptr_int_va= r:int* $ptr_const_int_var:int const* $int_ptr_const_var:int* const $ptr_vol= atile_int_var:int volatile* $int_ptr_volatile_var:int* volatile $uint_var:u= nsigned int $long_int_var:long int $const_long_int_var:long int const $vola= tile_long_int_var:long int volatile $ptr_long_int_var:long int* $ptr_const_= long_int_var:long int const* $long_int_ptr_const_var:long int* const $ptr_v= olatile_long_int_var:long int volatile* $long_int_ptr_volatile_var:long int= * volatile $long_long_int_var:long long int $const_long_long_int_var:long l= ong int const $volatile_long_long_int_var:long long int volatile $ptr_long_= long_int_var:long long int* $ptr_const_long_long_int_var:long long int cons= t* $long_long_int_ptr_const_var:long long int* const $ptr_volatile_long_lon= g_int_var:long long int volatile* $long_long_int_ptr_volatile_var:long long= int* volatile $arr_char:char[] $bitfields_a_var:struct {...} $bitfields_b_= var:struct {...} $argc:int $argv:char**=0D process("./sdt_types.x").mark("int_var") $arg1:int $char_var:char $const_ch= ar_var:char const $volatile_char_var:char volatile $ptr_char_var:char* $ptr= _const_char_var:char const* $char_ptr_const_var:char* const $ptr_volatile_c= har_var:char volatile* $char_ptr_volatile_var:char* volatile $short_int_var= :short int $const_short_int_var:short int const $volatile_short_int_var:sho= rt int volatile $ptr_short_int_var:short int* $ptr_const_short_int_var:shor= t int const* $short_int_ptr_const_var:short int* const $ptr_volatile_short_= int_var:short int volatile* $short_int_ptr_volatile_var:short int* volatile= $short_uint_var:short unsigned int $int_var:int $const_int_var:int const $= volatile_int_var:int volatile $ptr_int_var:int* $ptr_const_int_var:int cons= t* $int_ptr_const_var:int* const $ptr_volatile_int_var:int volatile* $int_p= tr_volatile_var:int* volatile $uint_var:unsigned int $long_int_var:long int= $const_long_int_var:long int const $volatile_long_int_var:long int volatil= e $ptr_long_int_var:long int* $ptr_const_long_int_var:long int const* $long= _int_ptr_const_var:long int* const $ptr_volatile_long_int_var:long int vola= tile* $long_int_ptr_volatile_var:long int* volatile $long_long_int_var:long= long int $const_long_long_int_var:long long int const $volatile_long_long_= int_var:long long int volatile $ptr_long_long_int_var:long long int* $ptr_c= onst_long_long_int_var:long long int const* $long_long_int_ptr_const_var:lo= ng long int* const $ptr_volatile_long_long_int_var:long long int volatile* = $long_long_int_ptr_volatile_var:long long int* volatile $arr_char:char[] $b= itfields_a_var:struct {...} $bitfields_b_var:struct {...} $argc:int $argv:c= har**=0D process("./sdt_types.x").mark("long_int_ptr_const_var") $arg1:long int* con= st $arg2:long int* $char_var:char $const_char_var:char const $volatile_char= _var:char volatile $ptr_char_var:char* $ptr_const_char_var:char const* $cha= r_ptr_const_var:char* const $ptr_volatile_char_var:char volatile* $char_ptr= _volatile_var:char* volatile $short_int_var:short int $const_short_int_var:= short int const $volatile_short_int_var:short int volatile $ptr_short_int_v= ar:short int* $ptr_const_short_int_var:short int const* $short_int_ptr_cons= t_var:short int* const $ptr_volatile_short_int_var:short int volatile* $sho= rt_int_ptr_volatile_var:short int* volatile $short_uint_var:short unsigned = int $int_var:int $const_int_var:int const $volatile_int_var:int volatile $p= tr_int_var:int* $ptr_const_int_var:int const* $int_ptr_const_var:int* const= $ptr_volatile_int_var:int volatile* $int_ptr_volatile_var:int* volatile $u= int_var:unsigned int $long_int_var:long int $const_long_int_var:long int co= nst $volatile_long_int_var:long int volatile $ptr_long_int_var:long int* $p= tr_const_long_int_var:long int const* $long_int_ptr_const_var:long int* con= st $ptr_volatile_long_int_var:long int volatile* $long_int_ptr_volatile_var= :long int* volatile $long_long_int_var:long long int $const_long_long_int_v= ar:long long int const $volatile_long_long_int_var:long long int volatile $= ptr_long_long_int_var:long long int* $ptr_const_long_long_int_var:long long= int const* $long_long_int_ptr_const_var:long long int* const $ptr_volatile= _long_long_int_var:long long int volatile* $long_long_int_ptr_volatile_var:= long long int* volatile $arr_char:char[] $bitfields_a_var:struct {...} $bit= fields_b_var:struct {...} $argc:int $argv:char**=0D process("./sdt_types.x").mark("long_int_ptr_volatile_var") $arg1:long int* = volatile $arg2:long int* $char_var:char $const_char_var:char const $volatil= e_char_var:char volatile $ptr_char_var:char* $ptr_const_char_var:char const= * $char_ptr_const_var:char* const $ptr_volatile_char_var:char volatile* $ch= ar_ptr_volatile_var:char* volatile $short_int_var:short int $const_short_in= t_var:short int const $volatile_short_int_var:short int volatile $ptr_short= _int_var:short int* $ptr_const_short_int_var:short int const* $short_int_pt= r_const_var:short int* const $ptr_volatile_short_int_var:short int volatile= * $short_int_ptr_volatile_var:short int* volatile $short_uint_var:short uns= igned int $int_var:int $const_int_var:int const $volatile_int_var:int volat= ile $ptr_int_var:int* $ptr_const_int_var:int const* $int_ptr_const_var:int*= const $ptr_volatile_int_var:int volatile* $int_ptr_volatile_var:int* volat= ile $uint_var:unsigned int $long_int_var:long int $const_long_int_var:long = int const $volatile_long_int_var:long int volatile $ptr_long_int_var:long i= nt* $ptr_const_long_int_var:long int const* $long_int_ptr_const_var:long in= t* const $ptr_volatile_long_int_var:long int volatile* $long_int_ptr_volati= le_var:long int* volatile $long_long_int_var:long long int $const_long_long= _int_var:long long int const $volatile_long_long_int_var:long long int vola= tile $ptr_long_long_int_var:long long int* $ptr_const_long_long_int_var:lon= g long int const* $long_long_int_ptr_const_var:long long int* const $ptr_vo= latile_long_long_int_var:long long int volatile* $long_long_int_ptr_volatil= e_var:long long int* volatile $arr_char:char[] $bitfields_a_var:struct {...= } $bitfields_b_var:struct {...} $argc:int $argv:char**=0D process("./sdt_types.x").mark("long_int_var") $arg1:long int $char_var:char= $const_char_var:char const $volatile_char_var:char volatile $ptr_char_var:= char* $ptr_const_char_var:char const* $char_ptr_const_var:char* const $ptr_= volatile_char_var:char volatile* $char_ptr_volatile_var:char* volatile $sho= rt_int_var:short int $const_short_int_var:short int const $volatile_short_i= nt_var:short int volatile $ptr_short_int_var:short int* $ptr_const_short_in= t_var:short int const* $short_int_ptr_const_var:short int* const $ptr_volat= ile_short_int_var:short int volatile* $short_int_ptr_volatile_var:short int= * volatile $short_uint_var:short unsigned int $int_var:int $const_int_var:i= nt const $volatile_int_var:int volatile $ptr_int_var:int* $ptr_const_int_va= r:int const* $int_ptr_const_var:int* const $ptr_volatile_int_var:int volati= le* $int_ptr_volatile_var:int* volatile $uint_var:unsigned int $long_int_va= r:long int $const_long_int_var:long int const $volatile_long_int_var:long i= nt volatile $ptr_long_int_var:long int* $ptr_const_long_int_var:long int co= nst* $long_int_ptr_const_var:long int* const $ptr_volatile_long_int_var:lon= g int volatile* $long_int_ptr_volatile_var:long int* volatile $long_long_in= t_var:long long int $const_long_long_int_var:long long int const $volatile_= long_long_int_var:long long int volatile $ptr_long_long_int_var:long long i= nt* $ptr_const_long_long_int_var:long long int const* $long_long_int_ptr_co= nst_var:long long int* const $ptr_volatile_long_long_int_var:long long int = volatile* $long_long_int_ptr_volatile_var:long long int* volatile $arr_char= :char[] $bitfields_a_var:struct {...} $bitfields_b_var:struct {...} $argc:i= nt $argv:char**=0D process("./sdt_types.x").mark("long_long_int_ptr_const_var") $arg1:long lon= g int* const $arg2:long long int* $char_var:char $const_char_var:char const= $volatile_char_var:char volatile $ptr_char_var:char* $ptr_const_char_var:c= har const* $char_ptr_const_var:char* const $ptr_volatile_char_var:char vola= tile* $char_ptr_volatile_var:char* volatile $short_int_var:short int $const= _short_int_var:short int const $volatile_short_int_var:short int volatile $= ptr_short_int_var:short int* $ptr_const_short_int_var:short int const* $sho= rt_int_ptr_const_var:short int* const $ptr_volatile_short_int_var:short int= volatile* $short_int_ptr_volatile_var:short int* volatile $short_uint_var:= short unsigned int $int_var:int $const_int_var:int const $volatile_int_var:= int volatile $ptr_int_var:int* $ptr_const_int_var:int const* $int_ptr_const= _var:int* const $ptr_volatile_int_var:int volatile* $int_ptr_volatile_var:i= nt* volatile $uint_var:unsigned int $long_int_var:long int $const_long_int_= var:long int const $volatile_long_int_var:long int volatile $ptr_long_int_v= ar:long int* $ptr_const_long_int_var:long int const* $long_int_ptr_const_va= r:long int* const $ptr_volatile_long_int_var:long int volatile* $long_int_p= tr_volatile_var:long int* volatile $long_long_int_var:long long int $const_= long_long_int_var:long long int const $volatile_long_long_int_var:long long= int volatile $ptr_long_long_int_var:long long int* $ptr_const_long_long_in= t_var:long long int const* $long_long_int_ptr_const_var:long long int* cons= t $ptr_volatile_long_long_int_var:long long int volatile* $long_long_int_pt= r_volatile_var:long long int* volatile $arr_char:char[] $bitfields_a_var:st= ruct {...} $bitfields_b_var:struct {...} $argc:int $argv:char**=0D process("./sdt_types.x").mark("long_long_int_ptr_volatile_var") $arg1:long = long int* volatile $arg2:long long int* $char_var:char $const_char_var:char= const $volatile_char_var:char volatile $ptr_char_var:char* $ptr_const_char= _var:char const* $char_ptr_const_var:char* const $ptr_volatile_char_var:cha= r volatile* $char_ptr_volatile_var:char* volatile $short_int_var:short int = $const_short_int_var:short int const $volatile_short_int_var:short int vola= tile $ptr_short_int_var:short int* $ptr_const_short_int_var:short int const= * $short_int_ptr_const_var:short int* const $ptr_volatile_short_int_var:sho= rt int volatile* $short_int_ptr_volatile_var:short int* volatile $short_uin= t_var:short unsigned int $int_var:int $const_int_var:int const $volatile_in= t_var:int volatile $ptr_int_var:int* $ptr_const_int_var:int const* $int_ptr= _const_var:int* const $ptr_volatile_int_var:int volatile* $int_ptr_volatile= _var:int* volatile $uint_var:unsigned int $long_int_var:long int $const_lon= g_int_var:long int const $volatile_long_int_var:long int volatile $ptr_long= _int_var:long int* $ptr_const_long_int_var:long int const* $long_int_ptr_co= nst_var:long int* const $ptr_volatile_long_int_var:long int volatile* $long= _int_ptr_volatile_var:long int* volatile $long_long_int_var:long long int $= const_long_long_int_var:long long int const $volatile_long_long_int_var:lon= g long int volatile $ptr_long_long_int_var:long long int* $ptr_const_long_l= ong_int_var:long long int const* $long_long_int_ptr_const_var:long long int= * const $ptr_volatile_long_long_int_var:long long int volatile* $long_long_= int_ptr_volatile_var:long long int* volatile $arr_char:char[] $bitfields_a_= var:struct {...} $bitfields_b_var:struct {...} $argc:int $argv:char**=0D process("./sdt_types.x").mark("long_long_int_var") $arg1:long long int $cha= r_var:char $const_char_var:char const $volatile_char_var:char volatile $ptr= _char_var:char* $ptr_const_char_var:char const* $char_ptr_const_var:char* c= onst $ptr_volatile_char_var:char volatile* $char_ptr_volatile_var:char* vol= atile $short_int_var:short int $const_short_int_var:short int const $volati= le_short_int_var:short int volatile $ptr_short_int_var:short int* $ptr_cons= t_short_int_var:short int const* $short_int_ptr_const_var:short int* const = $ptr_volatile_short_int_var:short int volatile* $short_int_ptr_volatile_var= :short int* volatile $short_uint_var:short unsigned int $int_var:int $const= _int_var:int const $volatile_int_var:int volatile $ptr_int_var:int* $ptr_co= nst_int_var:int const* $int_ptr_const_var:int* const $ptr_volatile_int_var:= int volatile* $int_ptr_volatile_var:int* volatile $uint_var:unsigned int $l= ong_int_var:long int $const_long_int_var:long int const $volatile_long_int_= var:long int volatile $ptr_long_int_var:long int* $ptr_const_long_int_var:l= ong int const* $long_int_ptr_const_var:long int* const $ptr_volatile_long_i= nt_var:long int volatile* $long_int_ptr_volatile_var:long int* volatile $lo= ng_long_int_var:long long int $const_long_long_int_var:long long int const = $volatile_long_long_int_var:long long int volatile $ptr_long_long_int_var:l= ong long int* $ptr_const_long_long_int_var:long long int const* $long_long_= int_ptr_const_var:long long int* const $ptr_volatile_long_long_int_var:long= long int volatile* $long_long_int_ptr_volatile_var:long long int* volatile= $arr_char:char[] $bitfields_a_var:struct {...} $bitfields_b_var:struct {..= .} $argc:int $argv:char**=0D process("./sdt_types.x").mark("ptr_char_var") $arg1:char* $arg2:char* $arg3= :char $char_var:char $const_char_var:char const $volatile_char_var:char vol= atile $ptr_char_var:char* $ptr_const_char_var:char const* $char_ptr_const_v= ar:char* const $ptr_volatile_char_var:char volatile* $char_ptr_volatile_var= :char* volatile $short_int_var:short int $const_short_int_var:short int con= st $volatile_short_int_var:short int volatile $ptr_short_int_var:short int*= $ptr_const_short_int_var:short int const* $short_int_ptr_const_var:short i= nt* const $ptr_volatile_short_int_var:short int volatile* $short_int_ptr_vo= latile_var:short int* volatile $short_uint_var:short unsigned int $int_var:= int $const_int_var:int const $volatile_int_var:int volatile $ptr_int_var:in= t* $ptr_const_int_var:int const* $int_ptr_const_var:int* const $ptr_volatil= e_int_var:int volatile* $int_ptr_volatile_var:int* volatile $uint_var:unsig= ned int $long_int_var:long int $const_long_int_var:long int const $volatile= _long_int_var:long int volatile $ptr_long_int_var:long int* $ptr_const_long= _int_var:long int const* $long_int_ptr_const_var:long int* const $ptr_volat= ile_long_int_var:long int volatile* $long_int_ptr_volatile_var:long int* vo= latile $long_long_int_var:long long int $const_long_long_int_var:long long = int const $volatile_long_long_int_var:long long int volatile $ptr_long_long= _int_var:long long int* $ptr_const_long_long_int_var:long long int const* $= long_long_int_ptr_const_var:long long int* const $ptr_volatile_long_long_in= t_var:long long int volatile* $long_long_int_ptr_volatile_var:long long int= * volatile $arr_char:char[] $bitfields_a_var:struct {...} $bitfields_b_var:= struct {...} $argc:int $argv:char**=0D process("./sdt_types.x").mark("ptr_const_char_var") $arg1:char const* $arg2= :char* $char_var:char $const_char_var:char const $volatile_char_var:char vo= latile $ptr_char_var:char* $ptr_const_char_var:char const* $char_ptr_const_= var:char* const $ptr_volatile_char_var:char volatile* $char_ptr_volatile_va= r:char* volatile $short_int_var:short int $const_short_int_var:short int co= nst $volatile_short_int_var:short int volatile $ptr_short_int_var:short int= * $ptr_const_short_int_var:short int const* $short_int_ptr_const_var:short = int* const $ptr_volatile_short_int_var:short int volatile* $short_int_ptr_v= olatile_var:short int* volatile $short_uint_var:short unsigned int $int_var= :int $const_int_var:int const $volatile_int_var:int volatile $ptr_int_var:i= nt* $ptr_const_int_var:int const* $int_ptr_const_var:int* const $ptr_volati= le_int_var:int volatile* $int_ptr_volatile_var:int* volatile $uint_var:unsi= gned int $long_int_var:long int $const_long_int_var:long int const $volatil= e_long_int_var:long int volatile $ptr_long_int_var:long int* $ptr_const_lon= g_int_var:long int const* $long_int_ptr_const_var:long int* const $ptr_vola= tile_long_int_var:long int volatile* $long_int_ptr_volatile_var:long int* v= olatile $long_long_int_var:long long int $const_long_long_int_var:long long= int const $volatile_long_long_int_var:long long int volatile $ptr_long_lon= g_int_var:long long int* $ptr_const_long_long_int_var:long long int const* = $long_long_int_ptr_const_var:long long int* const $ptr_volatile_long_long_i= nt_var:long long int volatile* $long_long_int_ptr_volatile_var:long long in= t* volatile $arr_char:char[] $bitfields_a_var:struct {...} $bitfields_b_var= :struct {...} $argc:int $argv:char**=0D process("./sdt_types.x").mark("ptr_const_int_var") $arg1:int const* $arg2:i= nt* $char_var:char $const_char_var:char const $volatile_char_var:char volat= ile $ptr_char_var:char* $ptr_const_char_var:char const* $char_ptr_const_var= :char* const $ptr_volatile_char_var:char volatile* $char_ptr_volatile_var:c= har* volatile $short_int_var:short int $const_short_int_var:short int const= $volatile_short_int_var:short int volatile $ptr_short_int_var:short int* $= ptr_const_short_int_var:short int const* $short_int_ptr_const_var:short int= * const $ptr_volatile_short_int_var:short int volatile* $short_int_ptr_vola= tile_var:short int* volatile $short_uint_var:short unsigned int $int_var:in= t $const_int_var:int const $volatile_int_var:int volatile $ptr_int_var:int*= $ptr_const_int_var:int const* $int_ptr_const_var:int* const $ptr_volatile_= int_var:int volatile* $int_ptr_volatile_var:int* volatile $uint_var:unsigne= d int $long_int_var:long int $const_long_int_var:long int const $volatile_l= ong_int_var:long int volatile $ptr_long_int_var:long int* $ptr_const_long_i= nt_var:long int const* $long_int_ptr_const_var:long int* const $ptr_volatil= e_long_int_var:long int volatile* $long_int_ptr_volatile_var:long int* vola= tile $long_long_int_var:long long int $const_long_long_int_var:long long in= t const $volatile_long_long_int_var:long long int volatile $ptr_long_long_i= nt_var:long long int* $ptr_const_long_long_int_var:long long int const* $lo= ng_long_int_ptr_const_var:long long int* const $ptr_volatile_long_long_int_= var:long long int volatile* $long_long_int_ptr_volatile_var:long long int* = volatile $arr_char:char[] $bitfields_a_var:struct {...} $bitfields_b_var:st= ruct {...} $argc:int $argv:char**=0D process("./sdt_types.x").mark("ptr_const_long_int_var") $arg1:long int cons= t* $arg2:long int* $char_var:char $const_char_var:char const $volatile_char= _var:char volatile $ptr_char_var:char* $ptr_const_char_var:char const* $cha= r_ptr_const_var:char* const $ptr_volatile_char_var:char volatile* $char_ptr= _volatile_var:char* volatile $short_int_var:short int $const_short_int_var:= short int const $volatile_short_int_var:short int volatile $ptr_short_int_v= ar:short int* $ptr_const_short_int_var:short int const* $short_int_ptr_cons= t_var:short int* const $ptr_volatile_short_int_var:short int volatile* $sho= rt_int_ptr_volatile_var:short int* volatile $short_uint_var:short unsigned = int $int_var:int $const_int_var:int const $volatile_int_var:int volatile $p= tr_int_var:int* $ptr_const_int_var:int const* $int_ptr_const_var:int* const= $ptr_volatile_int_var:int volatile* $int_ptr_volatile_var:int* volatile $u= int_var:unsigned int $long_int_var:long int $const_long_int_var:long int co= nst $volatile_long_int_var:long int volatile $ptr_long_int_var:long int* $p= tr_const_long_int_var:long int const* $long_int_ptr_const_var:long int* con= st $ptr_volatile_long_int_var:long int volatile* $long_int_ptr_volatile_var= :long int* volatile $long_long_int_var:long long int $const_long_long_int_v= ar:long long int const $volatile_long_long_int_var:long long int volatile $= ptr_long_long_int_var:long long int* $ptr_const_long_long_int_var:long long= int const* $long_long_int_ptr_const_var:long long int* const $ptr_volatile= _long_long_int_var:long long int volatile* $long_long_int_ptr_volatile_var:= long long int* volatile $arr_char:char[] $bitfields_a_var:struct {...} $bit= fields_b_var:struct {...} $argc:int $argv:char**=0D process("./sdt_types.x").mark("ptr_const_long_long_int_var") $arg1:long lon= g int const* $arg2:long long int* $char_var:char $const_char_var:char const= $volatile_char_var:char volatile $ptr_char_var:char* $ptr_const_char_var:c= har const* $char_ptr_const_var:char* const $ptr_volatile_char_var:char vola= tile* $char_ptr_volatile_var:char* volatile $short_int_var:short int $const= _short_int_var:short int const $volatile_short_int_var:short int volatile $= ptr_short_int_var:short int* $ptr_const_short_int_var:short int const* $sho= rt_int_ptr_const_var:short int* const $ptr_volatile_short_int_var:short int= volatile* $short_int_ptr_volatile_var:short int* volatile $short_uint_var:= short unsigned int $int_var:int $const_int_var:int const $volatile_int_var:= int volatile $ptr_int_var:int* $ptr_const_int_var:int const* $int_ptr_const= _var:int* const $ptr_volatile_int_var:int volatile* $int_ptr_volatile_var:i= nt* volatile $uint_var:unsigned int $long_int_var:long int $const_long_int_= var:long int const $volatile_long_int_var:long int volatile $ptr_long_int_v= ar:long int* $ptr_const_long_int_var:long int const* $long_int_ptr_const_va= r:long int* const $ptr_volatile_long_int_var:long int volatile* $long_int_p= tr_volatile_var:long int* volatile $long_long_int_var:long long int $const_= long_long_int_var:long long int const $volatile_long_long_int_var:long long= int volatile $ptr_long_long_int_var:long long int* $ptr_const_long_long_in= t_var:long long int const* $long_long_int_ptr_const_var:long long int* cons= t $ptr_volatile_long_long_int_var:long long int volatile* $long_long_int_pt= r_volatile_var:long long int* volatile $arr_char:char[] $bitfields_a_var:st= ruct {...} $bitfields_b_var:struct {...} $argc:int $argv:char**=0D process("./sdt_types.x").mark("ptr_const_short_int_var") $arg1:short int co= nst* $arg2:short int* $char_var:char $const_char_var:char const $volatile_c= har_var:char volatile $ptr_char_var:char* $ptr_const_char_var:char const* $= char_ptr_const_var:char* const $ptr_volatile_char_var:char volatile* $char_= ptr_volatile_var:char* volatile $short_int_var:short int $const_short_int_v= ar:short int const $volatile_short_int_var:short int volatile $ptr_short_in= t_var:short int* $ptr_const_short_int_var:short int const* $short_int_ptr_c= onst_var:short int* const $ptr_volatile_short_int_var:short int volatile* $= short_int_ptr_volatile_var:short int* volatile $short_uint_var:short unsign= ed int $int_var:int $const_int_var:int const $volatile_int_var:int volatile= $ptr_int_var:int* $ptr_const_int_var:int const* $int_ptr_const_var:int* co= nst $ptr_volatile_int_var:int volatile* $int_ptr_volatile_var:int* volatile= $uint_var:unsigned int $long_int_var:long int $const_long_int_var:long int= const $volatile_long_int_var:long int volatile $ptr_long_int_var:long int*= $ptr_const_long_int_var:long int const* $long_int_ptr_const_var:long int* = const $ptr_volatile_long_int_var:long int volatile* $long_int_ptr_volatile_= var:long int* volatile $long_long_int_var:long long int $const_long_long_in= t_var:long long int const $volatile_long_long_int_var:long long int volatil= e $ptr_long_long_int_var:long long int* $ptr_const_long_long_int_var:long l= ong int const* $long_long_int_ptr_const_var:long long int* const $ptr_volat= ile_long_long_int_var:long long int volatile* $long_long_int_ptr_volatile_v= ar:long long int* volatile $arr_char:char[] $bitfields_a_var:struct {...} $= bitfields_b_var:struct {...} $argc:int $argv:char**=0D process("./sdt_types.x").mark("ptr_int_var") $arg1:int* $arg2:int* $arg3:in= t $char_var:char $const_char_var:char const $volatile_char_var:char volatil= e $ptr_char_var:char* $ptr_const_char_var:char const* $char_ptr_const_var:c= har* const $ptr_volatile_char_var:char volatile* $char_ptr_volatile_var:cha= r* volatile $short_int_var:short int $const_short_int_var:short int const $= volatile_short_int_var:short int volatile $ptr_short_int_var:short int* $pt= r_const_short_int_var:short int const* $short_int_ptr_const_var:short int* = const $ptr_volatile_short_int_var:short int volatile* $short_int_ptr_volati= le_var:short int* volatile $short_uint_var:short unsigned int $int_var:int = $const_int_var:int const $volatile_int_var:int volatile $ptr_int_var:int* $= ptr_const_int_var:int const* $int_ptr_const_var:int* const $ptr_volatile_in= t_var:int volatile* $int_ptr_volatile_var:int* volatile $uint_var:unsigned = int $long_int_var:long int $const_long_int_var:long int const $volatile_lon= g_int_var:long int volatile $ptr_long_int_var:long int* $ptr_const_long_int= _var:long int const* $long_int_ptr_const_var:long int* const $ptr_volatile_= long_int_var:long int volatile* $long_int_ptr_volatile_var:long int* volati= le $long_long_int_var:long long int $const_long_long_int_var:long long int = const $volatile_long_long_int_var:long long int volatile $ptr_long_long_int= _var:long long int* $ptr_const_long_long_int_var:long long int const* $long= _long_int_ptr_const_var:long long int* const $ptr_volatile_long_long_int_va= r:long long int volatile* $long_long_int_ptr_volatile_var:long long int* vo= latile $arr_char:char[] $bitfields_a_var:struct {...} $bitfields_b_var:stru= ct {...} $argc:int $argv:char**=0D process("./sdt_types.x").mark("ptr_long_int_var") $arg1:long int* $arg2:lon= g int* $char_var:char $const_char_var:char const $volatile_char_var:char vo= latile $ptr_char_var:char* $ptr_const_char_var:char const* $char_ptr_const_= var:char* const $ptr_volatile_char_var:char volatile* $char_ptr_volatile_va= r:char* volatile $short_int_var:short int $const_short_int_var:short int co= nst $volatile_short_int_var:short int volatile $ptr_short_int_var:short int= * $ptr_const_short_int_var:short int const* $short_int_ptr_const_var:short = int* const $ptr_volatile_short_int_var:short int volatile* $short_int_ptr_v= olatile_var:short int* volatile $short_uint_var:short unsigned int $int_var= :int $const_int_var:int const $volatile_int_var:int volatile $ptr_int_var:i= nt* $ptr_const_int_var:int const* $int_ptr_const_var:int* const $ptr_volati= le_int_var:int volatile* $int_ptr_volatile_var:int* volatile $uint_var:unsi= gned int $long_int_var:long int $const_long_int_var:long int const $volatil= e_long_int_var:long int volatile $ptr_long_int_var:long int* $ptr_const_lon= g_int_var:long int const* $long_int_ptr_const_var:long int* const $ptr_vola= tile_long_int_var:long int volatile* $long_int_ptr_volatile_var:long int* v= olatile $long_long_int_var:long long int $const_long_long_int_var:long long= int const $volatile_long_long_int_var:long long int volatile $ptr_long_lon= g_int_var:long long int* $ptr_const_long_long_int_var:long long int const* = $long_long_int_ptr_const_var:long long int* const $ptr_volatile_long_long_i= nt_var:long long int volatile* $long_long_int_ptr_volatile_var:long long in= t* volatile $arr_char:char[] $bitfields_a_var:struct {...} $bitfields_b_var= :struct {...} $argc:int $argv:char**=0D process("./sdt_types.x").mark("ptr_long_long_int_var") $arg1:long long int*= $arg2:long long int* $arg3:long long int $char_var:char $const_char_var:ch= ar const $volatile_char_var:char volatile $ptr_char_var:char* $ptr_const_ch= ar_var:char const* $char_ptr_const_var:char* const $ptr_volatile_char_var:c= har volatile* $char_ptr_volatile_var:char* volatile $short_int_var:short in= t $const_short_int_var:short int const $volatile_short_int_var:short int vo= latile $ptr_short_int_var:short int* $ptr_const_short_int_var:short int con= st* $short_int_ptr_const_var:short int* const $ptr_volatile_short_int_var:s= hort int volatile* $short_int_ptr_volatile_var:short int* volatile $short_u= int_var:short unsigned int $int_var:int $const_int_var:int const $volatile_= int_var:int volatile $ptr_int_var:int* $ptr_const_int_var:int const* $int_p= tr_const_var:int* const $ptr_volatile_int_var:int volatile* $int_ptr_volati= le_var:int* volatile $uint_var:unsigned int $long_int_var:long int $const_l= ong_int_var:long int const $volatile_long_int_var:long int volatile $ptr_lo= ng_int_var:long int* $ptr_const_long_int_var:long int const* $long_int_ptr_= const_var:long int* const $ptr_volatile_long_int_var:long int volatile* $lo= ng_int_ptr_volatile_var:long int* volatile $long_long_int_var:long long int= $const_long_long_int_var:long long int const $volatile_long_long_int_var:l= ong long int volatile $ptr_long_long_int_var:long long int* $ptr_const_long= _long_int_var:long long int const* $long_long_int_ptr_const_var:long long i= nt* const $ptr_volatile_long_long_int_var:long long int volatile* $long_lon= g_int_ptr_volatile_var:long long int* volatile $arr_char:char[] $bitfields_= a_var:struct {...} $bitfields_b_var:struct {...} $argc:int $argv:char**=0D process("./sdt_types.x").mark("ptr_short_int_var") $arg1:short int* $arg2:s= hort int* $arg3:short int $char_var:char $const_char_var:char const $volati= le_char_var:char volatile $ptr_char_var:char* $ptr_const_char_var:char cons= t* $char_ptr_const_var:char* const $ptr_volatile_char_var:char volatile* $c= har_ptr_volatile_var:char* volatile $short_int_var:short int $const_short_i= nt_var:short int const $volatile_short_int_var:short int volatile $ptr_shor= t_int_var:short int* $ptr_const_short_int_var:short int const* $short_int_p= tr_const_var:short int* const $ptr_volatile_short_int_var:short int volatil= e* $short_int_ptr_volatile_var:short int* volatile $short_uint_var:short un= signed int $int_var:int $const_int_var:int const $volatile_int_var:int vola= tile $ptr_int_var:int* $ptr_const_int_var:int const* $int_ptr_const_var:int= * const $ptr_volatile_int_var:int volatile* $int_ptr_volatile_var:int* vola= tile $uint_var:unsigned int $long_int_var:long int $const_long_int_var:long= int const $volatile_long_int_var:long int volatile $ptr_long_int_var:long = int* $ptr_const_long_int_var:long int const* $long_int_ptr_const_var:long i= nt* const $ptr_volatile_long_int_var:long int volatile* $long_int_ptr_volat= ile_var:long int* volatile $long_long_int_var:long long int $const_long_lon= g_int_var:long long int const $volatile_long_long_int_var:long long int vol= atile $ptr_long_long_int_var:long long int* $ptr_const_long_long_int_var:lo= ng long int const* $long_long_int_ptr_const_var:long long int* const $ptr_v= olatile_long_long_int_var:long long int volatile* $long_long_int_ptr_volati= le_var:long long int* volatile $arr_char:char[] $bitfields_a_var:struct {..= .} $bitfields_b_var:struct {...} $argc:int $argv:char**=0D process("./sdt_types.x").mark("ptr_volatile_char_var") $arg1:char volatile*= $arg2:char* $char_var:char $const_char_var:char const $volatile_char_var:c= har volatile $ptr_char_var:char* $ptr_const_char_var:char const* $char_ptr_= const_var:char* const $ptr_volatile_char_var:char volatile* $char_ptr_volat= ile_var:char* volatile $short_int_var:short int $const_short_int_var:short = int const $volatile_short_int_var:short int volatile $ptr_short_int_var:sho= rt int* $ptr_const_short_int_var:short int const* $short_int_ptr_const_var:= short int* const $ptr_volatile_short_int_var:short int volatile* $short_int= _ptr_volatile_var:short int* volatile $short_uint_var:short unsigned int $i= nt_var:int $const_int_var:int const $volatile_int_var:int volatile $ptr_int= _var:int* $ptr_const_int_var:int const* $int_ptr_const_var:int* const $ptr_= volatile_int_var:int volatile* $int_ptr_volatile_var:int* volatile $uint_va= r:unsigned int $long_int_var:long int $const_long_int_var:long int const $v= olatile_long_int_var:long int volatile $ptr_long_int_var:long int* $ptr_con= st_long_int_var:long int const* $long_int_ptr_const_var:long int* const $pt= r_volatile_long_int_var:long int volatile* $long_int_ptr_volatile_var:long = int* volatile $long_long_int_var:long long int $const_long_long_int_var:lon= g long int const $volatile_long_long_int_var:long long int volatile $ptr_lo= ng_long_int_var:long long int* $ptr_const_long_long_int_var:long long int c= onst* $long_long_int_ptr_const_var:long long int* const $ptr_volatile_long_= long_int_var:long long int volatile* $long_long_int_ptr_volatile_var:long l= ong int* volatile $arr_char:char[] $bitfields_a_var:struct {...} $bitfields= _b_var:struct {...} $argc:int $argv:char**=0D process("./sdt_types.x").mark("ptr_volatile_int_var") $arg1:int volatile* $= arg2:int* $char_var:char $const_char_var:char const $volatile_char_var:char= volatile $ptr_char_var:char* $ptr_const_char_var:char const* $char_ptr_con= st_var:char* const $ptr_volatile_char_var:char volatile* $char_ptr_volatile= _var:char* volatile $short_int_var:short int $const_short_int_var:short int= const $volatile_short_int_var:short int volatile $ptr_short_int_var:short = int* $ptr_const_short_int_var:short int const* $short_int_ptr_const_var:sho= rt int* const $ptr_volatile_short_int_var:short int volatile* $short_int_pt= r_volatile_var:short int* volatile $short_uint_var:short unsigned int $int_= var:int $const_int_var:int const $volatile_int_var:int volatile $ptr_int_va= r:int* $ptr_const_int_var:int const* $int_ptr_const_var:int* const $ptr_vol= atile_int_var:int volatile* $int_ptr_volatile_var:int* volatile $uint_var:u= nsigned int $long_int_var:long int $const_long_int_var:long int const $vola= tile_long_int_var:long int volatile $ptr_long_int_var:long int* $ptr_const_= long_int_var:long int const* $long_int_ptr_const_var:long int* const $ptr_v= olatile_long_int_var:long int volatile* $long_int_ptr_volatile_var:long int= * volatile $long_long_int_var:long long int $const_long_long_int_var:long l= ong int const $volatile_long_long_int_var:long long int volatile $ptr_long_= long_int_var:long long int* $ptr_const_long_long_int_var:long long int cons= t* $long_long_int_ptr_const_var:long long int* const $ptr_volatile_long_lon= g_int_var:long long int volatile* $long_long_int_ptr_volatile_var:long long= int* volatile $arr_char:char[] $bitfields_a_var:struct {...} $bitfields_b_= var:struct {...} $argc:int $argv:char**=0D process("./sdt_types.x").mark("ptr_volatile_long_int_var") $arg1:long int v= olatile* $arg2:long int* $char_var:char $const_char_var:char const $volatil= e_char_var:char volatile $ptr_char_var:char* $ptr_const_char_var:char const= * $char_ptr_const_var:char* const $ptr_volatile_char_var:char volatile* $ch= ar_ptr_volatile_var:char* volatile $short_int_var:short int $const_short_in= t_var:short int const $volatile_short_int_var:short int volatile $ptr_short= _int_var:short int* $ptr_const_short_int_var:short int const* $short_int_pt= r_const_var:short int* const $ptr_volatile_short_int_var:short int volatile= * $short_int_ptr_volatile_var:short int* volatile $short_uint_var:short uns= igned int $int_var:int $const_int_var:int const $volatile_int_var:int volat= ile $ptr_int_var:int* $ptr_const_int_var:int const* $int_ptr_const_var:int*= const $ptr_volatile_int_var:int volatile* $int_ptr_volatile_var:int* volat= ile $uint_var:unsigned int $long_int_var:long int $const_long_int_var:long = int const $volatile_long_int_var:long int volatile $ptr_long_int_var:long i= nt* $ptr_const_long_int_var:long int const* $long_int_ptr_const_var:long in= t* const $ptr_volatile_long_int_var:long int volatile* $long_int_ptr_volati= le_var:long int* volatile $long_long_int_var:long long int $const_long_long= _int_var:long long int const $volatile_long_long_int_var:long long int vola= tile $ptr_long_long_int_var:long long int* $ptr_const_long_long_int_var:lon= g long int const* $long_long_int_ptr_const_var:long long int* const $ptr_vo= latile_long_long_int_var:long long int volatile* $long_long_int_ptr_volatil= e_var:long long int* volatile $arr_char:char[] $bitfields_a_var:struct {...= } $bitfields_b_var:struct {...} $argc:int $argv:char**=0D process("./sdt_types.x").mark("ptr_volatile_long_long_int_var") $arg1:long = long int volatile* $arg2:long long int* $char_var:char $const_char_var:char= const $volatile_char_var:char volatile $ptr_char_var:char* $ptr_const_char= _var:char const* $char_ptr_const_var:char* const $ptr_volatile_char_var:cha= r volatile* $char_ptr_volatile_var:char* volatile $short_int_var:short int = $const_short_int_var:short int const $volatile_short_int_var:short int vola= tile $ptr_short_int_var:short int* $ptr_const_short_int_var:short int const= * $short_int_ptr_const_var:short int* const $ptr_volatile_short_int_var:sho= rt int volatile* $short_int_ptr_volatile_var:short int* volatile $short_uin= t_var:short unsigned int $int_var:int $const_int_var:int const $volatile_in= t_var:int volatile $ptr_int_var:int* $ptr_const_int_var:int const* $int_ptr= _const_var:int* const $ptr_volatile_int_var:int volatile* $int_ptr_volatile= _var:int* volatile $uint_var:unsigned int $long_int_var:long int $const_lon= g_int_var:long int const $volatile_long_int_var:long int volatile $ptr_long= _int_var:long int* $ptr_const_long_int_var:long int const* $long_int_ptr_co= nst_var:long int* const $ptr_volatile_long_int_var:long int volatile* $long= _int_ptr_volatile_var:long int* volatile $long_long_int_var:long long int $= const_long_long_int_var:long long int const $volatile_long_long_int_var:lon= g long int volatile $ptr_long_long_int_var:long long int* $ptr_const_long_l= ong_int_var:long long int const* $long_long_int_ptr_const_var:long long int= * const $ptr_volatile_long_long_int_var:long long int volatile* $long_long_= int_ptr_volatile_var:long long int* volatile $arr_char:char[] $bitfields_a_= var:struct {...} $bitfields_b_var:struct {...} $argc:int $argv:char**=0D process("./sdt_types.x").mark("ptr_volatile_short_int_var") $arg1:short int= volatile* $arg2:short int* $char_var:char $const_char_var:char const $vola= tile_char_var:char volatile $ptr_char_var:char* $ptr_const_char_var:char co= nst* $char_ptr_const_var:char* const $ptr_volatile_char_var:char volatile* = $char_ptr_volatile_var:char* volatile $short_int_var:short int $const_short= _int_var:short int const $volatile_short_int_var:short int volatile $ptr_sh= ort_int_var:short int* $ptr_const_short_int_var:short int const* $short_int= _ptr_const_var:short int* const $ptr_volatile_short_int_var:short int volat= ile* $short_int_ptr_volatile_var:short int* volatile $short_uint_var:short = unsigned int $int_var:int $const_int_var:int const $volatile_int_var:int vo= latile $ptr_int_var:int* $ptr_const_int_var:int const* $int_ptr_const_var:i= nt* const $ptr_volatile_int_var:int volatile* $int_ptr_volatile_var:int* vo= latile $uint_var:unsigned int $long_int_var:long int $const_long_int_var:lo= ng int const $volatile_long_int_var:long int volatile $ptr_long_int_var:lon= g int* $ptr_const_long_int_var:long int const* $long_int_ptr_const_var:long= int* const $ptr_volatile_long_int_var:long int volatile* $long_int_ptr_vol= atile_var:long int* volatile $long_long_int_var:long long int $const_long_l= ong_int_var:long long int const $volatile_long_long_int_var:long long int v= olatile $ptr_long_long_int_var:long long int* $ptr_const_long_long_int_var:= long long int const* $long_long_int_ptr_const_var:long long int* const $ptr= _volatile_long_long_int_var:long long int volatile* $long_long_int_ptr_vola= tile_var:long long int* volatile $arr_char:char[] $bitfields_a_var:struct {= ...} $bitfields_b_var:struct {...} $argc:int $argv:char**=0D process("./sdt_types.x").mark("short_int_ptr_const_var") $arg1:short int* c= onst $arg2:short int* $char_var:char $const_char_var:char const $volatile_c= har_var:char volatile $ptr_char_var:char* $ptr_const_char_var:char const* $= char_ptr_const_var:char* const $ptr_volatile_char_var:char volatile* $char_= ptr_volatile_var:char* volatile $short_int_var:short int $const_short_int_v= ar:short int const $volatile_short_int_var:short int volatile $ptr_short_in= t_var:short int* $ptr_const_short_int_var:short int const* $short_int_ptr_c= onst_var:short int* const $ptr_volatile_short_int_var:short int volatile* $= short_int_ptr_volatile_var:short int* volatile $short_uint_var:short unsign= ed int $int_var:int $const_int_var:int const $volatile_int_var:int volatile= $ptr_int_var:int* $ptr_const_int_var:int const* $int_ptr_const_var:int* co= nst $ptr_volatile_int_var:int volatile* $int_ptr_volatile_var:int* volatile= $uint_var:unsigned int $long_int_var:long int $const_long_int_var:long int= const $volatile_long_int_var:long int volatile $ptr_long_int_var:long int*= $ptr_const_long_int_var:long int const* $long_int_ptr_const_var:long int* = const $ptr_volatile_long_int_var:long int volatile* $long_int_ptr_volatile_= var:long int* volatile $long_long_int_var:long long int $const_long_long_in= t_var:long long int const $volatile_long_long_int_var:long long int volatil= e $ptr_long_long_int_var:long long int* $ptr_const_long_long_int_var:long l= ong int const* $long_long_int_ptr_const_var:long long int* const $ptr_volat= ile_long_long_int_var:long long int volatile* $long_long_int_ptr_volatile_v= ar:long long int* volatile $arr_char:char[] $bitfields_a_var:struct {...} $= bitfields_b_var:struct {...} $argc:int $argv:char**=0D process("./sdt_types.x").mark("short_int_ptr_volatile_var") $arg1:short int= * volatile $arg2:short int* $char_var:char $const_char_var:char const $vola= tile_char_var:char volatile $ptr_char_var:char* $ptr_const_char_var:char co= nst* $char_ptr_const_var:char* const $ptr_volatile_char_var:char volatile* = $char_ptr_volatile_var:char* volatile $short_int_var:short int $const_short= _int_var:short int const $volatile_short_int_var:short int volatile $ptr_sh= ort_int_var:short int* $ptr_const_short_int_var:short int const* $short_int= _ptr_const_var:short int* const $ptr_volatile_short_int_var:short int volat= ile* $short_int_ptr_volatile_var:short int* volatile $short_uint_var:short = unsigned int $int_var:int $const_int_var:int const $volatile_int_var:int vo= latile $ptr_int_var:int* $ptr_const_int_var:int const* $int_ptr_const_var:i= nt* const $ptr_volatile_int_var:int volatile* $int_ptr_volatile_var:int* vo= latile $uint_var:unsigned int $long_int_var:long int $const_long_int_var:lo= ng int const $volatile_long_int_var:long int volatile $ptr_long_int_var:lon= g int* $ptr_const_long_int_var:long int const* $long_int_ptr_const_var:long= int* const $ptr_volatile_long_int_var:long int volatile* $long_int_ptr_vol= atile_var:long int* volatile $long_long_int_var:long long int $const_long_l= ong_int_var:long long int const $volatile_long_long_int_var:long long int v= olatile $ptr_long_long_int_var:long long int* $ptr_const_long_long_int_var:= long long int const* $long_long_int_ptr_const_var:long long int* const $ptr= _volatile_long_long_int_var:long long int volatile* $long_long_int_ptr_vola= tile_var:long long int* volatile $arr_char:char[] $bitfields_a_var:struct {= ...} $bitfields_b_var:struct {...} $argc:int $argv:char**=0D process("./sdt_types.x").mark("short_int_var") $arg1:short int $char_var:ch= ar $const_char_var:char const $volatile_char_var:char volatile $ptr_char_va= r:char* $ptr_const_char_var:char const* $char_ptr_const_var:char* const $pt= r_volatile_char_var:char volatile* $char_ptr_volatile_var:char* volatile $s= hort_int_var:short int $const_short_int_var:short int const $volatile_short= _int_var:short int volatile $ptr_short_int_var:short int* $ptr_const_short_= int_var:short int const* $short_int_ptr_const_var:short int* const $ptr_vol= atile_short_int_var:short int volatile* $short_int_ptr_volatile_var:short i= nt* volatile $short_uint_var:short unsigned int $int_var:int $const_int_var= :int const $volatile_int_var:int volatile $ptr_int_var:int* $ptr_const_int_= var:int const* $int_ptr_const_var:int* const $ptr_volatile_int_var:int vola= tile* $int_ptr_volatile_var:int* volatile $uint_var:unsigned int $long_int_= var:long int $const_long_int_var:long int const $volatile_long_int_var:long= int volatile $ptr_long_int_var:long int* $ptr_const_long_int_var:long int = const* $long_int_ptr_const_var:long int* const $ptr_volatile_long_int_var:l= ong int volatile* $long_int_ptr_volatile_var:long int* volatile $long_long_= int_var:long long int $const_long_long_int_var:long long int const $volatil= e_long_long_int_var:long long int volatile $ptr_long_long_int_var:long long= int* $ptr_const_long_long_int_var:long long int const* $long_long_int_ptr_= const_var:long long int* const $ptr_volatile_long_long_int_var:long long in= t volatile* $long_long_int_ptr_volatile_var:long long int* volatile $arr_ch= ar:char[] $bitfields_a_var:struct {...} $bitfields_b_var:struct {...} $argc= :int $argv:char**=0D process("./sdt_types.x").mark("something__dash__dash__something") $char_var= :char $const_char_var:char const $volatile_char_var:char volatile $ptr_char= _var:char* $ptr_const_char_var:char const* $char_ptr_const_var:char* const = $ptr_volatile_char_var:char volatile* $char_ptr_volatile_var:char* volatile= $short_int_var:short int $const_short_int_var:short int const $volatile_sh= ort_int_var:short int volatile $ptr_short_int_var:short int* $ptr_const_sho= rt_int_var:short int const* $short_int_ptr_const_var:short int* const $ptr_= volatile_short_int_var:short int volatile* $short_int_ptr_volatile_var:shor= t int* volatile $short_uint_var:short unsigned int $int_var:int $const_int_= var:int const $volatile_int_var:int volatile $ptr_int_var:int* $ptr_const_i= nt_var:int const* $int_ptr_const_var:int* const $ptr_volatile_int_var:int v= olatile* $int_ptr_volatile_var:int* volatile $uint_var:unsigned int $long_i= nt_var:long int $const_long_int_var:long int const $volatile_long_int_var:l= ong int volatile $ptr_long_int_var:long int* $ptr_const_long_int_var:long i= nt const* $long_int_ptr_const_var:long int* const $ptr_volatile_long_int_va= r:long int volatile* $long_int_ptr_volatile_var:long int* volatile $long_lo= ng_int_var:long long int $const_long_long_int_var:long long int const $vola= tile_long_long_int_var:long long int volatile $ptr_long_long_int_var:long l= ong int* $ptr_const_long_long_int_var:long long int const* $long_long_int_p= tr_const_var:long long int* const $ptr_volatile_long_long_int_var:long long= int volatile* $long_long_int_ptr_volatile_var:long long int* volatile $arr= _char:char[] $bitfields_a_var:struct {...} $bitfields_b_var:struct {...} $a= rgc:int $argv:char**=0D process("./sdt_types.x").mark("unsigned_int_var") $arg1:unsigned int $arg2:= int $arg3:unsigned int* $char_var:char $const_char_var:char const $volatile= _char_var:char volatile $ptr_char_var:char* $ptr_const_char_var:char const*= $char_ptr_const_var:char* const $ptr_volatile_char_var:char volatile* $cha= r_ptr_volatile_var:char* volatile $short_int_var:short int $const_short_int= _var:short int const $volatile_short_int_var:short int volatile $ptr_short_= int_var:short int* $ptr_const_short_int_var:short int const* $short_int_ptr= _const_var:short int* const $ptr_volatile_short_int_var:short int volatile*= $short_int_ptr_volatile_var:short int* volatile $short_uint_var:short unsi= gned int $int_var:int $const_int_var:int const $volatile_int_var:int volati= le $ptr_int_var:int* $ptr_const_int_var:int const* $int_ptr_const_var:int* = const $ptr_volatile_int_var:int volatile* $int_ptr_volatile_var:int* volati= le $uint_var:unsigned int $long_int_var:long int $const_long_int_var:long i= nt const $volatile_long_int_var:long int volatile $ptr_long_int_var:long in= t* $ptr_const_long_int_var:long int const* $long_int_ptr_const_var:long int= * const $ptr_volatile_long_int_var:long int volatile* $long_int_ptr_volatil= e_var:long int* volatile $long_long_int_var:long long int $const_long_long_= int_var:long long int const $volatile_long_long_int_var:long long int volat= ile $ptr_long_long_int_var:long long int* $ptr_const_long_long_int_var:long= long int const* $long_long_int_ptr_const_var:long long int* const $ptr_vol= atile_long_long_int_var:long long int volatile* $long_long_int_ptr_volatile= _var:long long int* volatile $arr_char:char[] $bitfields_a_var:struct {...}= $bitfields_b_var:struct {...} $argc:int $argv:char**=0D process("./sdt_types.x").mark("unsigned_short_int_var") $arg1:short unsigne= d int $arg2:int $arg3:short unsigned int* $char_var:char $const_char_var:ch= ar const $volatile_char_var:char volatile $ptr_char_var:char* $ptr_const_ch= ar_var:char const* $char_ptr_const_var:char* const $ptr_volatile_char_var:c= har volatile* $char_ptr_volatile_var:char* volatile $short_int_var:short in= t $const_short_int_var:short int const $volatile_short_int_var:short int vo= latile $ptr_short_int_var:short int* $ptr_const_short_int_var:short int con= st* $short_int_ptr_const_var:short int* const $ptr_volatile_short_int_var:s= hort int volatile* $short_int_ptr_volatile_var:short int* volatile $short_u= int_var:short unsigned int $int_var:int $const_int_var:int const $volatile_= int_var:int volatile $ptr_int_var:int* $ptr_const_int_var:int const* $int_p= tr_const_var:int* const $ptr_volatile_int_var:int volatile* $int_ptr_volati= le_var:int* volatile $uint_var:unsigned int $long_int_var:long int $const_l= ong_int_var:long int const $volatile_long_int_var:long int volatile $ptr_lo= ng_int_var:long int* $ptr_const_long_int_var:long int const* $long_int_ptr_= const_var:long int* const $ptr_volatile_long_int_var:long int volatile* $lo= ng_int_ptr_volatile_var:long int* volatile $long_long_int_var:long long int= $const_long_long_int_var:long long int const $volatile_long_long_int_var:l= ong long int volatile $ptr_long_long_int_var:long long int* $ptr_const_long= _long_int_var:long long int const* $long_long_int_ptr_const_var:long long i= nt* const $ptr_volatile_long_long_int_var:long long int volatile* $long_lon= g_int_ptr_volatile_var:long long int* volatile $arr_char:char[] $bitfields_= a_var:struct {...} $bitfields_b_var:struct {...} $argc:int $argv:char**=0D process("./sdt_types.x").mark("volatile_char_var") $arg1:char volatile $cha= r_var:char $const_char_var:char const $volatile_char_var:char volatile $ptr= _char_var:char* $ptr_const_char_var:char const* $char_ptr_const_var:char* c= onst $ptr_volatile_char_var:char volatile* $char_ptr_volatile_var:char* vol= atile $short_int_var:short int $const_short_int_var:short int const $volati= le_short_int_var:short int volatile $ptr_short_int_var:short int* $ptr_cons= t_short_int_var:short int const* $short_int_ptr_const_var:short int* const = $ptr_volatile_short_int_var:short int volatile* $short_int_ptr_volatile_var= :short int* volatile $short_uint_var:short unsigned int $int_var:int $const= _int_var:int const $volatile_int_var:int volatile $ptr_int_var:int* $ptr_co= nst_int_var:int const* $int_ptr_const_var:int* const $ptr_volatile_int_var:= int volatile* $int_ptr_volatile_var:int* volatile $uint_var:unsigned int $l= ong_int_var:long int $const_long_int_var:long int const $volatile_long_int_= var:long int volatile $ptr_long_int_var:long int* $ptr_const_long_int_var:l= ong int const* $long_int_ptr_const_var:long int* const $ptr_volatile_long_i= nt_var:long int volatile* $long_int_ptr_volatile_var:long int* volatile $lo= ng_long_int_var:long long int $const_long_long_int_var:long long int const = $volatile_long_long_int_var:long long int volatile $ptr_long_long_int_var:l= ong long int* $ptr_const_long_long_int_var:long long int const* $long_long_= int_ptr_const_var:long long int* const $ptr_volatile_long_long_int_var:long= long int volatile* $long_long_int_ptr_volatile_var:long long int* volatile= $arr_char:char[] $bitfields_a_var:struct {...} $bitfields_b_var:struct {..= .} $argc:int $argv:char**=0D process("./sdt_types.x").mark("volatile_int_var") $arg1:int volatile $char_= var:char $const_char_var:char const $volatile_char_var:char volatile $ptr_c= har_var:char* $ptr_const_char_var:char const* $char_ptr_const_var:char* con= st $ptr_volatile_char_var:char volatile* $char_ptr_volatile_var:char* volat= ile $short_int_var:short int $const_short_int_var:short int const $volatile= _short_int_var:short int volatile $ptr_short_int_var:short int* $ptr_const_= short_int_var:short int const* $short_int_ptr_const_var:short int* const $p= tr_volatile_short_int_var:short int volatile* $short_int_ptr_volatile_var:s= hort int* volatile $short_uint_var:short unsigned int $int_var:int $const_i= nt_var:int const $volatile_int_var:int volatile $ptr_int_var:int* $ptr_cons= t_int_var:int const* $int_ptr_const_var:int* const $ptr_volatile_int_var:in= t volatile* $int_ptr_volatile_var:int* volatile $uint_var:unsigned int $lon= g_int_var:long int $const_long_int_var:long int const $volatile_long_int_va= r:long int volatile $ptr_long_int_var:long int* $ptr_const_long_int_var:lon= g int const* $long_int_ptr_const_var:long int* const $ptr_volatile_long_int= _var:long int volatile* $long_int_ptr_volatile_var:long int* volatile $long= _long_int_var:long long int $const_long_long_int_var:long long int const $v= olatile_long_long_int_var:long long int volatile $ptr_long_long_int_var:lon= g long int* $ptr_const_long_long_int_var:long long int const* $long_long_in= t_ptr_const_var:long long int* const $ptr_volatile_long_long_int_var:long l= ong int volatile* $long_long_int_ptr_volatile_var:long long int* volatile $= arr_char:char[] $bitfields_a_var:struct {...} $bitfields_b_var:struct {...}= $argc:int $argv:char**=0D process("./sdt_types.x").mark("volatile_long_int_var") $arg1:long int volat= ile $char_var:char $const_char_var:char const $volatile_char_var:char volat= ile $ptr_char_var:char* $ptr_const_char_var:char const* $char_ptr_const_var= :char* const $ptr_volatile_char_var:char volatile* $char_ptr_volatile_var:c= har* volatile $short_int_var:short int $const_short_int_var:short int const= $volatile_short_int_var:short int volatile $ptr_short_int_var:short int* $= ptr_const_short_int_var:short int const* $short_int_ptr_const_var:short int= * const $ptr_volatile_short_int_var:short int volatile* $short_int_ptr_vola= tile_var:short int* volatile $short_uint_var:short unsigned int $int_var:in= t $const_int_var:int const $volatile_int_var:int volatile $ptr_int_var:int*= $ptr_const_int_var:int const* $int_ptr_const_var:int* const $ptr_volatile_= int_var:int volatile* $int_ptr_volatile_var:int* volatile $uint_var:unsigne= d int $long_int_var:long int $const_long_int_var:long int const $volatile_l= ong_int_var:long int volatile $ptr_long_int_var:long int* $ptr_const_long_i= nt_var:long int const* $long_int_ptr_const_var:long int* const $ptr_volatil= e_long_int_var:long int volatile* $long_int_ptr_volatile_var:long int* vola= tile $long_long_int_var:long long int $const_long_long_int_var:long long in= t const $volatile_long_long_int_var:long long int volatile $ptr_long_long_i= nt_var:long long int* $ptr_const_long_long_int_var:long long int const* $lo= ng_long_int_ptr_const_var:long long int* const $ptr_volatile_long_long_int_= var:long long int volatile* $long_long_int_ptr_volatile_var:long long int* = volatile $arr_char:char[] $bitfields_a_var:struct {...} $bitfields_b_var:st= ruct {...} $argc:int $argv:char**=0D process("./sdt_types.x").mark("volatile_long_long_int_var") $arg1:long long= int volatile $char_var:char $const_char_var:char const $volatile_char_var:= char volatile $ptr_char_var:char* $ptr_const_char_var:char const* $char_ptr= _const_var:char* const $ptr_volatile_char_var:char volatile* $char_ptr_vola= tile_var:char* volatile $short_int_var:short int $const_short_int_var:short= int const $volatile_short_int_var:short int volatile $ptr_short_int_var:sh= ort int* $ptr_const_short_int_var:short int const* $short_int_ptr_const_var= :short int* const $ptr_volatile_short_int_var:short int volatile* $short_in= t_ptr_volatile_var:short int* volatile $short_uint_var:short unsigned int $= int_var:int $const_int_var:int const $volatile_int_var:int volatile $ptr_in= t_var:int* $ptr_const_int_var:int const* $int_ptr_const_var:int* const $ptr= _volatile_int_var:int volatile* $int_ptr_volatile_var:int* volatile $uint_v= ar:unsigned int $long_int_var:long int $const_long_int_var:long int const $= volatile_long_int_var:long int volatile $ptr_long_int_var:long int* $ptr_co= nst_long_int_var:long int const* $long_int_ptr_const_var:long int* const $p= tr_volatile_long_int_var:long int volatile* $long_int_ptr_volatile_var:long= int* volatile $long_long_int_var:long long int $const_long_long_int_var:lo= ng long int const $volatile_long_long_int_var:long long int volatile $ptr_l= ong_long_int_var:long long int* $ptr_const_long_long_int_var:long long int = const* $long_long_int_ptr_const_var:long long int* const $ptr_volatile_long= _long_int_var:long long int volatile* $long_long_int_ptr_volatile_var:long = long int* volatile $arr_char:char[] $bitfields_a_var:struct {...} $bitfield= s_b_var:struct {...} $argc:int $argv:char**=0D process("./sdt_types.x").mark("volatile_short_int_var") $arg1:short int vol= atile $char_var:char $const_char_var:char const $volatile_char_var:char vol= atile $ptr_char_var:char* $ptr_const_char_var:char const* $char_ptr_const_v= ar:char* const $ptr_volatile_char_var:char volatile* $char_ptr_volatile_var= :char* volatile $short_int_var:short int $const_short_int_var:short int con= st $volatile_short_int_var:short int volatile $ptr_short_int_var:short int*= $ptr_const_short_int_var:short int const* $short_int_ptr_const_var:short i= nt* const $ptr_volatile_short_int_var:short int volatile* $short_int_ptr_vo= latile_var:short int* volatile $short_uint_var:short unsigned int $int_var:= int $const_int_var:int const $volatile_int_var:int volatile $ptr_int_var:in= t* $ptr_const_int_var:int const* $int_ptr_const_var:int* const $ptr_volatil= e_int_var:int volatile* $int_ptr_volatile_var:int* volatile $uint_var:unsig= ned int $long_int_var:long int $const_long_int_var:long int const $volatile= _long_int_var:long int volatile $ptr_long_int_var:long int* $ptr_const_long= _int_var:long int const* $long_int_ptr_const_var:long int* const $ptr_volat= ile_long_int_var:long int volatile* $long_int_ptr_volatile_var:long int* vo= latile $long_long_int_var:long long int $const_long_long_int_var:long long = int const $volatile_long_long_int_var:long long int volatile $ptr_long_long= _int_var:long long int* $ptr_const_long_long_int_var:long long int const* $= long_long_int_ptr_const_var:long long int* const $ptr_volatile_long_long_in= t_var:long long int volatile* $long_long_int_ptr_volatile_var:long long int= * volatile $arr_char:char[] $bitfields_a_var:struct {...} $bitfields_b_var:= struct {...} $argc:int $argv:char**=0D spawn /usr/local/bin/stap -l process("./sdt_types.x").mark("*-*-*")=0D process("./sdt_types.x").mark("something__dash__dash__something")=0D FAIL: sdt_misc wildcard (48) V1_uprobe Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t_misc.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/inc= lude -Wall -Werror /home/prasadkr/systemtap/testsuite/sdt_misc_.o -I. -g -D= STAP_SDT_V1 -g -DNO_SLEEP -lm -o /home/prasadkr/systemtap/testsuite/sdt_= misc_V1_uprobe_types.x (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt_misc.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/in= clude -Wall -Werror /home/prasadkr/systemtap/testsuite/sdt_misc_.o -I. -g -= DSTAP_SDT_V1 -g -DNO_SLEEP -lm -o /home/prasadkr/systemtap/testsuite/sdt_mi= sc_V1_uprobe_types.x=0D PASS: sdt_misc compiling -g V1_uprobe --types spawn /usr/local/bin/stap -c /home/prasadkr/systemtap/testsuite/sdt_misc_V1= _uprobe_types.x -e "probe process("/home/prasadkr/systemtap/testsuite/sdt_m= isc_V1_uprobe_types.x").mark("test_probe_4") {printf("In %s dtrace probe %#= x %#x\n", $$name, $arg1->a, $arg1->b)}" spawn /usr/local/bin/stap -c /home/prasadkr/systemtap/testsuite/sdt_misc_V1= _uprobe_types.x -e probe process("/home/prasadkr/systemtap/testsuite/sdt_mi= sc_V1_uprobe_types.x").mark("test_probe_4") {printf("In %s dtrace probe %#x= %#x\n", $$name, $arg1->a, $arg1->b)}=0D In test_probe_4 dtrace probe 0x4 0x5=0D PASS: sdt_misc V1_uprobe --types /usr/local/bin/dtrace -DSTAP_SDT_V2 --types -h -s /home/prasadkr/systemtap/= testsuite/systemtap.base/sdt_misc_.d /usr/local/bin/dtrace -DSTAP_SDT_V2 --types -G -s /home/prasadkr/systemtap/= testsuite/systemtap.base/sdt_misc_.d PASS: sdt_misc dtrace -DSTAP_SDT_V2 Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t_misc.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/inc= lude -Wall -Werror /home/prasadkr/systemtap/testsuite/sdt_misc_.o -I. -DEXP= ERIMENTAL_KPROBE_SDT -DSTAP_SDT_V2 -lm -o /home/prasadkr/systemtap/tests= uite/sdt_misc_V2_kprobe.x (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt_misc.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/in= clude -Wall -Werror /home/prasadkr/systemtap/testsuite/sdt_misc_.o -I. -DEX= PERIMENTAL_KPROBE_SDT -DSTAP_SDT_V2 -lm -o /home/prasadkr/systemtap/testsui= te/sdt_misc_V2_kprobe.x=0D PASS: sdt_misc compiling V2_kprobe spawn /usr/local/bin/stap -c /home/prasadkr/systemtap/testsuite/sdt_misc_V2= _kprobe.x /home/prasadkr/systemtap/testsuite/systemtap.base/sdt_misc.stp /h= ome/prasadkr/systemtap/testsuite/sdt_misc_V2_kprobe.x spawn /usr/local/bin/stap -c /home/prasadkr/systemtap/testsuite/sdt_misc_V2= _kprobe.x /home/prasadkr/systemtap/testsuite/systemtap.base/sdt_misc.stp /h= ome/prasadkr/systemtap/testsuite/sdt_misc_V2_kprobe.x=0D In test_probe_2 probe 0x2=0D In test_probe_2 probe 0x2=0D In test_probe_0 probe 0x3=0D In test_probe_3 probe 0x3 0x10000e90=0D In test_probe_4 dtrace probe 0xfffff53f668=0D In test_probe_1 probe 0x0=0D PASS: sdt_misc V2_kprobe Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t_misc.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/inc= lude -Wall -Werror /home/prasadkr/systemtap/testsuite/sdt_misc_.o -I. -DEXP= ERIMENTAL_KPROBE_SDT -DSTAP_SDT_V2 -DLOOP -lm -o /home/prasadkr/systemta= p/testsuite/sdt_misc_V2_kprobe_loop.x (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt_misc.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/in= clude -Wall -Werror /home/prasadkr/systemtap/testsuite/sdt_misc_.o -I. -DEX= PERIMENTAL_KPROBE_SDT -DSTAP_SDT_V2 -DLOOP -lm -o /home/prasadkr/systemtap/= testsuite/sdt_misc_V2_kprobe_loop.x=0D PASS: sdt_misc compiling V2_kprobe -DLOOP /home/prasadkr/systemtap/testsuite/sdt_misc_V2_kprobe_loop.x >| ,semclean 2= >&1 & TEST=3D$! ; /usr/local/bin/stap /home/prasadkr/systemtap/testsuite/s= ystemtap.base/sdt_misc.stp /home/prasadkr/systemtap/testsuite/sdt_misc_V2_k= probe_loop.x >| ,semout ; /usr/bin/kill -SIGINT $TEST spawn cat ,semout=0D In test_probe_2 probe 0x2=0D In test_probe_2 probe 0x2=0D In test_probe_0 probe 0x3=0D In test_probe_3 probe 0x3 0x10000f28=0D In test_probe_4 dtrace probe 0xfffdc8aad68=0D In test_probe_1 probe 0x0=0D PASS: sdt_misc V2_kprobe attach spawn cat ,semclean=0D PASS epilogue test_probe_0_semaphore=3D0=0D PASS epilogue test_probe_2_semaphore=3D0=0D PASS epilogue test_probe_3_semaphore=3D0=0D PASS epilogue test_probe_4_semaphore=3D0=0D PASS: sdt_misc V2_kprobe epilogue Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/in= clude -Wall -Werror -I. -DEXPERIMENTAL_KPROBE_SDT -DSTAP_SDT_V2 -O2 -m64 -= lm -o sdt_types.x (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/i= nclude -Wall -Werror -I. -DEXPERIMENTAL_KPROBE_SDT -DSTAP_SDT_V2 -O2 -m64 -= lm -o sdt_types.x=0D PASS: sdt_misc compiling types V2_kprobe -O2=20 spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x # V2_kprobe -O2 spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_small_var")=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_bit_var")=0D Pass 2: analysis failed. Try again with another '--vp 01' option.=0D XFAIL: sdt_misc types types V2_kprobe -O2 Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/in= clude -Wall -Werror -I. -DEXPERIMENTAL_KPROBE_SDT -DSTAP_SDT_V2 -O3 -m64 -= lm -o sdt_types.x (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/i= nclude -Wall -Werror -I. -DEXPERIMENTAL_KPROBE_SDT -DSTAP_SDT_V2 -O3 -m64 -= lm -o sdt_types.x=0D PASS: sdt_misc compiling types V2_kprobe -O3=20 spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x # V2_kprobe -O3 spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_small_var")=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_bit_var")=0D Pass 2: analysis failed. Try again with another '--vp 01' option.=0D XFAIL: sdt_misc types types V2_kprobe -O3 Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/in= clude -Wall -Werror -I. -DEXPERIMENTAL_KPROBE_SDT -DSTAP_SDT_V2 -std=3Dc89 = -DNO_LONG_LONG -m64 -lm -o sdt_types.x (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/i= nclude -Wall -Werror -I. -DEXPERIMENTAL_KPROBE_SDT -DSTAP_SDT_V2 -std=3Dc89= -DNO_LONG_LONG -m64 -lm -o sdt_types.x=0D PASS: sdt_misc compiling types V2_kprobe c89=20 spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x # V2_kprobe c89 spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_small_var")=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_bit_var")=0D Pass 2: analysis failed. Try again with another '--vp 01' option.=0D XFAIL: sdt_misc types types V2_kprobe c89 Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/in= clude -Wall -Werror -I. -DEXPERIMENTAL_KPROBE_SDT -DSTAP_SDT_V2 -std=3Dc89 = -pedantic -DNO_LONG_LONG -m64 -lm -o sdt_types.x (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/i= nclude -Wall -Werror -I. -DEXPERIMENTAL_KPROBE_SDT -DSTAP_SDT_V2 -std=3Dc89= -pedantic -DNO_LONG_LONG -m64 -lm -o sdt_types.x=0D PASS: sdt_misc compiling types V2_kprobe c89 -pedantic spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x # V2_kprobe c89 spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_small_var")=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_bit_var")=0D Pass 2: analysis failed. Try again with another '--vp 01' option.=0D XFAIL: sdt_misc types types V2_kprobe c89 Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/in= clude -Wall -Werror -I. -DEXPERIMENTAL_KPROBE_SDT -DSTAP_SDT_V2 -std=3Dc99 = -m64 -lm -o sdt_types.x (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/i= nclude -Wall -Werror -I. -DEXPERIMENTAL_KPROBE_SDT -DSTAP_SDT_V2 -std=3Dc99= -m64 -lm -o sdt_types.x=0D PASS: sdt_misc compiling types V2_kprobe c99=20 spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x # V2_kprobe c99 spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_small_var")=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_bit_var")=0D Pass 2: analysis failed. Try again with another '--vp 01' option.=0D XFAIL: sdt_misc types types V2_kprobe c99 Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/in= clude -Wall -Werror -I. -DEXPERIMENTAL_KPROBE_SDT -DSTAP_SDT_V2 -std=3Dc99 = -pedantic -m64 -lm -o sdt_types.x (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/i= nclude -Wall -Werror -I. -DEXPERIMENTAL_KPROBE_SDT -DSTAP_SDT_V2 -std=3Dc99= -pedantic -m64 -lm -o sdt_types.x=0D PASS: sdt_misc compiling types V2_kprobe c99 -pedantic spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x # V2_kprobe c99 spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_small_var")=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_bit_var")=0D Pass 2: analysis failed. Try again with another '--vp 01' option.=0D XFAIL: sdt_misc types types V2_kprobe c99 Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/in= clude -Wall -Werror -I. -DEXPERIMENTAL_KPROBE_SDT -DSTAP_SDT_V2 -std=3Dgnu9= 9 -m64 -lm -o sdt_types.x (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/i= nclude -Wall -Werror -I. -DEXPERIMENTAL_KPROBE_SDT -DSTAP_SDT_V2 -std=3Dgnu= 99 -m64 -lm -o sdt_types.x=0D PASS: sdt_misc compiling types V2_kprobe gnu99=20 spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x # V2_kprobe gnu99 spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_small_var")=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_bit_var")=0D Pass 2: analysis failed. Try again with another '--vp 01' option.=0D XFAIL: sdt_misc types types V2_kprobe gnu99 Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/in= clude -Wall -Werror -I. -DEXPERIMENTAL_KPROBE_SDT -DSTAP_SDT_V2 -std=3Dgnu9= 9 -pedantic -m64 -lm -o sdt_types.x (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/i= nclude -Wall -Werror -I. -DEXPERIMENTAL_KPROBE_SDT -DSTAP_SDT_V2 -std=3Dgnu= 99 -pedantic -m64 -lm -o sdt_types.x=0D PASS: sdt_misc compiling types V2_kprobe gnu99 -pedantic spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x # V2_kprobe gnu99 spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_small_var")=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_bit_var")=0D Pass 2: analysis failed. Try again with another '--vp 01' option.=0D XFAIL: sdt_misc types types V2_kprobe gnu99 Executing on host: g++ /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/in= clude -Wall -Werror -I. -DEXPERIMENTAL_KPROBE_SDT -DSTAP_SDT_V2 -std=3Dc++= 98 -x c++ -DNO_LONG_LONG -m64 -lm -o sdt_types.x (timeout =3D 300) spawn -ignore SIGHUP g++ /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/i= nclude -Wall -Werror -I. -DEXPERIMENTAL_KPROBE_SDT -DSTAP_SDT_V2 -std=3Dc++= 98 -x c++ -DNO_LONG_LONG -m64 -lm -o sdt_types.x=0D PASS: sdt_misc compiling types V2_kprobe c++98=20 spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x # V2_kprobe c++98 spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_small_var")=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_bit_var")=0D Pass 2: analysis failed. Try again with another '--vp 01' option.=0D XFAIL: sdt_misc types types V2_kprobe c++98 Executing on host: g++ /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/in= clude -Wall -Werror -I. -DEXPERIMENTAL_KPROBE_SDT -DSTAP_SDT_V2 -std=3Dc++= 98 -x c++ -pedantic -DNO_LONG_LONG -m64 -lm -o sdt_types.x (timeout = =3D 300) spawn -ignore SIGHUP g++ /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/i= nclude -Wall -Werror -I. -DEXPERIMENTAL_KPROBE_SDT -DSTAP_SDT_V2 -std=3Dc++= 98 -x c++ -pedantic -DNO_LONG_LONG -m64 -lm -o sdt_types.x=0D PASS: sdt_misc compiling types V2_kprobe c++98 -pedantic spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x # V2_kprobe c++98 spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_small_var")=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_bit_var")=0D Pass 2: analysis failed. Try again with another '--vp 01' option.=0D XFAIL: sdt_misc types types V2_kprobe c++98 Executing on host: g++ /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/in= clude -Wall -Werror -I. -DEXPERIMENTAL_KPROBE_SDT -DSTAP_SDT_V2 -std=3Dgnu= ++98 -x c++ -DNO_LONG_LONG -m64 -lm -o sdt_types.x (timeout =3D 300) spawn -ignore SIGHUP g++ /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/i= nclude -Wall -Werror -I. -DEXPERIMENTAL_KPROBE_SDT -DSTAP_SDT_V2 -std=3Dgnu= ++98 -x c++ -DNO_LONG_LONG -m64 -lm -o sdt_types.x=0D PASS: sdt_misc compiling types V2_kprobe gnu++98=20 spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x # V2_kprobe gnu++98 spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_small_var")=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_bit_var")=0D Pass 2: analysis failed. Try again with another '--vp 01' option.=0D XFAIL: sdt_misc types types V2_kprobe gnu++98 Executing on host: g++ /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/in= clude -Wall -Werror -I. -DEXPERIMENTAL_KPROBE_SDT -DSTAP_SDT_V2 -std=3Dgnu= ++98 -x c++ -pedantic -DNO_LONG_LONG -m64 -lm -o sdt_types.x (timeou= t =3D 300) spawn -ignore SIGHUP g++ /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/i= nclude -Wall -Werror -I. -DEXPERIMENTAL_KPROBE_SDT -DSTAP_SDT_V2 -std=3Dgnu= ++98 -x c++ -pedantic -DNO_LONG_LONG -m64 -lm -o sdt_types.x=0D PASS: sdt_misc compiling types V2_kprobe gnu++98 -pedantic spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x # V2_kprobe gnu++98 spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_small_var")=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_bit_var")=0D Pass 2: analysis failed. Try again with another '--vp 01' option.=0D XFAIL: sdt_misc types types V2_kprobe gnu++98 Executing on host: g++ /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/in= clude -Wall -Werror -I. -DEXPERIMENTAL_KPROBE_SDT -DSTAP_SDT_V2 -std=3Dc++= 0x -x c++ -m64 -lm -o sdt_types.x (timeout =3D 300) spawn -ignore SIGHUP g++ /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/i= nclude -Wall -Werror -I. -DEXPERIMENTAL_KPROBE_SDT -DSTAP_SDT_V2 -std=3Dc++= 0x -x c++ -m64 -lm -o sdt_types.x=0D PASS: sdt_misc compiling types V2_kprobe c++0x=20 spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x # V2_kprobe c++0x spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_small_var")=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_bit_var")=0D Pass 2: analysis failed. Try again with another '--vp 01' option.=0D XFAIL: sdt_misc types types V2_kprobe c++0x Executing on host: g++ /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/in= clude -Wall -Werror -I. -DEXPERIMENTAL_KPROBE_SDT -DSTAP_SDT_V2 -std=3Dc++= 0x -x c++ -pedantic -m64 -lm -o sdt_types.x (timeout =3D 300) spawn -ignore SIGHUP g++ /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/i= nclude -Wall -Werror -I. -DEXPERIMENTAL_KPROBE_SDT -DSTAP_SDT_V2 -std=3Dc++= 0x -x c++ -pedantic -m64 -lm -o sdt_types.x=0D PASS: sdt_misc compiling types V2_kprobe c++0x -pedantic spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x # V2_kprobe c++0x spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_small_var")=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_bit_var")=0D Pass 2: analysis failed. Try again with another '--vp 01' option.=0D XFAIL: sdt_misc types types V2_kprobe c++0x Executing on host: g++ /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/in= clude -Wall -Werror -I. -DEXPERIMENTAL_KPROBE_SDT -DSTAP_SDT_V2 -std=3Dgnu= ++0x -x c++ -m64 -lm -o sdt_types.x (timeout =3D 300) spawn -ignore SIGHUP g++ /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/i= nclude -Wall -Werror -I. -DEXPERIMENTAL_KPROBE_SDT -DSTAP_SDT_V2 -std=3Dgnu= ++0x -x c++ -m64 -lm -o sdt_types.x=0D PASS: sdt_misc compiling types V2_kprobe gnu++0x=20 spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x # V2_kprobe gnu++0x spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_small_var")=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_bit_var")=0D Pass 2: analysis failed. Try again with another '--vp 01' option.=0D XFAIL: sdt_misc types types V2_kprobe gnu++0x Executing on host: g++ /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/in= clude -Wall -Werror -I. -DEXPERIMENTAL_KPROBE_SDT -DSTAP_SDT_V2 -std=3Dgnu= ++0x -x c++ -pedantic -m64 -lm -o sdt_types.x (timeout =3D 300) spawn -ignore SIGHUP g++ /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/i= nclude -Wall -Werror -I. -DEXPERIMENTAL_KPROBE_SDT -DSTAP_SDT_V2 -std=3Dgnu= ++0x -x c++ -pedantic -m64 -lm -o sdt_types.x=0D PASS: sdt_misc compiling types V2_kprobe gnu++0x -pedantic spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x # V2_kprobe gnu++0x spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_small_var")=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_bit_var")=0D Pass 2: analysis failed. Try again with another '--vp 01' option.=0D XFAIL: sdt_misc types types V2_kprobe gnu++0x Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t_misc.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/inc= lude -Wall -Werror /home/prasadkr/systemtap/testsuite/sdt_misc_.o -I. -DEXP= ERIMENTAL_KPROBE_SDT -DSTAP_SDT_V2 -shared -fPIC -DNO_MAIN -lm -o /home/= prasadkr/systemtap/testsuite/libsdt_V2_kprobe.so (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt_misc.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/in= clude -Wall -Werror /home/prasadkr/systemtap/testsuite/sdt_misc_.o -I. -DEX= PERIMENTAL_KPROBE_SDT -DSTAP_SDT_V2 -shared -fPIC -DNO_MAIN -lm -o /home/pr= asadkr/systemtap/testsuite/libsdt_V2_kprobe.so=0D Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t_misc.c -Wl,-rpath,/home/prasadkr/systemtap/testsuite -L/home/prasadkr/sy= stemtap/testsuite -lsdt_V2_kprobe -DONLY_MAIN -lm -o /home/prasadkr/syst= emtap/testsuite/sdt_misc_V2_kprobe_shared.x (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt_misc.c -Wl,-rpath,/home/prasadkr/systemtap/testsuite -L/home/prasadkr/s= ystemtap/testsuite -lsdt_V2_kprobe -DONLY_MAIN -lm -o /home/prasadkr/system= tap/testsuite/sdt_misc_V2_kprobe_shared.x=0D PASS: sdt_misc compiling -shared V2_kprobe spawn /usr/local/bin/stap -c /home/prasadkr/systemtap/testsuite/sdt_misc_V2= _kprobe_shared.x /home/prasadkr/systemtap/testsuite/systemtap.base/sdt_misc= .stp /home/prasadkr/systemtap/testsuite/sdt_misc_V2_kprobe_shared.x /home/p= rasadkr/systemtap/testsuite/libsdt_V2_kprobe.so spawn /usr/local/bin/stap -c /home/prasadkr/systemtap/testsuite/sdt_misc_V2= _kprobe_shared.x /home/prasadkr/systemtap/testsuite/systemtap.base/sdt_misc= .stp /home/prasadkr/systemtap/testsuite/sdt_misc_V2_kprobe_shared.x /home/p= rasadkr/systemtap/testsuite/libsdt_V2_kprobe.so=0D In test_probe_2 probe 0x2=0D In test_probe_1 probe 0x0=0D FAIL: sdt_misc (2) shared V2_kprobe Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t_misc.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/inc= lude -Wall -Werror /home/prasadkr/systemtap/testsuite/sdt_misc_.o -I. -DEXP= ERIMENTAL_KPROBE_SDT -DSTAP_SDT_V2 -shared -fPIC -DNO_MAIN -DLOOP -lm -o= /home/prasadkr/systemtap/testsuite/libsdt_V2_kprobe_loop.so (timeout = =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt_misc.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/in= clude -Wall -Werror /home/prasadkr/systemtap/testsuite/sdt_misc_.o -I. -DEX= PERIMENTAL_KPROBE_SDT -DSTAP_SDT_V2 -shared -fPIC -DNO_MAIN -DLOOP -lm -o /= home/prasadkr/systemtap/testsuite/libsdt_V2_kprobe_loop.so=0D Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t_misc.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/inc= lude -I. -DEXPERIMENTAL_KPROBE_SDT -DSTAP_SDT_V2 -DLOOP -DONLY_MAIN -Wl,-rp= ath,/home/prasadkr/systemtap/testsuite -L/home/prasadkr/systemtap/testsuite= -lsdt_V2_kprobe_loop -lm -o /home/prasadkr/systemtap/testsuite/sdt_misc= _V2_kprobe_loop_shared.x (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt_misc.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/in= clude -I. -DEXPERIMENTAL_KPROBE_SDT -DSTAP_SDT_V2 -DLOOP -DONLY_MAIN -Wl,-r= path,/home/prasadkr/systemtap/testsuite -L/home/prasadkr/systemtap/testsuit= e -lsdt_V2_kprobe_loop -lm -o /home/prasadkr/systemtap/testsuite/sdt_misc_V= 2_kprobe_loop_shared.x=0D PASS: sdt_misc compiling V2_kprobe -DLOOP /home/prasadkr/systemtap/testsuite/sdt_misc_V2_kprobe_loop_shared.x >| ,sem= clean 2>&1 & TEST=3D$! ; /usr/local/bin/stap /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_misc.stp /home/prasadkr/systemtap/testsuite/sdt_mi= sc_V2_kprobe_loop_shared.x /home/prasadkr/systemtap/testsuite/libsdt_V2_kpr= obe_loop.so >| ,semout ; /usr/bin/kill -SIGINT $TEST spawn cat ,semout=0D FAIL: sdt_misc (0) V2_kprobe shared attach spawn cat ,semclean=0D PASS epilogue test_probe_0_semaphore=3D0=0D PASS epilogue test_probe_2_semaphore=3D0=0D PASS epilogue test_probe_3_semaphore=3D0=0D PASS epilogue test_probe_4_semaphore=3D0=0D PASS: sdt_misc V2_kprobe shared shared epilogue spawn /usr/local/bin/stap -L "process("./sdt_types.x").mark("*") spawn /usr/local/bin/stap -L process("./sdt_types.x").mark("*")=0D process("./sdt_types.x").mark("arr_char")=0D process("./sdt_types.x").mark("bitfields_a_var")=0D process("./sdt_types.x").mark("bitfields_b_var")=0D process("./sdt_types.x").mark("char_ptr_const_var")=0D process("./sdt_types.x").mark("char_ptr_volatile_var")=0D process("./sdt_types.x").mark("char_var")=0D process("./sdt_types.x").mark("const_char_var")=0D process("./sdt_types.x").mark("const_int_var")=0D process("./sdt_types.x").mark("const_long_int_var")=0D process("./sdt_types.x").mark("const_long_long_int_var")=0D process("./sdt_types.x").mark("const_short_int_var")=0D process("./sdt_types.x").mark("constants")=0D process("./sdt_types.x").mark("int_ptr_const_var")=0D process("./sdt_types.x").mark("int_ptr_volatile_var")=0D process("./sdt_types.x").mark("int_var")=0D process("./sdt_types.x").mark("long_int_ptr_const_var")=0D process("./sdt_types.x").mark("long_int_ptr_volatile_var")=0D process("./sdt_types.x").mark("long_int_var")=0D process("./sdt_types.x").mark("long_long_int_ptr_const_var")=0D process("./sdt_types.x").mark("long_long_int_ptr_volatile_var")=0D process("./sdt_types.x").mark("long_long_int_var")=0D process("./sdt_types.x").mark("ptr_char_var")=0D process("./sdt_types.x").mark("ptr_const_char_var")=0D process("./sdt_types.x").mark("ptr_const_int_var")=0D process("./sdt_types.x").mark("ptr_const_long_int_var")=0D process("./sdt_types.x").mark("ptr_const_long_long_int_var")=0D process("./sdt_types.x").mark("ptr_const_short_int_var")=0D process("./sdt_types.x").mark("ptr_int_var")=0D process("./sdt_types.x").mark("ptr_long_int_var")=0D process("./sdt_types.x").mark("ptr_long_long_int_var")=0D process("./sdt_types.x").mark("ptr_short_int_var")=0D process("./sdt_types.x").mark("ptr_volatile_char_var")=0D process("./sdt_types.x").mark("ptr_volatile_int_var")=0D process("./sdt_types.x").mark("ptr_volatile_long_int_var")=0D process("./sdt_types.x").mark("ptr_volatile_long_long_int_var")=0D process("./sdt_types.x").mark("ptr_volatile_short_int_var")=0D process("./sdt_types.x").mark("short_int_ptr_const_var")=0D process("./sdt_types.x").mark("short_int_ptr_volatile_var")=0D process("./sdt_types.x").mark("short_int_var")=0D process("./sdt_types.x").mark("something__dash__dash__something")=0D process("./sdt_types.x").mark("unsigned_int_var")=0D process("./sdt_types.x").mark("unsigned_short_int_var")=0D process("./sdt_types.x").mark("volatile_char_var")=0D process("./sdt_types.x").mark("volatile_int_var")=0D process("./sdt_types.x").mark("volatile_long_int_var")=0D process("./sdt_types.x").mark("volatile_long_long_int_var")=0D process("./sdt_types.x").mark("volatile_short_int_var")=0D spawn /usr/local/bin/stap -l process("./sdt_types.x").mark("*-*-*")=0D process("./sdt_types.x").mark("something__dash__dash__something")=0D FAIL: sdt_misc wildcard (48) V2_kprobe Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t_misc.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/inc= lude -Wall -Werror /home/prasadkr/systemtap/testsuite/sdt_misc_.o -I. -DEXP= ERIMENTAL_KPROBE_SDT -DSTAP_SDT_V2 -g -DNO_SLEEP -lm -o /home/prasadkr/s= ystemtap/testsuite/sdt_misc_V2_kprobe_types.x (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt_misc.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/in= clude -Wall -Werror /home/prasadkr/systemtap/testsuite/sdt_misc_.o -I. -DEX= PERIMENTAL_KPROBE_SDT -DSTAP_SDT_V2 -g -DNO_SLEEP -lm -o /home/prasadkr/sys= temtap/testsuite/sdt_misc_V2_kprobe_types.x=0D PASS: sdt_misc compiling -g V2_kprobe --types spawn /usr/local/bin/stap -c /home/prasadkr/systemtap/testsuite/sdt_misc_V2= _kprobe_types.x -e "probe process("/home/prasadkr/systemtap/testsuite/sdt_m= isc_V2_kprobe_types.x").mark("test_probe_4") {printf("In %s dtrace probe %#= x %#x\n", $$name, $arg1->a, $arg1->b)}" spawn /usr/local/bin/stap -c /home/prasadkr/systemtap/testsuite/sdt_misc_V2= _kprobe_types.x -e probe process("/home/prasadkr/systemtap/testsuite/sdt_mi= sc_V2_kprobe_types.x").mark("test_probe_4") {printf("In %s dtrace probe %#x= %#x\n", $$name, $arg1->a, $arg1->b)}=0D In test_probe_4 dtrace probe 0x4 0x5=0D PASS: sdt_misc V2_kprobe --types /usr/local/bin/dtrace -DSTAP_SDT_V2 --types -h -s /home/prasadkr/systemtap/= testsuite/systemtap.base/sdt_misc_.d /usr/local/bin/dtrace -DSTAP_SDT_V2 --types -G -s /home/prasadkr/systemtap/= testsuite/systemtap.base/sdt_misc_.d PASS: sdt_misc dtrace -DSTAP_SDT_V2 Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t_misc.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/inc= lude -Wall -Werror /home/prasadkr/systemtap/testsuite/sdt_misc_.o -I. -DSTA= P_SDT_V2 -lm -o /home/prasadkr/systemtap/testsuite/sdt_misc_V2_uprobe.x = (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt_misc.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/in= clude -Wall -Werror /home/prasadkr/systemtap/testsuite/sdt_misc_.o -I. -DST= AP_SDT_V2 -lm -o /home/prasadkr/systemtap/testsuite/sdt_misc_V2_uprobe.x=0D PASS: sdt_misc compiling V2_uprobe spawn /usr/local/bin/stap -c /home/prasadkr/systemtap/testsuite/sdt_misc_V2= _uprobe.x /home/prasadkr/systemtap/testsuite/systemtap.base/sdt_misc.stp /h= ome/prasadkr/systemtap/testsuite/sdt_misc_V2_uprobe.x spawn /usr/local/bin/stap -c /home/prasadkr/systemtap/testsuite/sdt_misc_V2= _uprobe.x /home/prasadkr/systemtap/testsuite/systemtap.base/sdt_misc.stp /h= ome/prasadkr/systemtap/testsuite/sdt_misc_V2_uprobe.x=0D In test_probe_2 probe 0x2=0D In test_probe_2 probe 0x2=0D In test_probe_0 probe 0x3=0D In test_probe_3 probe 0x3 0x10000d38=0D In test_probe_4 dtrace probe 0xfffc5d9a158=0D In test_probe_1 probe 0x0=0D PASS: sdt_misc V2_uprobe Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t_misc.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/inc= lude -Wall -Werror /home/prasadkr/systemtap/testsuite/sdt_misc_.o -I. -DSTA= P_SDT_V2 -DLOOP -lm -o /home/prasadkr/systemtap/testsuite/sdt_misc_V2_up= robe_loop.x (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt_misc.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/in= clude -Wall -Werror /home/prasadkr/systemtap/testsuite/sdt_misc_.o -I. -DST= AP_SDT_V2 -DLOOP -lm -o /home/prasadkr/systemtap/testsuite/sdt_misc_V2_upro= be_loop.x=0D PASS: sdt_misc compiling V2_uprobe -DLOOP /home/prasadkr/systemtap/testsuite/sdt_misc_V2_uprobe_loop.x >| ,semclean 2= >&1 & TEST=3D$! ; /usr/local/bin/stap /home/prasadkr/systemtap/testsuite/s= ystemtap.base/sdt_misc.stp /home/prasadkr/systemtap/testsuite/sdt_misc_V2_u= probe_loop.x >| ,semout ; /usr/bin/kill -SIGINT $TEST spawn cat ,semout=0D In test_probe_2 probe 0x2=0D In test_probe_2 probe 0x2=0D In test_probe_0 probe 0x3=0D In test_probe_3 probe 0x3 0x10000de0=0D In test_probe_4 dtrace probe 0xfffedd013f8=0D In test_probe_1 probe 0x0=0D PASS: sdt_misc V2_uprobe attach spawn cat ,semclean=0D PASS epilogue test_probe_0_semaphore=3D0=0D PASS epilogue test_probe_2_semaphore=3D0=0D PASS epilogue test_probe_3_semaphore=3D0=0D PASS epilogue test_probe_4_semaphore=3D0=0D PASS: sdt_misc V2_uprobe epilogue Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/in= clude -Wall -Werror -I. -DSTAP_SDT_V2 -O2 -m64 -lm -o sdt_types.x (ti= meout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/i= nclude -Wall -Werror -I. -DSTAP_SDT_V2 -O2 -m64 -lm -o sdt_types.x=0D PASS: sdt_misc compiling types V2_uprobe -O2=20 spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x # V2_uprobe -O2 spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x=0D WARNING: Downgrading SDT_V2 probe argument to dwarf, can't parse '126': ide= ntifier '$arg1' at /home/prasadkr/systemtap/testsuite/systemtap.base/sdt_ty= pes.stp:2:7=0D source: if ($arg1 !=3D 126)=0D ^=0D WARNING: cannot find module /home/prasadkr/systemtap/testsuite/sdt_types.x = debuginfo: No DWARF information found=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("char_var")=0D WARNING: Downgrading SDT_V2 probe argument to dwarf, can't parse '33': iden= tifier '$arg1' at :9:7=0D source: if ($arg1 !=3D 33)=0D ^=0D WARNING: cannot find module /home/prasadkr/systemtap/testsuite/sdt_types.x = debuginfo: No DWARF information found=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("const_char_var")=0D WARNING: cannot find module /home/prasadkr/systemtap/testsuite/sdt_types.x = debuginfo: No DWARF information found=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("ptr_char_var")=0D WARNING: Downgrading SDT_V2 probe argument to dwarf, can't parse '32767': i= dentifier '$arg1' at :67:7=0D source: if ($arg1 !=3D 32767)=0D ^=0D WARNING: cannot find module /home/prasadkr/systemtap/testsuite/sdt_types.x = debuginfo: No DWARF information found=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("short_int_var")=0D WARNING: Downgrading SDT_V2 probe argument to dwarf, can't parse '32769': i= dentifier '$arg1' at :75:7=0D source: if ($arg1 !=3D 0x8001)=0D ^=0D WARNING: cannot find module /home/prasadkr/systemtap/testsuite/sdt_types.x = debuginfo: No DWARF information found=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("unsigned_short_int_var")=0D WARNING: Downgrading SDT_V2 probe argument to dwarf, can't parse '-32767': = identifier '$arg1' at :87:7=0D source: if ($arg1 !=3D -32767)=0D ^=0D WARNING: cannot find module /home/prasadkr/systemtap/testsuite/sdt_types.x = debuginfo: No DWARF information found=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("const_short_int_var")=0D WARNING: cannot find module /home/prasadkr/systemtap/testsuite/sdt_types.x = debuginfo: No DWARF information found=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("ptr_short_int_var")=0D WARNING: Downgrading SDT_V2 probe argument to dwarf, can't parse '65536': i= dentifier '$arg1' at :147:7=0D source: if ($arg1 !=3D 65536)=0D ^=0D WARNING: cannot find module /home/prasadkr/systemtap/testsuite/sdt_types.x = debuginfo: No DWARF information found=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("int_var")=0D WARNING: Downgrading SDT_V2 probe argument to dwarf, can't parse '429493452= 9': identifier '$arg1' at :155:8=0D source: if ($arg1 !=3D 0xffff8001)=0D ^=0D WARNING: cannot find module /home/prasadkr/systemtap/testsuite/sdt_types.x = debuginfo: No DWARF information found=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("unsigned_int_var")=0D WARNING: Downgrading SDT_V2 probe argument to dwarf, can't parse '-65536': = identifier '$arg1' at :167:7=0D source: if ($arg1 !=3D -65536)=0D ^=0D WARNING: cannot find module /home/prasadkr/systemtap/testsuite/sdt_types.x = debuginfo: No DWARF information found=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("const_int_var")=0D WARNING: cannot find module /home/prasadkr/systemtap/testsuite/sdt_types.x = debuginfo: No DWARF information found=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("ptr_int_var")=0D WARNING: cannot find module /home/prasadkr/systemtap/testsuite/sdt_types.x = debuginfo: No DWARF information found=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("long_int_var")=0D WARNING: cannot find module /home/prasadkr/systemtap/testsuite/sdt_types.x = debuginfo: No DWARF information found=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("const_long_int_var")=0D WARNING: cannot find module /home/prasadkr/systemtap/testsuite/sdt_types.x = debuginfo: No DWARF information found=0D WARNING: cannot find module /home/prasadkr/systemtap/testsuite/sdt_types.x = debuginfo: No DWARF information found=0D WARNING: cannot find module /home/prasadkr/systemtap/testsuite/sdt_types.x = debuginfo: No DWARF information found=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_small_var")=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_bit_var")=0D WARNING: Downgrading SDT_V2 probe argument to dwarf, can't parse '214748364= 7': identifier '$arg1' at :406:7=0D source: if ($arg1 !=3D 0x7fffffff)=0D ^=0D WARNING: Downgrading SDT_V2 probe argument to dwarf, can't parse '.LC0': id= entifier '$arg3' at :414:27=0D source: arr_char =3D user_string ($arg3);=0D ^=0D WARNING: cannot find module /home/prasadkr/systemtap/testsuite/sdt_types.x = debuginfo: No DWARF information found=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("constants")=0D Pass 2: analysis failed. Try again with another '--vp 01' option.=0D XFAIL: sdt_misc types types V2_uprobe -O2 Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/in= clude -Wall -Werror -I. -DSTAP_SDT_V2 -O3 -m64 -lm -o sdt_types.x (ti= meout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/i= nclude -Wall -Werror -I. -DSTAP_SDT_V2 -O3 -m64 -lm -o sdt_types.x=0D PASS: sdt_misc compiling types V2_uprobe -O3=20 spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x # V2_uprobe -O3 spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x=0D WARNING: Downgrading SDT_V2 probe argument to dwarf, can't parse '126': ide= ntifier '$arg1' at /home/prasadkr/systemtap/testsuite/systemtap.base/sdt_ty= pes.stp:2:7=0D source: if ($arg1 !=3D 126)=0D ^=0D WARNING: cannot find module /home/prasadkr/systemtap/testsuite/sdt_types.x = debuginfo: No DWARF information found=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("char_var")=0D WARNING: Downgrading SDT_V2 probe argument to dwarf, can't parse '33': iden= tifier '$arg1' at :9:7=0D source: if ($arg1 !=3D 33)=0D ^=0D WARNING: cannot find module /home/prasadkr/systemtap/testsuite/sdt_types.x = debuginfo: No DWARF information found=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("const_char_var")=0D WARNING: cannot find module /home/prasadkr/systemtap/testsuite/sdt_types.x = debuginfo: No DWARF information found=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("ptr_char_var")=0D WARNING: Downgrading SDT_V2 probe argument to dwarf, can't parse '32767': i= dentifier '$arg1' at :67:7=0D source: if ($arg1 !=3D 32767)=0D ^=0D WARNING: cannot find module /home/prasadkr/systemtap/testsuite/sdt_types.x = debuginfo: No DWARF information found=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("short_int_var")=0D WARNING: Downgrading SDT_V2 probe argument to dwarf, can't parse '32769': i= dentifier '$arg1' at :75:7=0D source: if ($arg1 !=3D 0x8001)=0D ^=0D WARNING: cannot find module /home/prasadkr/systemtap/testsuite/sdt_types.x = debuginfo: No DWARF information found=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("unsigned_short_int_var")=0D WARNING: Downgrading SDT_V2 probe argument to dwarf, can't parse '-32767': = identifier '$arg1' at :87:7=0D source: if ($arg1 !=3D -32767)=0D ^=0D WARNING: cannot find module /home/prasadkr/systemtap/testsuite/sdt_types.x = debuginfo: No DWARF information found=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("const_short_int_var")=0D WARNING: cannot find module /home/prasadkr/systemtap/testsuite/sdt_types.x = debuginfo: No DWARF information found=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("ptr_short_int_var")=0D WARNING: Downgrading SDT_V2 probe argument to dwarf, can't parse '65536': i= dentifier '$arg1' at :147:7=0D source: if ($arg1 !=3D 65536)=0D ^=0D WARNING: cannot find module /home/prasadkr/systemtap/testsuite/sdt_types.x = debuginfo: No DWARF information found=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("int_var")=0D WARNING: Downgrading SDT_V2 probe argument to dwarf, can't parse '429493452= 9': identifier '$arg1' at :155:8=0D source: if ($arg1 !=3D 0xffff8001)=0D ^=0D WARNING: cannot find module /home/prasadkr/systemtap/testsuite/sdt_types.x = debuginfo: No DWARF information found=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("unsigned_int_var")=0D WARNING: Downgrading SDT_V2 probe argument to dwarf, can't parse '-65536': = identifier '$arg1' at :167:7=0D source: if ($arg1 !=3D -65536)=0D ^=0D WARNING: cannot find module /home/prasadkr/systemtap/testsuite/sdt_types.x = debuginfo: No DWARF information found=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("const_int_var")=0D WARNING: cannot find module /home/prasadkr/systemtap/testsuite/sdt_types.x = debuginfo: No DWARF information found=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("ptr_int_var")=0D WARNING: cannot find module /home/prasadkr/systemtap/testsuite/sdt_types.x = debuginfo: No DWARF information found=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("long_int_var")=0D WARNING: cannot find module /home/prasadkr/systemtap/testsuite/sdt_types.x = debuginfo: No DWARF information found=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("const_long_int_var")=0D WARNING: cannot find module /home/prasadkr/systemtap/testsuite/sdt_types.x = debuginfo: No DWARF information found=0D WARNING: cannot find module /home/prasadkr/systemtap/testsuite/sdt_types.x = debuginfo: No DWARF information found=0D WARNING: cannot find module /home/prasadkr/systemtap/testsuite/sdt_types.x = debuginfo: No DWARF information found=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_small_var")=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_bit_var")=0D WARNING: Downgrading SDT_V2 probe argument to dwarf, can't parse '214748364= 7': identifier '$arg1' at :406:7=0D source: if ($arg1 !=3D 0x7fffffff)=0D ^=0D WARNING: Downgrading SDT_V2 probe argument to dwarf, can't parse '.LC0': id= entifier '$arg3' at :414:27=0D source: arr_char =3D user_string ($arg3);=0D ^=0D WARNING: cannot find module /home/prasadkr/systemtap/testsuite/sdt_types.x = debuginfo: No DWARF information found=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("constants")=0D Pass 2: analysis failed. Try again with another '--vp 01' option.=0D XFAIL: sdt_misc types types V2_uprobe -O3 Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/in= clude -Wall -Werror -I. -DSTAP_SDT_V2 -std=3Dc89 -DNO_LONG_LONG -m64 -lm = -o sdt_types.x (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/i= nclude -Wall -Werror -I. -DSTAP_SDT_V2 -std=3Dc89 -DNO_LONG_LONG -m64 -lm -= o sdt_types.x=0D PASS: sdt_misc compiling types V2_uprobe c89=20 spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x # V2_uprobe c89 spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_small_var")=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_bit_var")=0D Pass 2: analysis failed. Try again with another '--vp 01' option.=0D XFAIL: sdt_misc types types V2_uprobe c89 Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/in= clude -Wall -Werror -I. -DSTAP_SDT_V2 -std=3Dc89 -pedantic -DNO_LONG_LONG -= m64 -lm -o sdt_types.x (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/i= nclude -Wall -Werror -I. -DSTAP_SDT_V2 -std=3Dc89 -pedantic -DNO_LONG_LONG = -m64 -lm -o sdt_types.x=0D PASS: sdt_misc compiling types V2_uprobe c89 -pedantic spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x # V2_uprobe c89 spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_small_var")=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_bit_var")=0D Pass 2: analysis failed. Try again with another '--vp 01' option.=0D XFAIL: sdt_misc types types V2_uprobe c89 Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/in= clude -Wall -Werror -I. -DSTAP_SDT_V2 -std=3Dc99 -m64 -lm -o sdt_types.x= (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/i= nclude -Wall -Werror -I. -DSTAP_SDT_V2 -std=3Dc99 -m64 -lm -o sdt_types.x=0D PASS: sdt_misc compiling types V2_uprobe c99=20 spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x # V2_uprobe c99 spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_small_var")=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_bit_var")=0D Pass 2: analysis failed. Try again with another '--vp 01' option.=0D XFAIL: sdt_misc types types V2_uprobe c99 Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/in= clude -Wall -Werror -I. -DSTAP_SDT_V2 -std=3Dc99 -pedantic -m64 -lm -o s= dt_types.x (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/i= nclude -Wall -Werror -I. -DSTAP_SDT_V2 -std=3Dc99 -pedantic -m64 -lm -o sdt= _types.x=0D PASS: sdt_misc compiling types V2_uprobe c99 -pedantic spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x # V2_uprobe c99 spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_small_var")=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_bit_var")=0D Pass 2: analysis failed. Try again with another '--vp 01' option.=0D XFAIL: sdt_misc types types V2_uprobe c99 Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/in= clude -Wall -Werror -I. -DSTAP_SDT_V2 -std=3Dgnu99 -m64 -lm -o sdt_types= .x (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/i= nclude -Wall -Werror -I. -DSTAP_SDT_V2 -std=3Dgnu99 -m64 -lm -o sdt_types.x= =0D PASS: sdt_misc compiling types V2_uprobe gnu99=20 spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x # V2_uprobe gnu99 spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_small_var")=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_bit_var")=0D Pass 2: analysis failed. Try again with another '--vp 01' option.=0D XFAIL: sdt_misc types types V2_uprobe gnu99 Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/in= clude -Wall -Werror -I. -DSTAP_SDT_V2 -std=3Dgnu99 -pedantic -m64 -lm -o= sdt_types.x (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/i= nclude -Wall -Werror -I. -DSTAP_SDT_V2 -std=3Dgnu99 -pedantic -m64 -lm -o s= dt_types.x=0D PASS: sdt_misc compiling types V2_uprobe gnu99 -pedantic spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x # V2_uprobe gnu99 spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_small_var")=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_bit_var")=0D Pass 2: analysis failed. Try again with another '--vp 01' option.=0D XFAIL: sdt_misc types types V2_uprobe gnu99 Executing on host: g++ /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/in= clude -Wall -Werror -I. -DSTAP_SDT_V2 -std=3Dc++98 -x c++ -DNO_LONG_LONG -= m64 -lm -o sdt_types.x (timeout =3D 300) spawn -ignore SIGHUP g++ /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/i= nclude -Wall -Werror -I. -DSTAP_SDT_V2 -std=3Dc++98 -x c++ -DNO_LONG_LONG -= m64 -lm -o sdt_types.x=0D PASS: sdt_misc compiling types V2_uprobe c++98=20 spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x # V2_uprobe c++98 spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_small_var")=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_bit_var")=0D Pass 2: analysis failed. Try again with another '--vp 01' option.=0D XFAIL: sdt_misc types types V2_uprobe c++98 Executing on host: g++ /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/in= clude -Wall -Werror -I. -DSTAP_SDT_V2 -std=3Dc++98 -x c++ -pedantic -DNO_L= ONG_LONG -m64 -lm -o sdt_types.x (timeout =3D 300) spawn -ignore SIGHUP g++ /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/i= nclude -Wall -Werror -I. -DSTAP_SDT_V2 -std=3Dc++98 -x c++ -pedantic -DNO_L= ONG_LONG -m64 -lm -o sdt_types.x=0D PASS: sdt_misc compiling types V2_uprobe c++98 -pedantic spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x # V2_uprobe c++98 spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_small_var")=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_bit_var")=0D Pass 2: analysis failed. Try again with another '--vp 01' option.=0D XFAIL: sdt_misc types types V2_uprobe c++98 Executing on host: g++ /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/in= clude -Wall -Werror -I. -DSTAP_SDT_V2 -std=3Dgnu++98 -x c++ -DNO_LONG_LONG= -m64 -lm -o sdt_types.x (timeout =3D 300) spawn -ignore SIGHUP g++ /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/i= nclude -Wall -Werror -I. -DSTAP_SDT_V2 -std=3Dgnu++98 -x c++ -DNO_LONG_LONG= -m64 -lm -o sdt_types.x=0D PASS: sdt_misc compiling types V2_uprobe gnu++98=20 spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x # V2_uprobe gnu++98 spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_small_var")=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_bit_var")=0D Pass 2: analysis failed. Try again with another '--vp 01' option.=0D XFAIL: sdt_misc types types V2_uprobe gnu++98 Executing on host: g++ /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/in= clude -Wall -Werror -I. -DSTAP_SDT_V2 -std=3Dgnu++98 -x c++ -pedantic -DNO= _LONG_LONG -m64 -lm -o sdt_types.x (timeout =3D 300) spawn -ignore SIGHUP g++ /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/i= nclude -Wall -Werror -I. -DSTAP_SDT_V2 -std=3Dgnu++98 -x c++ -pedantic -DNO= _LONG_LONG -m64 -lm -o sdt_types.x=0D PASS: sdt_misc compiling types V2_uprobe gnu++98 -pedantic spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x # V2_uprobe gnu++98 spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_small_var")=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_bit_var")=0D Pass 2: analysis failed. Try again with another '--vp 01' option.=0D XFAIL: sdt_misc types types V2_uprobe gnu++98 Executing on host: g++ /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/in= clude -Wall -Werror -I. -DSTAP_SDT_V2 -std=3Dc++0x -x c++ -m64 -lm -o = sdt_types.x (timeout =3D 300) spawn -ignore SIGHUP g++ /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/i= nclude -Wall -Werror -I. -DSTAP_SDT_V2 -std=3Dc++0x -x c++ -m64 -lm -o sdt_= types.x=0D PASS: sdt_misc compiling types V2_uprobe c++0x=20 spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x # V2_uprobe c++0x spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_small_var")=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_bit_var")=0D Pass 2: analysis failed. Try again with another '--vp 01' option.=0D XFAIL: sdt_misc types types V2_uprobe c++0x Executing on host: g++ /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/in= clude -Wall -Werror -I. -DSTAP_SDT_V2 -std=3Dc++0x -x c++ -pedantic -m64 = -lm -o sdt_types.x (timeout =3D 300) spawn -ignore SIGHUP g++ /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/i= nclude -Wall -Werror -I. -DSTAP_SDT_V2 -std=3Dc++0x -x c++ -pedantic -m64 -= lm -o sdt_types.x=0D PASS: sdt_misc compiling types V2_uprobe c++0x -pedantic spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x # V2_uprobe c++0x spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_small_var")=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_bit_var")=0D Pass 2: analysis failed. Try again with another '--vp 01' option.=0D XFAIL: sdt_misc types types V2_uprobe c++0x Executing on host: g++ /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/in= clude -Wall -Werror -I. -DSTAP_SDT_V2 -std=3Dgnu++0x -x c++ -m64 -lm -= o sdt_types.x (timeout =3D 300) spawn -ignore SIGHUP g++ /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/i= nclude -Wall -Werror -I. -DSTAP_SDT_V2 -std=3Dgnu++0x -x c++ -m64 -lm -o sd= t_types.x=0D PASS: sdt_misc compiling types V2_uprobe gnu++0x=20 spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x # V2_uprobe gnu++0x spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_small_var")=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_bit_var")=0D Pass 2: analysis failed. Try again with another '--vp 01' option.=0D XFAIL: sdt_misc types types V2_uprobe gnu++0x Executing on host: g++ /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/in= clude -Wall -Werror -I. -DSTAP_SDT_V2 -std=3Dgnu++0x -x c++ -pedantic -m64= -lm -o sdt_types.x (timeout =3D 300) spawn -ignore SIGHUP g++ /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/i= nclude -Wall -Werror -I. -DSTAP_SDT_V2 -std=3Dgnu++0x -x c++ -pedantic -m64= -lm -o sdt_types.x=0D PASS: sdt_misc compiling types V2_uprobe gnu++0x -pedantic spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x # V2_uprobe gnu++0x spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_small_var")=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_bit_var")=0D Pass 2: analysis failed. Try again with another '--vp 01' option.=0D XFAIL: sdt_misc types types V2_uprobe gnu++0x Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t_misc.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/inc= lude -Wall -Werror /home/prasadkr/systemtap/testsuite/sdt_misc_.o -I. -DSTA= P_SDT_V2 -shared -fPIC -DNO_MAIN -lm -o /home/prasadkr/systemtap/testsui= te/libsdt_V2_uprobe.so (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt_misc.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/in= clude -Wall -Werror /home/prasadkr/systemtap/testsuite/sdt_misc_.o -I. -DST= AP_SDT_V2 -shared -fPIC -DNO_MAIN -lm -o /home/prasadkr/systemtap/testsuite= /libsdt_V2_uprobe.so=0D Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t_misc.c -Wl,-rpath,/home/prasadkr/systemtap/testsuite -L/home/prasadkr/sy= stemtap/testsuite -lsdt_V2_uprobe -DONLY_MAIN -lm -o /home/prasadkr/syst= emtap/testsuite/sdt_misc_V2_uprobe_shared.x (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt_misc.c -Wl,-rpath,/home/prasadkr/systemtap/testsuite -L/home/prasadkr/s= ystemtap/testsuite -lsdt_V2_uprobe -DONLY_MAIN -lm -o /home/prasadkr/system= tap/testsuite/sdt_misc_V2_uprobe_shared.x=0D PASS: sdt_misc compiling -shared V2_uprobe spawn /usr/local/bin/stap -c /home/prasadkr/systemtap/testsuite/sdt_misc_V2= _uprobe_shared.x /home/prasadkr/systemtap/testsuite/systemtap.base/sdt_misc= .stp /home/prasadkr/systemtap/testsuite/sdt_misc_V2_uprobe_shared.x /home/p= rasadkr/systemtap/testsuite/libsdt_V2_uprobe.so spawn /usr/local/bin/stap -c /home/prasadkr/systemtap/testsuite/sdt_misc_V2= _uprobe_shared.x /home/prasadkr/systemtap/testsuite/systemtap.base/sdt_misc= .stp /home/prasadkr/systemtap/testsuite/sdt_misc_V2_uprobe_shared.x /home/p= rasadkr/systemtap/testsuite/libsdt_V2_uprobe.so=0D In test_probe_2 probe 0x2=0D In test_probe_1 probe 0x0=0D FAIL: sdt_misc (2) shared V2_uprobe Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t_misc.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/inc= lude -Wall -Werror /home/prasadkr/systemtap/testsuite/sdt_misc_.o -I. -DSTA= P_SDT_V2 -shared -fPIC -DNO_MAIN -DLOOP -lm -o /home/prasadkr/systemtap/= testsuite/libsdt_V2_uprobe_loop.so (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt_misc.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/in= clude -Wall -Werror /home/prasadkr/systemtap/testsuite/sdt_misc_.o -I. -DST= AP_SDT_V2 -shared -fPIC -DNO_MAIN -DLOOP -lm -o /home/prasadkr/systemtap/te= stsuite/libsdt_V2_uprobe_loop.so=0D Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t_misc.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/inc= lude -I. -DSTAP_SDT_V2 -DLOOP -DONLY_MAIN -Wl,-rpath,/home/prasadkr/systemt= ap/testsuite -L/home/prasadkr/systemtap/testsuite -lsdt_V2_uprobe_loop -lm= -o /home/prasadkr/systemtap/testsuite/sdt_misc_V2_uprobe_loop_shared.x = (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt_misc.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/in= clude -I. -DSTAP_SDT_V2 -DLOOP -DONLY_MAIN -Wl,-rpath,/home/prasadkr/system= tap/testsuite -L/home/prasadkr/systemtap/testsuite -lsdt_V2_uprobe_loop -lm= -o /home/prasadkr/systemtap/testsuite/sdt_misc_V2_uprobe_loop_shared.x=0D PASS: sdt_misc compiling V2_uprobe -DLOOP /home/prasadkr/systemtap/testsuite/sdt_misc_V2_uprobe_loop_shared.x >| ,sem= clean 2>&1 & TEST=3D$! ; /usr/local/bin/stap /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_misc.stp /home/prasadkr/systemtap/testsuite/sdt_mi= sc_V2_uprobe_loop_shared.x /home/prasadkr/systemtap/testsuite/libsdt_V2_upr= obe_loop.so >| ,semout ; /usr/bin/kill -SIGINT $TEST spawn cat ,semout=0D FAIL: sdt_misc (0) V2_uprobe shared attach spawn cat ,semclean=0D PASS epilogue test_probe_0_semaphore=3D0=0D PASS epilogue test_probe_2_semaphore=3D0=0D PASS epilogue test_probe_3_semaphore=3D0=0D PASS epilogue test_probe_4_semaphore=3D0=0D PASS: sdt_misc V2_uprobe shared shared epilogue spawn /usr/local/bin/stap -L "process("./sdt_types.x").mark("*") spawn /usr/local/bin/stap -L process("./sdt_types.x").mark("*")=0D process("./sdt_types.x").mark("arr_char") $arg1:long=0D process("./sdt_types.x").mark("bitfields_a_var") $arg1:long $arg2:long $arg= 3:long $arg4:long $arg5:long $arg6:long $arg7:long $arg8:long=0D process("./sdt_types.x").mark("bitfields_b_var") $arg1:long $arg2:long $arg= 3:long $arg4:long $arg5:long $arg6:long $arg7:long $arg8:long $arg9:long $a= rg10:long=0D process("./sdt_types.x").mark("char_ptr_const_var") $arg1:long $arg2:long=0D process("./sdt_types.x").mark("char_ptr_volatile_var") $arg1:long $arg2:lon= g=0D process("./sdt_types.x").mark("char_var") $arg1:long=0D process("./sdt_types.x").mark("const_char_var") $arg1:long=0D process("./sdt_types.x").mark("const_int_var") $arg1:long=0D process("./sdt_types.x").mark("const_long_int_var") $arg1:long=0D process("./sdt_types.x").mark("const_long_long_int_var") $arg1:long=0D process("./sdt_types.x").mark("const_short_int_var") $arg1:long=0D process("./sdt_types.x").mark("constants") $arg1:long $arg2:long $arg3:long= =0D process("./sdt_types.x").mark("int_ptr_const_var") $arg1:long $arg2:long=0D process("./sdt_types.x").mark("int_ptr_volatile_var") $arg1:long $arg2:long= =0D process("./sdt_types.x").mark("int_var") $arg1:long=0D process("./sdt_types.x").mark("long_int_ptr_const_var") $arg1:long $arg2:lo= ng=0D process("./sdt_types.x").mark("long_int_ptr_volatile_var") $arg1:long $arg2= :long=0D process("./sdt_types.x").mark("long_int_var") $arg1:long=0D process("./sdt_types.x").mark("long_long_int_ptr_const_var") $arg1:long $ar= g2:long=0D process("./sdt_types.x").mark("long_long_int_ptr_volatile_var") $arg1:long = $arg2:long=0D process("./sdt_types.x").mark("long_long_int_var") $arg1:long=0D process("./sdt_types.x").mark("ptr_char_var") $arg1:long $arg2:long $arg3:l= ong=0D process("./sdt_types.x").mark("ptr_const_char_var") $arg1:long $arg2:long=0D process("./sdt_types.x").mark("ptr_const_int_var") $arg1:long $arg2:long=0D process("./sdt_types.x").mark("ptr_const_long_int_var") $arg1:long $arg2:lo= ng=0D process("./sdt_types.x").mark("ptr_const_long_long_int_var") $arg1:long $ar= g2:long=0D process("./sdt_types.x").mark("ptr_const_short_int_var") $arg1:long $arg2:l= ong=0D process("./sdt_types.x").mark("ptr_int_var") $arg1:long $arg2:long $arg3:lo= ng=0D process("./sdt_types.x").mark("ptr_long_int_var") $arg1:long $arg2:long=0D process("./sdt_types.x").mark("ptr_long_long_int_var") $arg1:long $arg2:lon= g $arg3:long=0D process("./sdt_types.x").mark("ptr_short_int_var") $arg1:long $arg2:long $a= rg3:long=0D process("./sdt_types.x").mark("ptr_volatile_char_var") $arg1:long $arg2:lon= g=0D process("./sdt_types.x").mark("ptr_volatile_int_var") $arg1:long $arg2:long= =0D process("./sdt_types.x").mark("ptr_volatile_long_int_var") $arg1:long $arg2= :long=0D process("./sdt_types.x").mark("ptr_volatile_long_long_int_var") $arg1:long = $arg2:long=0D process("./sdt_types.x").mark("ptr_volatile_short_int_var") $arg1:long $arg= 2:long=0D process("./sdt_types.x").mark("short_int_ptr_const_var") $arg1:long $arg2:l= ong=0D process("./sdt_types.x").mark("short_int_ptr_volatile_var") $arg1:long $arg= 2:long=0D process("./sdt_types.x").mark("short_int_var") $arg1:long=0D process("./sdt_types.x").mark("something__dash__dash__something")=0D process("./sdt_types.x").mark("unsigned_int_var") $arg1:long $arg2:long $ar= g3:long=0D process("./sdt_types.x").mark("unsigned_short_int_var") $arg1:long $arg2:lo= ng $arg3:long=0D process("./sdt_types.x").mark("volatile_char_var") $arg1:long=0D process("./sdt_types.x").mark("volatile_int_var") $arg1:long=0D process("./sdt_types.x").mark("volatile_long_int_var") $arg1:long=0D process("./sdt_types.x").mark("volatile_long_long_int_var") $arg1:long=0D process("./sdt_types.x").mark("volatile_short_int_var") $arg1:long=0D spawn /usr/local/bin/stap -l process("./sdt_types.x").mark("*-*-*")=0D process("./sdt_types.x").mark("something__dash__dash__something")=0D FAIL: sdt_misc wildcard (48) V2_uprobe Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t_misc.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/inc= lude -Wall -Werror /home/prasadkr/systemtap/testsuite/sdt_misc_.o -I. -DSTA= P_SDT_V2 -g -DNO_SLEEP -lm -o /home/prasadkr/systemtap/testsuite/sdt_mis= c_V2_uprobe_types.x (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt_misc.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/in= clude -Wall -Werror /home/prasadkr/systemtap/testsuite/sdt_misc_.o -I. -DST= AP_SDT_V2 -g -DNO_SLEEP -lm -o /home/prasadkr/systemtap/testsuite/sdt_misc_= V2_uprobe_types.x=0D PASS: sdt_misc compiling -g V2_uprobe --types spawn /usr/local/bin/stap -c /home/prasadkr/systemtap/testsuite/sdt_misc_V2= _uprobe_types.x -e "probe process("/home/prasadkr/systemtap/testsuite/sdt_m= isc_V2_uprobe_types.x").mark("test_probe_4") {printf("In %s dtrace probe %#= x %#x\n", $$name, $arg1->a, $arg1->b)}" spawn /usr/local/bin/stap -c /home/prasadkr/systemtap/testsuite/sdt_misc_V2= _uprobe_types.x -e probe process("/home/prasadkr/systemtap/testsuite/sdt_mi= sc_V2_uprobe_types.x").mark("test_probe_4") {printf("In %s dtrace probe %#x= %#x\n", $$name, $arg1->a, $arg1->b)}=0D In test_probe_4 dtrace probe 0x4 0x5=0D PASS: sdt_misc V2_uprobe --types /usr/local/bin/dtrace -DSTAP_SDT_V3 --types -h -s /home/prasadkr/systemtap/= testsuite/systemtap.base/sdt_misc_.d /usr/local/bin/dtrace -DSTAP_SDT_V3 --types -G -s /home/prasadkr/systemtap/= testsuite/systemtap.base/sdt_misc_.d PASS: sdt_misc dtrace -DSTAP_SDT_V3 Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t_misc.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/inc= lude -Wall -Werror /home/prasadkr/systemtap/testsuite/sdt_misc_.o -I. -DSTA= P_SDT_V3 -lm -o /home/prasadkr/systemtap/testsuite/sdt_misc_V3_uprobe.x = (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt_misc.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/in= clude -Wall -Werror /home/prasadkr/systemtap/testsuite/sdt_misc_.o -I. -DST= AP_SDT_V3 -lm -o /home/prasadkr/systemtap/testsuite/sdt_misc_V3_uprobe.x=0D PASS: sdt_misc compiling V3_uprobe spawn /usr/local/bin/stap -c /home/prasadkr/systemtap/testsuite/sdt_misc_V3= _uprobe.x /home/prasadkr/systemtap/testsuite/systemtap.base/sdt_misc.stp /h= ome/prasadkr/systemtap/testsuite/sdt_misc_V3_uprobe.x spawn /usr/local/bin/stap -c /home/prasadkr/systemtap/testsuite/sdt_misc_V3= _uprobe.x /home/prasadkr/systemtap/testsuite/systemtap.base/sdt_misc.stp /h= ome/prasadkr/systemtap/testsuite/sdt_misc_V3_uprobe.x=0D In test_probe_2 probe 0x2=0D In test_probe_2 probe 0x2=0D In test_probe_0 probe 0x3=0D In test_probe_3 probe 0x3 0x10000cf8=0D In test_probe_4 dtrace probe 0xfffd393ceb8=0D In test_probe_1 probe 0x0=0D PASS: sdt_misc V3_uprobe Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t_misc.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/inc= lude -Wall -Werror /home/prasadkr/systemtap/testsuite/sdt_misc_.o -I. -DSTA= P_SDT_V3 -DLOOP -lm -o /home/prasadkr/systemtap/testsuite/sdt_misc_V3_up= robe_loop.x (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt_misc.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/in= clude -Wall -Werror /home/prasadkr/systemtap/testsuite/sdt_misc_.o -I. -DST= AP_SDT_V3 -DLOOP -lm -o /home/prasadkr/systemtap/testsuite/sdt_misc_V3_upro= be_loop.x=0D PASS: sdt_misc compiling V3_uprobe -DLOOP /home/prasadkr/systemtap/testsuite/sdt_misc_V3_uprobe_loop.x >| ,semclean 2= >&1 & TEST=3D$! ; /usr/local/bin/stap /home/prasadkr/systemtap/testsuite/s= ystemtap.base/sdt_misc.stp /home/prasadkr/systemtap/testsuite/sdt_misc_V3_u= probe_loop.x >| ,semout ; /usr/bin/kill -SIGINT $TEST spawn cat ,semout=0D In test_probe_2 probe 0x2=0D In test_probe_2 probe 0x2=0D In test_probe_0 probe 0x3=0D In test_probe_3 probe 0x3 0x10000da0=0D In test_probe_4 dtrace probe 0xfffeb632c68=0D In test_probe_1 probe 0x0=0D PASS: sdt_misc V3_uprobe attach spawn cat ,semclean=0D PASS epilogue test_probe_0_semaphore=3D0=0D PASS epilogue test_probe_2_semaphore=3D0=0D PASS epilogue test_probe_3_semaphore=3D0=0D PASS epilogue test_probe_4_semaphore=3D0=0D PASS: sdt_misc V3_uprobe epilogue Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/in= clude -Wall -Werror -I. -DSTAP_SDT_V3 -O2 -m64 -lm -o sdt_types.x (ti= meout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/i= nclude -Wall -Werror -I. -DSTAP_SDT_V3 -O2 -m64 -lm -o sdt_types.x=0D PASS: sdt_misc compiling types V3_uprobe -O2=20 spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x # V3_uprobe -O2 spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_small_var")=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_bit_var")=0D WARNING: Downgrading SDT_V2 probe argument to dwarf, can't parse '.LC1@toc(= 2)': identifier '$arg3' at /home/prasadkr/systemtap/testsuite/systemtap.bas= e/sdt_types.stp:414:27=0D source: arr_char =3D user_string ($arg3);=0D ^=0D WARNING: cannot find module /home/prasadkr/systemtap/testsuite/sdt_types.x = debuginfo: No DWARF information found=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("constants")=0D Pass 2: analysis failed. Try again with another '--vp 01' option.=0D XFAIL: sdt_misc types types V3_uprobe -O2 Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/in= clude -Wall -Werror -I. -DSTAP_SDT_V3 -O3 -m64 -lm -o sdt_types.x (ti= meout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/i= nclude -Wall -Werror -I. -DSTAP_SDT_V3 -O3 -m64 -lm -o sdt_types.x=0D PASS: sdt_misc compiling types V3_uprobe -O3=20 spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x # V3_uprobe -O3 spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_small_var")=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_bit_var")=0D WARNING: Downgrading SDT_V2 probe argument to dwarf, can't parse '.LC1@toc(= 2)': identifier '$arg3' at /home/prasadkr/systemtap/testsuite/systemtap.bas= e/sdt_types.stp:414:27=0D source: arr_char =3D user_string ($arg3);=0D ^=0D WARNING: cannot find module /home/prasadkr/systemtap/testsuite/sdt_types.x = debuginfo: No DWARF information found=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("constants")=0D Pass 2: analysis failed. Try again with another '--vp 01' option.=0D XFAIL: sdt_misc types types V3_uprobe -O3 Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/in= clude -Wall -Werror -I. -DSTAP_SDT_V3 -std=3Dc89 -DNO_LONG_LONG -m64 -lm = -o sdt_types.x (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/i= nclude -Wall -Werror -I. -DSTAP_SDT_V3 -std=3Dc89 -DNO_LONG_LONG -m64 -lm -= o sdt_types.x=0D PASS: sdt_misc compiling types V3_uprobe c89=20 spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x # V3_uprobe c89 spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_small_var")=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_bit_var")=0D Pass 2: analysis failed. Try again with another '--vp 01' option.=0D XFAIL: sdt_misc types types V3_uprobe c89 Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/in= clude -Wall -Werror -I. -DSTAP_SDT_V3 -std=3Dc89 -pedantic -DNO_LONG_LONG -= m64 -lm -o sdt_types.x (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/i= nclude -Wall -Werror -I. -DSTAP_SDT_V3 -std=3Dc89 -pedantic -DNO_LONG_LONG = -m64 -lm -o sdt_types.x=0D cc1: warnings being treated as errors=0D /home/prasadkr/systemtap/testsuite/systemtap.base/sdt_types.c: In function = =E2=80=98main=E2=80=99:=0D /home/prasadkr/systemtap/testsuite/systemtap.base/sdt_types.c:170: error: s= tring length =E2=80=98521=E2=80=99 is greater than the length =E2=80=98509= =E2=80=99 ISO C90 compilers are required to support=0D /home/prasadkr/systemtap/testsuite/systemtap.base/sdt_types.c:180: error: s= tring length =E2=80=98592=E2=80=99 is greater than the length =E2=80=98509= =E2=80=99 ISO C90 compilers are required to support=0D compiler exited with status 1 output is: cc1: warnings being treated as errors=0D /home/prasadkr/systemtap/testsuite/systemtap.base/sdt_types.c: In function = =E2=80=98main=E2=80=99:=0D /home/prasadkr/systemtap/testsuite/systemtap.base/sdt_types.c:170: error: s= tring length =E2=80=98521=E2=80=99 is greater than the length =E2=80=98509= =E2=80=99 ISO C90 compilers are required to support=0D /home/prasadkr/systemtap/testsuite/systemtap.base/sdt_types.c:180: error: s= tring length =E2=80=98592=E2=80=99 is greater than the length =E2=80=98509= =E2=80=99 ISO C90 compilers are required to support=0D FAIL: sdt_misc compiling types V3_uprobe c89 -pedantic UNTESTED: sdt_misc types V3_uprobe c89 -pedantic Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/in= clude -Wall -Werror -I. -DSTAP_SDT_V3 -std=3Dc99 -m64 -lm -o sdt_types.x= (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/i= nclude -Wall -Werror -I. -DSTAP_SDT_V3 -std=3Dc99 -m64 -lm -o sdt_types.x=0D PASS: sdt_misc compiling types V3_uprobe c99=20 spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x # V3_uprobe c99 spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_small_var")=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_bit_var")=0D Pass 2: analysis failed. Try again with another '--vp 01' option.=0D XFAIL: sdt_misc types types V3_uprobe c99 Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/in= clude -Wall -Werror -I. -DSTAP_SDT_V3 -std=3Dc99 -pedantic -m64 -lm -o s= dt_types.x (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/i= nclude -Wall -Werror -I. -DSTAP_SDT_V3 -std=3Dc99 -pedantic -m64 -lm -o sdt= _types.x=0D PASS: sdt_misc compiling types V3_uprobe c99 -pedantic spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x # V3_uprobe c99 spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_small_var")=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_bit_var")=0D Pass 2: analysis failed. Try again with another '--vp 01' option.=0D XFAIL: sdt_misc types types V3_uprobe c99 Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/in= clude -Wall -Werror -I. -DSTAP_SDT_V3 -std=3Dgnu99 -m64 -lm -o sdt_types= .x (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/i= nclude -Wall -Werror -I. -DSTAP_SDT_V3 -std=3Dgnu99 -m64 -lm -o sdt_types.x= =0D PASS: sdt_misc compiling types V3_uprobe gnu99=20 spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x # V3_uprobe gnu99 spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_small_var")=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_bit_var")=0D Pass 2: analysis failed. Try again with another '--vp 01' option.=0D XFAIL: sdt_misc types types V3_uprobe gnu99 Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/in= clude -Wall -Werror -I. -DSTAP_SDT_V3 -std=3Dgnu99 -pedantic -m64 -lm -o= sdt_types.x (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/i= nclude -Wall -Werror -I. -DSTAP_SDT_V3 -std=3Dgnu99 -pedantic -m64 -lm -o s= dt_types.x=0D PASS: sdt_misc compiling types V3_uprobe gnu99 -pedantic spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x # V3_uprobe gnu99 spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_small_var")=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_bit_var")=0D Pass 2: analysis failed. Try again with another '--vp 01' option.=0D XFAIL: sdt_misc types types V3_uprobe gnu99 Executing on host: g++ /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/in= clude -Wall -Werror -I. -DSTAP_SDT_V3 -std=3Dc++98 -x c++ -DNO_LONG_LONG -= m64 -lm -o sdt_types.x (timeout =3D 300) spawn -ignore SIGHUP g++ /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/i= nclude -Wall -Werror -I. -DSTAP_SDT_V3 -std=3Dc++98 -x c++ -DNO_LONG_LONG -= m64 -lm -o sdt_types.x=0D PASS: sdt_misc compiling types V3_uprobe c++98=20 spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x # V3_uprobe c++98 spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_small_var")=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_bit_var")=0D Pass 2: analysis failed. Try again with another '--vp 01' option.=0D XFAIL: sdt_misc types types V3_uprobe c++98 Executing on host: g++ /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/in= clude -Wall -Werror -I. -DSTAP_SDT_V3 -std=3Dc++98 -x c++ -pedantic -DNO_L= ONG_LONG -m64 -lm -o sdt_types.x (timeout =3D 300) spawn -ignore SIGHUP g++ /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/i= nclude -Wall -Werror -I. -DSTAP_SDT_V3 -std=3Dc++98 -x c++ -pedantic -DNO_L= ONG_LONG -m64 -lm -o sdt_types.x=0D PASS: sdt_misc compiling types V3_uprobe c++98 -pedantic spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x # V3_uprobe c++98 spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_small_var")=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_bit_var")=0D Pass 2: analysis failed. Try again with another '--vp 01' option.=0D XFAIL: sdt_misc types types V3_uprobe c++98 Executing on host: g++ /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/in= clude -Wall -Werror -I. -DSTAP_SDT_V3 -std=3Dgnu++98 -x c++ -DNO_LONG_LONG= -m64 -lm -o sdt_types.x (timeout =3D 300) spawn -ignore SIGHUP g++ /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/i= nclude -Wall -Werror -I. -DSTAP_SDT_V3 -std=3Dgnu++98 -x c++ -DNO_LONG_LONG= -m64 -lm -o sdt_types.x=0D PASS: sdt_misc compiling types V3_uprobe gnu++98=20 spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x # V3_uprobe gnu++98 spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_small_var")=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_bit_var")=0D Pass 2: analysis failed. Try again with another '--vp 01' option.=0D XFAIL: sdt_misc types types V3_uprobe gnu++98 Executing on host: g++ /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/in= clude -Wall -Werror -I. -DSTAP_SDT_V3 -std=3Dgnu++98 -x c++ -pedantic -DNO= _LONG_LONG -m64 -lm -o sdt_types.x (timeout =3D 300) spawn -ignore SIGHUP g++ /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/i= nclude -Wall -Werror -I. -DSTAP_SDT_V3 -std=3Dgnu++98 -x c++ -pedantic -DNO= _LONG_LONG -m64 -lm -o sdt_types.x=0D PASS: sdt_misc compiling types V3_uprobe gnu++98 -pedantic spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x # V3_uprobe gnu++98 spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_small_var")=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_bit_var")=0D Pass 2: analysis failed. Try again with another '--vp 01' option.=0D XFAIL: sdt_misc types types V3_uprobe gnu++98 Executing on host: g++ /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/in= clude -Wall -Werror -I. -DSTAP_SDT_V3 -std=3Dc++0x -x c++ -m64 -lm -o = sdt_types.x (timeout =3D 300) spawn -ignore SIGHUP g++ /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/i= nclude -Wall -Werror -I. -DSTAP_SDT_V3 -std=3Dc++0x -x c++ -m64 -lm -o sdt_= types.x=0D PASS: sdt_misc compiling types V3_uprobe c++0x=20 spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x # V3_uprobe c++0x spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_small_var")=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_bit_var")=0D Pass 2: analysis failed. Try again with another '--vp 01' option.=0D XFAIL: sdt_misc types types V3_uprobe c++0x Executing on host: g++ /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/in= clude -Wall -Werror -I. -DSTAP_SDT_V3 -std=3Dc++0x -x c++ -pedantic -m64 = -lm -o sdt_types.x (timeout =3D 300) spawn -ignore SIGHUP g++ /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/i= nclude -Wall -Werror -I. -DSTAP_SDT_V3 -std=3Dc++0x -x c++ -pedantic -m64 -= lm -o sdt_types.x=0D PASS: sdt_misc compiling types V3_uprobe c++0x -pedantic spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x # V3_uprobe c++0x spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_small_var")=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_bit_var")=0D Pass 2: analysis failed. Try again with another '--vp 01' option.=0D XFAIL: sdt_misc types types V3_uprobe c++0x Executing on host: g++ /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/in= clude -Wall -Werror -I. -DSTAP_SDT_V3 -std=3Dgnu++0x -x c++ -m64 -lm -= o sdt_types.x (timeout =3D 300) spawn -ignore SIGHUP g++ /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/i= nclude -Wall -Werror -I. -DSTAP_SDT_V3 -std=3Dgnu++0x -x c++ -m64 -lm -o sd= t_types.x=0D PASS: sdt_misc compiling types V3_uprobe gnu++0x=20 spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x # V3_uprobe gnu++0x spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_small_var")=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_bit_var")=0D Pass 2: analysis failed. Try again with another '--vp 01' option.=0D XFAIL: sdt_misc types types V3_uprobe gnu++0x Executing on host: g++ /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/in= clude -Wall -Werror -I. -DSTAP_SDT_V3 -std=3Dgnu++0x -x c++ -pedantic -m64= -lm -o sdt_types.x (timeout =3D 300) spawn -ignore SIGHUP g++ /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt_types.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/i= nclude -Wall -Werror -I. -DSTAP_SDT_V3 -std=3Dgnu++0x -x c++ -pedantic -m64= -lm -o sdt_types.x=0D PASS: sdt_misc compiling types V3_uprobe gnu++0x -pedantic spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x # V3_uprobe gnu++0x spawn /usr/local/bin/stap -g -c ./sdt_types.x /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_types.stp ./sdt_types.x=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_small_var")=0D semantic error: no match while resolving probe point process("./sdt_types.x= ").mark("bitfields_bit_var")=0D Pass 2: analysis failed. Try again with another '--vp 01' option.=0D XFAIL: sdt_misc types types V3_uprobe gnu++0x Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t_misc.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/inc= lude -Wall -Werror /home/prasadkr/systemtap/testsuite/sdt_misc_.o -I. -DSTA= P_SDT_V3 -shared -fPIC -DNO_MAIN -lm -o /home/prasadkr/systemtap/testsui= te/libsdt_V3_uprobe.so (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt_misc.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/in= clude -Wall -Werror /home/prasadkr/systemtap/testsuite/sdt_misc_.o -I. -DST= AP_SDT_V3 -shared -fPIC -DNO_MAIN -lm -o /home/prasadkr/systemtap/testsuite= /libsdt_V3_uprobe.so=0D Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t_misc.c -Wl,-rpath,/home/prasadkr/systemtap/testsuite -L/home/prasadkr/sy= stemtap/testsuite -lsdt_V3_uprobe -DONLY_MAIN -lm -o /home/prasadkr/syst= emtap/testsuite/sdt_misc_V3_uprobe_shared.x (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt_misc.c -Wl,-rpath,/home/prasadkr/systemtap/testsuite -L/home/prasadkr/s= ystemtap/testsuite -lsdt_V3_uprobe -DONLY_MAIN -lm -o /home/prasadkr/system= tap/testsuite/sdt_misc_V3_uprobe_shared.x=0D PASS: sdt_misc compiling -shared V3_uprobe spawn /usr/local/bin/stap -c /home/prasadkr/systemtap/testsuite/sdt_misc_V3= _uprobe_shared.x /home/prasadkr/systemtap/testsuite/systemtap.base/sdt_misc= .stp /home/prasadkr/systemtap/testsuite/sdt_misc_V3_uprobe_shared.x /home/p= rasadkr/systemtap/testsuite/libsdt_V3_uprobe.so spawn /usr/local/bin/stap -c /home/prasadkr/systemtap/testsuite/sdt_misc_V3= _uprobe_shared.x /home/prasadkr/systemtap/testsuite/systemtap.base/sdt_misc= .stp /home/prasadkr/systemtap/testsuite/sdt_misc_V3_uprobe_shared.x /home/p= rasadkr/systemtap/testsuite/libsdt_V3_uprobe.so=0D In test_probe_2 probe 0x2=0D In test_probe_2 probe 0x2=0D In test_probe_0 probe 0x3=0D In test_probe_3 probe 0x3 0x10000ae0=0D In test_probe_4 dtrace probe 0xfffd2059068=0D In test_probe_1 probe 0x0=0D PASS: sdt_misc shared V3_uprobe Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t_misc.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/inc= lude -Wall -Werror /home/prasadkr/systemtap/testsuite/sdt_misc_.o -I. -DSTA= P_SDT_V3 -shared -fPIC -DNO_MAIN -DLOOP -lm -o /home/prasadkr/systemtap/= testsuite/libsdt_V3_uprobe_loop.so (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt_misc.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/in= clude -Wall -Werror /home/prasadkr/systemtap/testsuite/sdt_misc_.o -I. -DST= AP_SDT_V3 -shared -fPIC -DNO_MAIN -DLOOP -lm -o /home/prasadkr/systemtap/te= stsuite/libsdt_V3_uprobe_loop.so=0D Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t_misc.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/inc= lude -I. -DSTAP_SDT_V3 -DLOOP -DONLY_MAIN -Wl,-rpath,/home/prasadkr/systemt= ap/testsuite -L/home/prasadkr/systemtap/testsuite -lsdt_V3_uprobe_loop -lm= -o /home/prasadkr/systemtap/testsuite/sdt_misc_V3_uprobe_loop_shared.x = (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt_misc.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/in= clude -I. -DSTAP_SDT_V3 -DLOOP -DONLY_MAIN -Wl,-rpath,/home/prasadkr/system= tap/testsuite -L/home/prasadkr/systemtap/testsuite -lsdt_V3_uprobe_loop -lm= -o /home/prasadkr/systemtap/testsuite/sdt_misc_V3_uprobe_loop_shared.x=0D PASS: sdt_misc compiling V3_uprobe -DLOOP /home/prasadkr/systemtap/testsuite/sdt_misc_V3_uprobe_loop_shared.x >| ,sem= clean 2>&1 & TEST=3D$! ; /usr/local/bin/stap /home/prasadkr/systemtap/test= suite/systemtap.base/sdt_misc.stp /home/prasadkr/systemtap/testsuite/sdt_mi= sc_V3_uprobe_loop_shared.x /home/prasadkr/systemtap/testsuite/libsdt_V3_upr= obe_loop.so >| ,semout ; /usr/bin/kill -SIGINT $TEST spawn cat ,semout=0D In test_probe_2 probe 0x2=0D In test_probe_2 probe 0x2=0D In test_probe_0 probe 0x3=0D In test_probe_3 probe 0x3 0x10000b38=0D In test_probe_4 dtrace probe 0xfffcdb39fa8=0D In test_probe_1 probe 0x0=0D PASS: sdt_misc V3_uprobe shared attach spawn cat ,semclean=0D PASS epilogue test_probe_0_semaphore=3D0=0D PASS epilogue test_probe_2_semaphore=3D0=0D PASS epilogue test_probe_3_semaphore=3D0=0D PASS epilogue test_probe_4_semaphore=3D0=0D PASS: sdt_misc V3_uprobe shared shared epilogue spawn /usr/local/bin/stap -L "process("./sdt_types.x").mark("*") spawn /usr/local/bin/stap -L process("./sdt_types.x").mark("*")=0D process("./sdt_types.x").mark("arr_char") $arg1:long=0D process("./sdt_types.x").mark("bitfields_a_var") $arg1:long $arg2:long $arg= 3:long $arg4:long $arg5:long $arg6:long $arg7:long $arg8:long=0D process("./sdt_types.x").mark("bitfields_b_var") $arg1:long $arg2:long $arg= 3:long $arg4:long $arg5:long $arg6:long $arg7:long $arg8:long $arg9:long $a= rg10:long=0D process("./sdt_types.x").mark("char_ptr_const_var") $arg1:long $arg2:long=0D process("./sdt_types.x").mark("char_ptr_volatile_var") $arg1:long $arg2:lon= g=0D process("./sdt_types.x").mark("char_var") $arg1:long=0D process("./sdt_types.x").mark("const_char_var") $arg1:long=0D process("./sdt_types.x").mark("const_int_var") $arg1:long=0D process("./sdt_types.x").mark("const_long_int_var") $arg1:long=0D process("./sdt_types.x").mark("const_long_long_int_var") $arg1:long=0D process("./sdt_types.x").mark("const_short_int_var") $arg1:long=0D process("./sdt_types.x").mark("constants") $arg1:long $arg2:long $arg3:long= =0D process("./sdt_types.x").mark("int_ptr_const_var") $arg1:long $arg2:long=0D process("./sdt_types.x").mark("int_ptr_volatile_var") $arg1:long $arg2:long= =0D process("./sdt_types.x").mark("int_var") $arg1:long=0D process("./sdt_types.x").mark("long_int_ptr_const_var") $arg1:long $arg2:lo= ng=0D process("./sdt_types.x").mark("long_int_ptr_volatile_var") $arg1:long $arg2= :long=0D process("./sdt_types.x").mark("long_int_var") $arg1:long=0D process("./sdt_types.x").mark("long_long_int_ptr_const_var") $arg1:long $ar= g2:long=0D process("./sdt_types.x").mark("long_long_int_ptr_volatile_var") $arg1:long = $arg2:long=0D process("./sdt_types.x").mark("long_long_int_var") $arg1:long=0D process("./sdt_types.x").mark("ptr_char_var") $arg1:long $arg2:long $arg3:l= ong=0D process("./sdt_types.x").mark("ptr_const_char_var") $arg1:long $arg2:long=0D process("./sdt_types.x").mark("ptr_const_int_var") $arg1:long $arg2:long=0D process("./sdt_types.x").mark("ptr_const_long_int_var") $arg1:long $arg2:lo= ng=0D process("./sdt_types.x").mark("ptr_const_long_long_int_var") $arg1:long $ar= g2:long=0D process("./sdt_types.x").mark("ptr_const_short_int_var") $arg1:long $arg2:l= ong=0D process("./sdt_types.x").mark("ptr_int_var") $arg1:long $arg2:long $arg3:lo= ng=0D process("./sdt_types.x").mark("ptr_long_int_var") $arg1:long $arg2:long=0D process("./sdt_types.x").mark("ptr_long_long_int_var") $arg1:long $arg2:lon= g $arg3:long=0D process("./sdt_types.x").mark("ptr_short_int_var") $arg1:long $arg2:long $a= rg3:long=0D process("./sdt_types.x").mark("ptr_volatile_char_var") $arg1:long $arg2:lon= g=0D process("./sdt_types.x").mark("ptr_volatile_int_var") $arg1:long $arg2:long= =0D process("./sdt_types.x").mark("ptr_volatile_long_int_var") $arg1:long $arg2= :long=0D process("./sdt_types.x").mark("ptr_volatile_long_long_int_var") $arg1:long = $arg2:long=0D process("./sdt_types.x").mark("ptr_volatile_short_int_var") $arg1:long $arg= 2:long=0D process("./sdt_types.x").mark("short_int_ptr_const_var") $arg1:long $arg2:l= ong=0D process("./sdt_types.x").mark("short_int_ptr_volatile_var") $arg1:long $arg= 2:long=0D process("./sdt_types.x").mark("short_int_var") $arg1:long=0D process("./sdt_types.x").mark("something__dash__dash__something")=0D process("./sdt_types.x").mark("unsigned_int_var") $arg1:long $arg2:long $ar= g3:long=0D process("./sdt_types.x").mark("unsigned_short_int_var") $arg1:long $arg2:lo= ng $arg3:long=0D process("./sdt_types.x").mark("volatile_char_var") $arg1:long=0D process("./sdt_types.x").mark("volatile_int_var") $arg1:long=0D process("./sdt_types.x").mark("volatile_long_int_var") $arg1:long=0D process("./sdt_types.x").mark("volatile_long_long_int_var") $arg1:long=0D process("./sdt_types.x").mark("volatile_short_int_var") $arg1:long=0D spawn /usr/local/bin/stap -l process("./sdt_types.x").mark("*-*-*")=0D process("./sdt_types.x").mark("something__dash__dash__something")=0D FAIL: sdt_misc wildcard (48) V3_uprobe Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.base/sd= t_misc.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/inc= lude -Wall -Werror /home/prasadkr/systemtap/testsuite/sdt_misc_.o -I. -DSTA= P_SDT_V3 -g -DNO_SLEEP -lm -o /home/prasadkr/systemtap/testsuite/sdt_mis= c_V3_uprobe_types.x (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.base/= sdt_misc.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/local/in= clude -Wall -Werror /home/prasadkr/systemtap/testsuite/sdt_misc_.o -I. -DST= AP_SDT_V3 -g -DNO_SLEEP -lm -o /home/prasadkr/systemtap/testsuite/sdt_misc_= V3_uprobe_types.x=0D PASS: sdt_misc compiling -g V3_uprobe --types spawn /usr/local/bin/stap -c /home/prasadkr/systemtap/testsuite/sdt_misc_V3= _uprobe_types.x -e "probe process("/home/prasadkr/systemtap/testsuite/sdt_m= isc_V3_uprobe_types.x").mark("test_probe_4") {printf("In %s dtrace probe %#= x %#x\n", $$name, $arg1->a, $arg1->b)}" spawn /usr/local/bin/stap -c /home/prasadkr/systemtap/testsuite/sdt_misc_V3= _uprobe_types.x -e probe process("/home/prasadkr/systemtap/testsuite/sdt_mi= sc_V3_uprobe_types.x").mark("test_probe_4") {printf("In %s dtrace probe %#x= %#x\n", $$name, $arg1->a, $arg1->b)}=0D In test_probe_4 dtrace probe 0x4 0x5=0D PASS: sdt_misc V3_uprobe --types testcase /home/prasadkr/systemtap/testsuite/systemtap.base/sdt_misc.exp com= pleted in 406 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/set_kernel.exp ... executing: stap -v -g /home/prasadkr/systemtap/testsuite/systemtap.base/set= _kernel.stp spawn stap -v -g /home/prasadkr/systemtap/testsuite/systemtap.base/set_kern= el.stp=0D Pass 1: parsed user script and 75 library script(s) using 38592virt/30784re= s/7872shr kb, in 250usr/0sys/247real ms.=0D Pass 2: analyzed script: 3 probe(s), 15 function(s), 0 embed(s), 1 global(s= ) using 39168virt/31488res/8064shr kb, in 0usr/0sys/6real ms.=0D Pass 3: translated to C into "/tmp/stapQLAStT/stap_8a8b4be4c03453ffeaa0b71d= e7852095_7416.c" using 39168virt/31808res/8384shr kb, in 10usr/0sys/5real m= s.=0D Pass 4: compiled C into "stap_8a8b4be4c03453ffeaa0b71de7852095_7416.ko" in = 2050usr/200sys/2261real ms.=0D Pass 5: starting run.=0D systemtap starting probe=0D PASS: systemtap.base/set_kernel.stp startup PASS: systemtap.base/set_kernel.stp load generation systemtap ending probe=0D systemtap test success=0D Pass 5: run completed in 0usr/20sys/328real ms.=0D FAIL: systemtap.base/set_kernel.stp shutdown (eof) testcase /home/prasadkr/systemtap/testsuite/systemtap.base/set_kernel.exp c= ompleted in 3 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/simple.exp ... executing: stap -v /home/prasadkr/systemtap/testsuite/systemtap.base/simple= .stp spawn stap -v /home/prasadkr/systemtap/testsuite/systemtap.base/simple.stp= =0D Pass 1: parsed user script and 75 library script(s) using 38528virt/30592re= s/7872shr kb, in 250usr/0sys/245real ms.=0D Pass 2: analyzed script: 2 probe(s), 0 function(s), 0 embed(s), 0 global(s)= using 39104virt/31296res/8064shr kb, in 0usr/0sys/5real ms.=0D Pass 3: translated to C into "/tmp/stapKtEMfT/stap_2b348bcd447c6f37080130fe= b499d470_683.c" using 39104virt/31680res/8384shr kb, in 0usr/0sys/0real ms.= =0D Pass 4: compiled C into "stap_2b348bcd447c6f37080130feb499d470_683.ko" in 1= 630usr/200sys/1845real ms.=0D Pass 5: starting run.=0D systemtap starting probe=0D PASS: systemtap.base/simple.stp startup systemtap ending probe=0D Pass 5: run completed in 0usr/20sys/328real ms.=0D PASS: systemtap.base/simple.stp shutdown and output metric: systemtap.base/simple.stp 250 0 245 0 0 5 0 0 0 1630 200 1845 0 20= 328 testcase /home/prasadkr/systemtap/testsuite/systemtap.base/simple.exp compl= eted in 2 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/skipped.exp ... spawn stap -e=20 global f probe timer.profile { f++; snooze() } function snooze() %{ udelay(10000); %} -DMAXTRYLOCK=3D0 -DSTP_NO_OVERLOAD -tug=0D ERROR: Skipped too many probes, check MAXSKIPPED or try again with stap -t = for more details.=0D WARNING: Number of errors: 0, skipped probes: 101=0D WARNING: Skipped due to global 'f' lock timeout: 101=0D ----- probe hit report: =0D timer.profile, (:3:1), hits: 398, cycles: 98min/3820869avg/5124799ma= x, from: timer.profile=0D Pass 5: run failed. Try again with another '--vp 00001' option.=0D FAIL: skip tracking (2 0 2 1) testcase /home/prasadkr/systemtap/testsuite/systemtap.base/skipped.exp comp= leted in 8 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/statement.exp ... PASS: bz6905 compile spawn stap -p2 /home/prasadkr/systemtap/testsuite/systemtap.base/bz6905.stp= =0D # probes=0D process("/home/prasadkr/systemtap/testsuite/bz6905").statement("main@/home/= prasadkr/systemtap/testsuite/systemtap.base/bz6905.c:2") /* pc=3D.absolute+= 0x100004e0 */ /* <- process("./bz6905").statement("main@bz6905.c:*") */=0D process("/home/prasadkr/systemtap/testsuite/bz6905").statement("main@/home/= prasadkr/systemtap/testsuite/systemtap.base/bz6905.c:5") /* pc=3D.absolute+= 0x100004ec */ /* <- process("./bz6905").statement("main@bz6905.c:*") */=0D process("/home/prasadkr/systemtap/testsuite/bz6905").statement("main@/home/= prasadkr/systemtap/testsuite/systemtap.base/bz6905.c:6") /* pc=3D.absolute+= 0x100004f8 */ /* <- process("./bz6905").statement("main@bz6905.c:*") */=0D process("/home/prasadkr/systemtap/testsuite/bz6905").statement("main@/home/= prasadkr/systemtap/testsuite/systemtap.base/bz6905.c:7") /* pc=3D.absolute+= 0x100004fc */ /* <- process("./bz6905").statement("main@bz6905.c:*") */=0D PASS: bz6905 -p2 PASS: bz10294 compile spawn stap -p2 /home/prasadkr/systemtap/testsuite/systemtap.base/bz10294.st= p=0D # probes=0D process("/home/prasadkr/systemtap/testsuite/bz10294").statement("func_b@/ho= me/prasadkr/systemtap/testsuite/systemtap.base/bz10294.c:10") /* pc=3D.abso= lute+0x10000538 */ /* <- process("./bz10294").statement("*@bz10294.c:10-10"= ) */=0D PASS: bz10294 -p2 spawn stap -p2 -we probe %( CONFIG_UTRACE =3D=3D "y" %? process("./bz10294"= ).statement("foo@bz10294.c:*") %: never %) {}=0D semantic error: no match while resolving probe point process("./bz10294").s= tatement("foo@bz10294.c:*")=0D Pass 2: analysis failed. Try again with another '--vp 01' option.=0D XFAIL: stmtnofunc testcase /home/prasadkr/systemtap/testsuite/systemtap.base/statement.exp co= mpleted in 1 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/stmt_rel.exp ... spawn stap -l kernel.statement("bio_init@fs/bio.c+2")=0D kernel.statement("bio_init@fs/bio.c:257")=0D spawn stap -l kernel.statement("bio_init@fs/bio.c+3")=0D kernel.statement("bio_init@fs/bio.c:258")=0D PASS: stmt_rel line numbers spawn stap -l kernel.statement("bio_init@fs/bio.c:*")=0D kernel.statement("bio_init@fs/bio.c:255")=0D kernel.statement("bio_init@fs/bio.c:256")=0D kernel.statement("bio_init@fs/bio.c:257")=0D kernel.statement("bio_init@fs/bio.c:258")=0D kernel.statement("bio_init@fs/bio.c:260")=0D PASS: stmt_rel wildcard testcase /home/prasadkr/systemtap/testsuite/systemtap.base/stmt_rel.exp com= pleted in 4 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/stmtvars.exp ... spawn stap -e probe kernel.function("do_sys_open") {$foo} -p4 -vv -u=0D Created temporary directory "/tmp/stapsREMkc"=0D SystemTap translator/driver (version 1.5/0.148 commit release-1.4-37-g55b37= 7f + changes)=0D Copyright (C) 2005-2011 Red Hat, Inc. and others=0D This is free software; see the source for copying conditions.=0D enabled features: LIBRPM LIBSQLITE3 TR1_UNORDERED_MAP=0D Session arch: powerpc release: 2.6.32-71.el6.ppc64=0D Searched "/usr/local/share/systemtap/tapset/powerpc/*.stp", found 3 process= ed 3=0D Searched "/usr/local/share/systemtap/tapset/*.stp", found 72 processed 72=0D Pass 1: parsed user script and 75 library script(s) using 38272virt/30464re= s/7872shr kb, in 270usr/0sys/262real ms.=0D probe do_sys_open@fs/open.c:1035 kernel reloc=3D.dynamic pc=3D0xc0000000001= adb20=0D semantic error: unable to find local 'foo' near pc 0xc0000000001adb20 in do= _sys_open(fs/open.c) (alternatives: $dfd $filename $flags $mode $tmp $fd): = identifier '$foo' at :1:39=0D source: probe kernel.function("do_sys_open") {$foo}=0D ^=0D Pass 2: analyzed script: 1 probe(s), 0 function(s), 0 embed(s), 0 global(s)= using 161920virt/112576res/69824shr kb, in 460usr/10sys/471real ms.=0D Pass 2: analysis failed. Try again with another '--vp 01' option.=0D Running rm -rf /tmp/stapsREMkc=0D pc=3D0xc0000000001adb20 vars=3D$dfd $filename $flags $mode $tmp $fd PASS: stmtvars - .function spawn stap -e probe kernel.statement(0xc0000000001adb20) {$foo} -p4 -vv -u= =0D Created temporary directory "/tmp/stapc99ZX1"=0D SystemTap translator/driver (version 1.5/0.148 commit release-1.4-37-g55b37= 7f + changes)=0D Copyright (C) 2005-2011 Red Hat, Inc. and others=0D This is free software; see the source for copying conditions.=0D enabled features: LIBRPM LIBSQLITE3 TR1_UNORDERED_MAP=0D Session arch: powerpc release: 2.6.32-71.el6.ppc64=0D Searched "/usr/local/share/systemtap/tapset/powerpc/*.stp", found 3 process= ed 3=0D Searched "/usr/local/share/systemtap/tapset/*.stp", found 72 processed 72=0D Pass 1: parsed user script and 75 library script(s) using 38272virt/30464re= s/7872shr kb, in 240usr/0sys/245real ms.=0D probe do_sys_open@fs/open.c:1036 kernel reloc=3D.dynamic pc=3D0xc0000000001= adb20=0D semantic error: unable to find local 'foo' near pc 0xc0000000001adb20 in do= _sys_open(fs/open.c) (alternatives: $dfd $filename $flags $mode $tmp $fd): = identifier '$foo' at :1:45=0D source: probe kernel.statement(0xc0000000001adb20) {$foo}=0D ^=0D Pass 2: analyzed script: 1 probe(s), 0 function(s), 0 embed(s), 0 global(s)= using 150592virt/95744res/64192shr kb, in 90usr/0sys/99real ms.=0D Pass 2: analysis failed. Try again with another '--vp 01' option.=0D Running rm -rf /tmp/stapc99ZX1=0D pc2=3D0xc0000000001adb20 vars2=3D$dfd $filename $flags $mode $tmp $fd PASS: stmtvars testcase /home/prasadkr/systemtap/testsuite/systemtap.base/stmtvars.exp com= pleted in 1 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/strftime.exp ... PASS: strftime (%S and %T) PASS: strftime (except %S and %T) testcase /home/prasadkr/systemtap/testsuite/systemtap.base/strftime.exp com= pleted in 3 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/system_func.exp .= .. spawn stap /home/prasadkr/systemtap/testsuite/systemtap.base/system_func.st= p=0D root=0D do_sys_open=0D cat: __xyzzy123ABC__: No such file or directory=0D DONE=0D PASS: system_func testcase /home/prasadkr/systemtap/testsuite/systemtap.base/system_func.exp = completed in 5 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/tapset_includes.e= xp ... PASS: tapset include global PASS: tapset include function PASS: tapset include alias testcase /home/prasadkr/systemtap/testsuite/systemtap.base/tapset_includes.= exp completed in 7 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/target_set.exp ... spawn stap /home/prasadkr/systemtap/testsuite/systemtap.base/target_set.stp= 12345 -c ( ( /bin/sleep 12345 ) ; ( /bin/sleep 12345 ) ; ( /bin/sleep 1234= 5 ) )=0D semantic error: invalid access '->tv_sec' vs. long int: operator '->' at /h= ome/prasadkr/systemtap/testsuite/systemtap.base/target_set.stp:9:36=0D source: if (target_set_pid(pid()) && $rqtp->tv_sec =3D=3D $1)=0D ^=0D Pass 2: analysis failed. Try again with another '--vp 01' option.=0D ERROR: tcl error sourcing /home/prasadkr/systemtap/testsuite/systemtap.base= /target_set.exp. ERROR: expect: spawn id exp15 not open while executing "expect { -re {^([0-9]+) begat ([0-9]+)\r\n} { set pid_array($expect_out(1,string)= ) $expect_out(2,string) } timeout { failtest; return -code retu..." (procedure "expect_target_set_pids" line 5) invoked from within "expect_target_set_pids 1" (file "/home/prasadkr/systemtap/testsuite/systemtap.base/target_set.exp= " line 54) invoked from within "source /home/prasadkr/systemtap/testsuite/systemtap.base/target_set.exp" ("uplevel" body line 1) invoked from within "uplevel #0 source /home/prasadkr/systemtap/testsuite/systemtap.base/target= _set.exp" invoked from within "catch "uplevel #0 source $test_file_name"" testcase /home/prasadkr/systemtap/testsuite/systemtap.base/target_set.exp c= ompleted in 1 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/timeofday.exp ... executing: stap -v -e { global timeofday probe kernel.function("do_timer") { timeofday =3D gettimeofday_us() } probe begin { log("systemtap starting probe") } probe end { log("systemtap ending probe") printf("%d\n", timeofday) } } spawn stap -v -e=20 global timeofday probe kernel.function("do_timer") { timeofday =3D gettimeofday_us() } probe begin { log("systemtap starting probe") } probe end { log("systemtap ending probe") printf("%d\n", timeofday) } =0D Pass 1: parsed user script and 75 library script(s) using 38528virt/30592re= s/7872shr kb, in 250usr/0sys/263real ms.=0D Pass 2: analyzed script: 3 probe(s), 3 function(s), 1 embed(s), 1 global(s)= using 162176virt/112832res/69824shr kb, in 460usr/10sys/470real ms.=0D Pass 3: translated to C into "/tmp/stapCvmhnk/stap_f22d3ac3bcca7cc9c2025591= 1d449cf6_1445.c" using 162176virt/114368res/71360shr kb, in 1210usr/10sys/1= 217real ms.=0D Pass 4: compiled C into "stap_f22d3ac3bcca7cc9c20255911d449cf6_1445.ko" in = 2370usr/210sys/2587real ms.=0D Pass 5: starting run.=0D systemtap starting probe=0D PASS: timeofday test startup PASS: timeofday test load generation systemtap ending probe=0D 1296666619382741=0D PASS: timeofday test shutdown and output Pass 5: run completed in 10usr/30sys/1480real ms.=0D metric: timeofday test 250 0 263 460 10 470 1210 10 1217 2370 210 2587 10 = 30 1480 testcase /home/prasadkr/systemtap/testsuite/systemtap.base/timeofday.exp co= mpleted in 6 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/timers.exp ... executing: stap -v /home/prasadkr/systemtap/testsuite/systemtap.base/timers= .stp spawn stap -v /home/prasadkr/systemtap/testsuite/systemtap.base/timers.stp= =0D Pass 1: parsed user script and 75 library script(s) using 38528virt/30656re= s/7872shr kb, in 250usr/0sys/263real ms.=0D Pass 2: analyzed script: 9 probe(s), 0 function(s), 0 embed(s), 7 global(s)= using 39104virt/31360res/8064shr kb, in 10usr/0sys/6real ms.=0D Pass 3: translated to C into "/tmp/stap9Npb7t/stap_574215c084379c194750c6ea= 0550705f_2024.c" using 147776virt/41600res/13056shr kb, in 1210usr/10sys/12= 19real ms.=0D Pass 4: compiled C into "stap_574215c084379c194750c6ea0550705f_2024.ko" in = 2420usr/210sys/2644real ms.=0D Pass 5: starting run.=0D systemtap starting probe=0D PASS: systemtap.base/timers.stp startup PASS: systemtap.base/timers.stp load generation systemtap ending probe=0D p =3D 2050=0D j1 =3D 1025=0D j2 =3D 512=0D jmax =3D 0=0D ms1 =3D 10252=0D ms500 =3D 20=0D msmax =3D 0=0D systemtap test success=0D systemtap test success=0D systemtap test success=0D systemtap test success=0D Pass 5: run completed in 10usr/20sys/10381real ms.=0D FAIL: systemtap.base/timers.stp shutdown (eof) testcase /home/prasadkr/systemtap/testsuite/systemtap.base/timers.exp compl= eted in 15 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/tracepoints.exp .= .. spawn stap -l kernel.trace("*")=0D kernel.trace("block_bio_backmerge")=0D kernel.trace("block_bio_bounce")=0D kernel.trace("block_bio_complete")=0D kernel.trace("block_bio_frontmerge")=0D kernel.trace("block_bio_queue")=0D kernel.trace("block_getrq")=0D kernel.trace("block_plug")=0D kernel.trace("block_remap")=0D kernel.trace("block_rq_abort")=0D kernel.trace("block_rq_complete")=0D kernel.trace("block_rq_insert")=0D kernel.trace("block_rq_issue")=0D kernel.trace("block_rq_remap")=0D kernel.trace("block_rq_requeue")=0D kernel.trace("block_sleeprq")=0D kernel.trace("block_split")=0D kernel.trace("block_unplug_io")=0D kernel.trace("block_unplug_timer")=0D kernel.trace("ext4_alloc_da_blocks")=0D kernel.trace("ext4_allocate_blocks")=0D kernel.trace("ext4_allocate_inode")=0D kernel.trace("ext4_da_write_begin")=0D kernel.trace("ext4_da_write_end")=0D kernel.trace("ext4_da_write_pages")=0D kernel.trace("ext4_da_writepages")=0D kernel.trace("ext4_da_writepages_result")=0D kernel.trace("ext4_discard_blocks")=0D kernel.trace("ext4_discard_preallocations")=0D kernel.trace("ext4_free_blocks")=0D kernel.trace("ext4_free_inode")=0D kernel.trace("ext4_journalled_write_end")=0D kernel.trace("ext4_mb_discard_preallocations")=0D kernel.trace("ext4_mb_new_group_pa")=0D kernel.trace("ext4_mb_new_inode_pa")=0D kernel.trace("ext4_mb_release_group_pa")=0D kernel.trace("ext4_mb_release_inode_pa")=0D kernel.trace("ext4_mballoc_alloc")=0D kernel.trace("ext4_mballoc_discard")=0D kernel.trace("ext4_mballoc_free")=0D kernel.trace("ext4_mballoc_prealloc")=0D kernel.trace("ext4_ordered_write_end")=0D kernel.trace("ext4_request_blocks")=0D kernel.trace("ext4_request_inode")=0D kernel.trace("ext4_sync_file")=0D kernel.trace("ext4_sync_fs")=0D kernel.trace("ext4_write_begin")=0D kernel.trace("ext4_writeback_write_end")=0D kernel.trace("ext4_writepage")=0D kernel.trace("hrtimer_cancel")=0D kernel.trace("hrtimer_expire_entry")=0D kernel.trace("hrtimer_expire_exit")=0D kernel.trace("hrtimer_init")=0D kernel.trace("hrtimer_start")=0D kernel.trace("irq_handler_entry")=0D kernel.trace("irq_handler_exit")=0D kernel.trace("itimer_expire")=0D kernel.trace("itimer_state")=0D kernel.trace("jbd2_checkpoint")=0D kernel.trace("jbd2_checkpoint_stats")=0D kernel.trace("jbd2_commit_flushing")=0D kernel.trace("jbd2_commit_locking")=0D kernel.trace("jbd2_commit_logging")=0D kernel.trace("jbd2_end_commit")=0D kernel.trace("jbd2_run_stats")=0D kernel.trace("jbd2_start_commit")=0D kernel.trace("jbd2_submit_inode_data")=0D kernel.trace("kfree")=0D kernel.trace("kfree_skb")=0D kernel.trace("kmalloc")=0D kernel.trace("kmalloc_node")=0D kernel.trace("kmem_cache_alloc")=0D kernel.trace("kmem_cache_alloc_node")=0D kernel.trace("kmem_cache_free")=0D kernel.trace("kvm_mmio")=0D kernel.trace("mm_anon_cow")=0D kernel.trace("mm_anon_fault")=0D kernel.trace("mm_anon_pgin")=0D kernel.trace("mm_anon_unmap")=0D kernel.trace("mm_anon_userfree")=0D kernel.trace("mm_background_writeout")=0D kernel.trace("mm_balancedirty_writeout")=0D kernel.trace("mm_directreclaim_reclaimall")=0D kernel.trace("mm_directreclaim_reclaimzone")=0D kernel.trace("mm_filemap_cow")=0D kernel.trace("mm_filemap_fault")=0D kernel.trace("mm_filemap_unmap")=0D kernel.trace("mm_filemap_userunmap")=0D kernel.trace("mm_kernel_pagefault")=0D kernel.trace("mm_kswapd_ran")=0D kernel.trace("mm_olddata_writeout")=0D kernel.trace("mm_page_alloc")=0D kernel.trace("mm_page_alloc_extfrag")=0D kernel.trace("mm_page_alloc_zone_locked")=0D kernel.trace("mm_page_free_direct")=0D kernel.trace("mm_page_pcpu_drain")=0D kernel.trace("mm_pagereclaim_free")=0D kernel.trace("mm_pagereclaim_pgout")=0D kernel.trace("mm_pagereclaim_shrinkactive")=0D kernel.trace("mm_pagereclaim_shrinkinactive")=0D kernel.trace("mm_pagereclaim_shrinkzone")=0D kernel.trace("mm_pagevec_free")=0D kernel.trace("mm_vmscan_direct_reclaim_begin")=0D kernel.trace("mm_vmscan_direct_reclaim_end")=0D kernel.trace("mm_vmscan_kswapd_sleep")=0D kernel.trace("mm_vmscan_kswapd_wake")=0D kernel.trace("mm_vmscan_lru_isolate")=0D kernel.trace("mm_vmscan_wakeup_kswapd")=0D kernel.trace("mm_vmscan_writepage")=0D kernel.trace("module_free")=0D kernel.trace("module_get")=0D kernel.trace("module_load")=0D kernel.trace("module_put")=0D kernel.trace("module_request")=0D kernel.trace("napi_poll")=0D kernel.trace("power_end")=0D kernel.trace("power_frequency")=0D kernel.trace("power_start")=0D kernel.trace("rpc_bind_status")=0D kernel.trace("rpc_call_status")=0D kernel.trace("rpc_connect_status")=0D kernel.trace("sched_kthread_stop")=0D kernel.trace("sched_kthread_stop_ret")=0D kernel.trace("sched_migrate_task")=0D kernel.trace("sched_process_exit")=0D kernel.trace("sched_process_fork")=0D kernel.trace("sched_process_free")=0D kernel.trace("sched_process_wait")=0D kernel.trace("sched_stat_iowait")=0D kernel.trace("sched_stat_runtime")=0D kernel.trace("sched_stat_sleep")=0D kernel.trace("sched_stat_wait")=0D kernel.trace("sched_switch")=0D kernel.trace("sched_wait_task")=0D kernel.trace("sched_wakeup")=0D kernel.trace("sched_wakeup_new")=0D kernel.trace("scsi_dispatch_cmd_done")=0D kernel.trace("scsi_dispatch_cmd_error")=0D kernel.trace("scsi_dispatch_cmd_start")=0D kernel.trace("scsi_dispatch_cmd_timeout")=0D kernel.trace("scsi_eh_wakeup")=0D kernel.trace("signal_deliver")=0D kernel.trace("signal_generate")=0D kernel.trace("signal_lose_info")=0D kernel.trace("signal_overflow_fail")=0D kernel.trace("skb_copy_datagram_iovec")=0D kernel.trace("softirq_entry")=0D kernel.trace("softirq_exit")=0D kernel.trace("timer_cancel")=0D kernel.trace("timer_expire_entry")=0D kernel.trace("timer_expire_exit")=0D kernel.trace("timer_init")=0D kernel.trace("timer_start")=0D kernel.trace("wbc_balance_dirty_start")=0D kernel.trace("wbc_balance_dirty_wait")=0D kernel.trace("wbc_balance_dirty_written")=0D kernel.trace("wbc_writeback_start")=0D kernel.trace("wbc_writeback_wait")=0D kernel.trace("wbc_writeback_written")=0D kernel.trace("wbc_writepage")=0D kernel.trace("workqueue_creation")=0D kernel.trace("workqueue_destruction")=0D kernel.trace("workqueue_execution")=0D kernel.trace("workqueue_insertion")=0D kernel.trace("writeback_bdi_register")=0D kernel.trace("writeback_bdi_unregister")=0D kernel.trace("writeback_exec")=0D kernel.trace("writeback_nothread")=0D kernel.trace("writeback_nowork")=0D kernel.trace("writeback_pages_written")=0D kernel.trace("writeback_queue")=0D kernel.trace("writeback_task_start")=0D kernel.trace("writeback_task_stop")=0D Trying stap -w -p4 -e probe begin {} probe kernel.trace("block_bio_backmerg= e") { println($$name, $$vars) } probe kernel.trace("block_bio_bounce") { pr= intln($$name, $$vars) } probe kernel.trace("block_bio_complete") { println(= $$name, $$vars) } probe kernel.trace("block_bio_frontmerge") { println($$na= me, $$vars) } probe kernel.trace("block_bio_queue") { println($$name, $$var= s) } probe kernel.trace("block_getrq") { println($$name, $$vars) } probe ke= rnel.trace("block_plug") { println($$name, $$vars) } probe kernel.trace("bl= ock_remap") { println($$name, $$vars) } probe kernel.trace("block_rq_abort"= ) { println($$name, $$vars) } probe kernel.trace("block_rq_complete") { pri= ntln($$name, $$vars) } probe kernel.trace("block_rq_insert") { println($$na= me, $$vars) } probe kernel.trace("block_rq_issue") { println($$name, $$vars= ) } probe kernel.trace("block_rq_remap") { println($$name, $$vars) } probe = kernel.trace("block_rq_requeue") { println($$name, $$vars) } probe kernel.t= race("block_sleeprq") { println($$name, $$vars) } probe kernel.trace("block= _split") { println($$name, $$vars) } probe kernel.trace("block_unplug_io") = { println($$name, $$vars) } probe kernel.trace("block_unplug_timer") { prin= tln($$name, $$vars) } probe kernel.trace("ext4_alloc_da_blocks") { println(= $$name, $$vars) } probe kernel.trace("ext4_allocate_blocks") { println($$na= me, $$vars) } probe kernel.trace("ext4_allocate_inode") { println($$name, $= $vars) } probe kernel.trace("ext4_da_write_begin") { println($$name, $$vars= ) } probe kernel.trace("ext4_da_write_end") { println($$name, $$vars) } pro= be kernel.trace("ext4_da_write_pages") { println($$name, $$vars) } probe ke= rnel.trace("ext4_da_writepages") { println($$name, $$vars) } probe kernel.t= race("ext4_da_writepages_result") { println($$name, $$vars) } probe kernel.= trace("ext4_discard_blocks") { println($$name, $$vars) } probe kernel.trace= ("ext4_discard_preallocations") { println($$name, $$vars) } probe kernel.tr= ace("ext4_free_blocks") { println($$name, $$vars) } probe kernel.trace("ext= 4_free_inode") { println($$name, $$vars) } probe kernel.trace("ext4_journal= led_write_end") { println($$name, $$vars) } probe kernel.trace("ext4_mb_dis= card_preallocations") { println($$name, $$vars) } probe kernel.trace("ext4_= mb_new_group_pa") { println($$name, $$vars) } probe kernel.trace("ext4_mb_n= ew_inode_pa") { println($$name, $$vars) } probe kernel.trace("ext4_mb_relea= se_group_pa") { println($$name, $$vars) } probe kernel.trace("ext4_mb_relea= se_inode_pa") { println($$name, $$vars) } probe kernel.trace("ext4_mballoc_= alloc") { println($$name, $$vars) } probe kernel.trace("ext4_mballoc_discar= d") { println($$name, $$vars) } probe kernel.trace("ext4_mballoc_free") { p= rintln($$name, $$vars) } probe kernel.trace("ext4_mballoc_prealloc") { prin= tln($$name, $$vars) } probe kernel.trace("ext4_ordered_write_end") { printl= n($$name, $$vars) } probe kernel.trace("ext4_request_blocks") { println($$n= ame, $$vars) } probe kernel.trace("ext4_request_inode") { println($$name, $= $vars) } probe kernel.trace("ext4_sync_file") { println($$name, $$vars) } p= robe kernel.trace("ext4_sync_fs") { println($$name, $$vars) } probe kernel.= trace("ext4_write_begin") { println($$name, $$vars) } probe kernel.trace("e= xt4_writeback_write_end") { println($$name, $$vars) } probe kernel.trace("e= xt4_writepage") { println($$name, $$vars) } probe kernel.trace("hrtimer_can= cel") { println($$name, $$vars) } probe kernel.trace("hrtimer_expire_entry"= ) { println($$name, $$vars) } probe kernel.trace("hrtimer_expire_exit") { p= rintln($$name, $$vars) } probe kernel.trace("hrtimer_init") { println($$nam= e, $$vars) } probe kernel.trace("hrtimer_start") { println($$name, $$vars) = } probe kernel.trace("irq_handler_entry") { println($$name, $$vars) } probe= kernel.trace("irq_handler_exit") { println($$name, $$vars) } probe kernel.= trace("itimer_expire") { println($$name, $$vars) } probe kernel.trace("itim= er_state") { println($$name, $$vars) } probe kernel.trace("jbd2_checkpoint"= ) { println($$name, $$vars) } probe kernel.trace("jbd2_checkpoint_stats") {= println($$name, $$vars) } probe kernel.trace("jbd2_commit_flushing") { pri= ntln($$name, $$vars) } probe kernel.trace("jbd2_commit_locking") { println(= $$name, $$vars) } probe kernel.trace("jbd2_commit_logging") { println($$nam= e, $$vars) } probe kernel.trace("jbd2_end_commit") { println($$name, $$vars= ) } probe kernel.trace("jbd2_run_stats") { println($$name, $$vars) } probe = kernel.trace("jbd2_start_commit") { println($$name, $$vars) } probe kernel.= trace("jbd2_submit_inode_data") { println($$name, $$vars) } probe kernel.tr= ace("kfree") { println($$name, $$vars) } probe kernel.trace("kfree_skb") { = println($$name, $$vars) } probe kernel.trace("kmalloc") { println($$name, $= $vars) } probe kernel.trace("kmalloc_node") { println($$name, $$vars) } pro= be kernel.trace("kmem_cache_alloc") { println($$name, $$vars) } probe kerne= l.trace("kmem_cache_alloc_node") { println($$name, $$vars) } probe kernel.t= race("kmem_cache_free") { println($$name, $$vars) } probe kernel.trace("kvm= _mmio") { println($$name, $$vars) } probe kernel.trace("mm_anon_cow") { pri= ntln($$name, $$vars) } probe kernel.trace("mm_anon_fault") { println($$name= , $$vars) } probe kernel.trace("mm_anon_pgin") { println($$name, $$vars) } = probe kernel.trace("mm_anon_unmap") { println($$name, $$vars) } probe kerne= l.trace("mm_anon_userfree") { println($$name, $$vars) } probe kernel.trace(= "mm_background_writeout") { println($$name, $$vars) } probe kernel.trace("m= m_balancedirty_writeout") { println($$name, $$vars) } probe kernel.trace("m= m_directreclaim_reclaimall") { println($$name, $$vars) } probe kernel.trace= ("mm_directreclaim_reclaimzone") { println($$name, $$vars) } probe kernel.t= race("mm_filemap_cow") { println($$name, $$vars) } probe kernel.trace("mm_f= ilemap_fault") { println($$name, $$vars) } probe kernel.trace("mm_filemap_u= nmap") { println($$name, $$vars) } probe kernel.trace("mm_filemap_userunmap= ") { println($$name, $$vars) } probe kernel.trace("mm_kernel_pagefault") { = println($$name, $$vars) } probe kernel.trace("mm_kswapd_ran") { println($$n= ame, $$vars) } probe kernel.trace("mm_olddata_writeout") { println($$name, = $$vars) } probe kernel.trace("mm_page_alloc") { println($$name, $$vars) } p= robe kernel.trace("mm_page_alloc_extfrag") { println($$name, $$vars) } prob= e kernel.trace("mm_page_alloc_zone_locked") { println($$name, $$vars) } pro= be kernel.trace("mm_page_free_direct") { println($$name, $$vars) } probe ke= rnel.trace("mm_page_pcpu_drain") { println($$name, $$vars) } probe kernel.t= race("mm_pagereclaim_free") { println($$name, $$vars) } probe kernel.trace(= "mm_pagereclaim_pgout") { println($$name, $$vars) } probe kernel.trace("mm_= pagereclaim_shrinkactive") { println($$name, $$vars) } probe kernel.trace("= mm_pagereclaim_shrinkinactive") { println($$name, $$vars) } probe kernel.tr= ace("mm_pagereclaim_shrinkzone") { println($$name, $$vars) } probe kernel.t= race("mm_pagevec_free") { println($$name, $$vars) } probe kernel.trace("mm_= vmscan_direct_reclaim_begin") { println($$name, $$vars) } probe kernel.trac= e("mm_vmscan_direct_reclaim_end") { println($$name, $$vars) } probe kernel.= trace("mm_vmscan_kswapd_sleep") { println($$name, $$vars) } probe kernel.tr= ace("mm_vmscan_kswapd_wake") { println($$name, $$vars) } probe kernel.trace= ("mm_vmscan_lru_isolate") { println($$name, $$vars) } probe kernel.trace("m= m_vmscan_wakeup_kswapd") { println($$name, $$vars) } probe kernel.trace("mm= _vmscan_writepage") { println($$name, $$vars) } probe kernel.trace("module_= free") { println($$name, $$vars) } probe kernel.trace("module_get") { print= ln($$name, $$vars) } probe kernel.trace("module_load") { println($$name, $$= vars) } probe kernel.trace("module_put") { println($$name, $$vars) } probe = kernel.trace("module_request") { println($$name, $$vars) } probe kernel.tra= ce("napi_poll") { println($$name, $$vars) } probe kernel.trace("power_end")= { println($$name, $$vars) } probe kernel.trace("power_frequency") { printl= n($$name, $$vars) } probe kernel.trace("power_start") { println($$name, $$v= ars) } probe kernel.trace("rpc_bind_status") { println($$name, $$vars) } pr= obe kernel.trace("rpc_call_status") { println($$name, $$vars) } probe kerne= l.trace("rpc_connect_status") { println($$name, $$vars) } probe kernel.trac= e("sched_kthread_stop") { println($$name, $$vars) } probe kernel.trace("sch= ed_kthread_stop_ret") { println($$name, $$vars) } probe kernel.trace("sched= _migrate_task") { println($$name, $$vars) } probe kernel.trace("sched_proce= ss_exit") { println($$name, $$vars) } probe kernel.trace("sched_process_for= k") { println($$name, $$vars) } probe kernel.trace("sched_process_free") { = println($$name, $$vars) } probe kernel.trace("sched_process_wait") { printl= n($$name, $$vars) } probe kernel.trace("sched_stat_iowait") { println($$nam= e, $$vars) } probe kernel.trace("sched_stat_runtime") { println($$name, $$v= ars) } probe kernel.trace("sched_stat_sleep") { println($$name, $$vars) } p= robe kernel.trace("sched_stat_wait") { println($$name, $$vars) } probe kern= el.trace("sched_switch") { println($$name, $$vars) } probe kernel.trace("sc= hed_wait_task") { println($$name, $$vars) } probe kernel.trace("sched_wakeu= p") { println($$name, $$vars) } probe kernel.trace("sched_wakeup_new") { pr= intln($$name, $$vars) } probe kernel.trace("scsi_dispatch_cmd_done") { prin= tln($$name, $$vars) } probe kernel.trace("scsi_dispatch_cmd_error") { print= ln($$name, $$vars) } probe kernel.trace("scsi_dispatch_cmd_start") { printl= n($$name, $$vars) } probe kernel.trace("scsi_dispatch_cmd_timeout") { print= ln($$name, $$vars) } probe kernel.trace("scsi_eh_wakeup") { println($$name,= $$vars) } probe kernel.trace("signal_deliver") { println($$name, $$vars) }= probe kernel.trace("signal_generate") { println($$name, $$vars) } probe ke= rnel.trace("signal_lose_info") { println($$name, $$vars) } probe kernel.tra= ce("signal_overflow_fail") { println($$name, $$vars) } probe kernel.trace("= skb_copy_datagram_iovec") { println($$name, $$vars) } probe kernel.trace("s= oftirq_entry") { println($$name, $$vars) } probe kernel.trace("softirq_exit= ") { println($$name, $$vars) } probe kernel.trace("timer_cancel") { println= ($$name, $$vars) } probe kernel.trace("timer_expire_entry") { println($$nam= e, $$vars) } probe kernel.trace("timer_expire_exit") { println($$name, $$va= rs) } probe kernel.trace("timer_init") { println($$name, $$vars) } probe ke= rnel.trace("timer_start") { println($$name, $$vars) } probe kernel.trace("w= bc_balance_dirty_start") { println($$name, $$vars) } probe kernel.trace("wb= c_balance_dirty_wait") { println($$name, $$vars) } probe kernel.trace("wbc_= balance_dirty_written") { println($$name, $$vars) } probe kernel.trace("wbc= _writeback_start") { println($$name, $$vars) } probe kernel.trace("wbc_writ= eback_wait") { println($$name, $$vars) } probe kernel.trace("wbc_writeback_= written") { println($$name, $$vars) } probe kernel.trace("wbc_writepage") {= println($$name, $$vars) } probe kernel.trace("workqueue_creation") { print= ln($$name, $$vars) } probe kernel.trace("workqueue_destruction") { println(= $$name, $$vars) } probe kernel.trace("workqueue_execution") { println($$nam= e, $$vars) } probe kernel.trace("workqueue_insertion") { println($$name, $$= vars) } probe kernel.trace("writeback_bdi_register") { println($$name, $$va= rs) } probe kernel.trace("writeback_bdi_unregister") { println($$name, $$va= rs) } probe kernel.trace("writeback_exec") { println($$name, $$vars) } prob= e kernel.trace("writeback_nothread") { println($$name, $$vars) } probe kern= el.trace("writeback_nowork") { println($$name, $$vars) } probe kernel.trace= ("writeback_pages_written") { println($$name, $$vars) } probe kernel.trace(= "writeback_queue") { println($$name, $$vars) } probe kernel.trace("writebac= k_task_start") { println($$name, $$vars) } probe kernel.trace("writeback_ta= sk_stop") { println($$name, $$vars) } PASS: tracepoints executing: stap /home/prasadkr/systemtap/testsuite/systemtap.base/tracepoin= ts.stp PASS: systemtap.base/tracepoints.stp testcase /home/prasadkr/systemtap/testsuite/systemtap.base/tracepoints.exp = completed in 61 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/tracescripts.exp = ... PASS: tracescripts testcase /home/prasadkr/systemtap/testsuite/systemtap.base/tracescripts.exp= completed in 0 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/tri.exp ... executing: stap -v /home/prasadkr/systemtap/testsuite/systemtap.base/tri.stp spawn stap -v /home/prasadkr/systemtap/testsuite/systemtap.base/tri.stp=0D Pass 1: parsed user script and 75 library script(s) using 38528virt/30656re= s/7872shr kb, in 250usr/0sys/264real ms.=0D Pass 2: analyzed script: 2 probe(s), 0 function(s), 0 embed(s), 6 global(s)= using 39104virt/31360res/8064shr kb, in 10usr/0sys/6real ms.=0D Pass 3: translated to C into "/tmp/staptKLXmk/stap_ec17658ac0ee050e2fec613e= ab21332a_1135.c" using 39104virt/31680res/8384shr kb, in 0usr/0sys/1real ms= .=0D Pass 4: compiled C into "stap_ec17658ac0ee050e2fec613eab21332a_1135.ko" in = 1610usr/200sys/1823real ms.=0D Pass 5: starting run.=0D systemtap starting probe=0D PASS: systemtap.base/tri.stp startup PASS: systemtap.base/tri.stp load generation systemtap ending probe=0D systemtap test success=0D systemtap test success=0D systemtap test success=0D Pass 5: run completed in 0usr/30sys/328real ms.=0D FAIL: systemtap.base/tri.stp shutdown (eof) testcase /home/prasadkr/systemtap/testsuite/systemtap.base/tri.exp complete= d in 3 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/trycatch.exp ... spawn stap /home/prasadkr/systemtap/testsuite/buildok/fortyone.stp=0D ERROR: MAXACTION exceeded near keyword at /home/prasadkr/systemtap/testsuit= e/buildok/fortyone.stp:34:3=0D OK 1=0D OK 2 bar=0D OK 3=0D OK 4=0D OK 5=0D OK 7=0D OK 7a=0D OK 8=0D OK 8a=0D WARNING: Number of errors: 1, skipped probes: 0=0D Pass 5: run failed. Try again with another '--vp 00001' option.=0D PASS: trycatch spawn stap -u /home/prasadkr/systemtap/testsuite/buildok/fortyone.stp=0D ERROR: MAXACTION exceeded near keyword at /home/prasadkr/systemtap/testsuit= e/buildok/fortyone.stp:34:3=0D OK 1=0D OK 2 bar=0D OK 3=0D OK 4=0D OK 5=0D OK 7=0D OK 7a=0D OK 8=0D OK 8a=0D WARNING: Number of errors: 1, skipped probes: 0=0D Pass 5: run failed. Try again with another '--vp 00001' option.=0D PASS: trycatch -u testcase /home/prasadkr/systemtap/testsuite/systemtap.base/trycatch.exp com= pleted in 5 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/unresolved-struct= -typedef.exp ... Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.base/un= resolved-struct-typedef.c -g -O2 -isystem/home/prasadkr/systemtap/testsuit= e -isystem/usr/local/include -fno-eliminate-unused-debug-types -xc /usr/inc= lude/time.h -lm -o unresolved-struct-typedef.exe (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.base/= unresolved-struct-typedef.c -g -O2 -isystem/home/prasadkr/systemtap/testsui= te -isystem/usr/local/include -fno-eliminate-unused-debug-types -xc /usr/in= clude/time.h -lm -o unresolved-struct-typedef.exe=0D PASS: unresolved-struct-typedef.c compile running stap -v -p4 -e { probe process(@1).mark("epoch") { println($epoch->= tm_year) } } unresolved-struct-typedef.exe spawn stap -v -p4 -e probe process(@1).mark("epoch") { println($epoch->tm_= year) } unresolved-struct-typedef.exe=0D Pass 1: parsed user script and 75 library script(s) using 38272virt/30400re= s/7808shr kb, in 270usr/0sys/263real ms.=0D Pass 2: analyzed script: 1 probe(s), 1 function(s), 0 embed(s), 0 global(s)= using 39232virt/31872res/8576shr kb, in 0usr/0sys/7real ms.=0D Pass 3: translated to C into "/tmp/stapJXnpBf/stap_2631d82d7cfbffee2de54d19= 29a44b98_1608.c" using 142720virt/32256res/8832shr kb, in 20usr/120sys/137r= eal ms.=0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/26/stap_2631d82d7c= fbffee2de54d1929a44b98_1608.ko=0D Pass 4: compiled C into "stap_2631d82d7cfbffee2de54d1929a44b98_1608.ko" in = 2560usr/390sys/2973real ms.=0D PASS: unresolved-struct-typedef compilation succeeded testcase /home/prasadkr/systemtap/testsuite/systemtap.base/unresolved-struc= t-typedef.exp completed in 4 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/uprobes.exp ... PASS: uprobes compile starting /home/prasadkr/systemtap/testsuite/systemtap.base/uprobes.stp spawn1 stap -p4 /home/prasadkr/systemtap/testsuite/systemtap.base/uprobes.s= tp spawn stap -p4 /home/prasadkr/systemtap/testsuite/systemtap.base/uprobes.st= p=0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/94/stap_944b725fc8= e3ce1a30ecb1ed19835df7_3997.ko=0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/94/stap_944b725fc8= e3ce1a30ecb1ed19835df7_3997.ko=0D wait results: 23752 exp16 0 0 PASS: uprobes -p4 spawn stap /home/prasadkr/systemtap/testsuite/systemtap.base/uprobes.stp -w= -c ./jennie 1 2 3 4=0D process("/home/prasadkr/systemtap/testsuite/jennie").function("main@/home/p= rasadkr/systemtap/testsuite/systemtap.base/jennie.c:1").call argc=3D0x0 arg= v=3D0x800b8f4510=0D process("/home/prasadkr/systemtap/testsuite/jennie").function("main@/home/p= rasadkr/systemtap/testsuite/systemtap.base/jennie.c:1").call argc=3D0x0 arg= v=3D0x800b9118f8=0D process("/home/prasadkr/systemtap/testsuite/jennie").function("main@/home/p= rasadkr/systemtap/testsuite/systemtap.base/jennie.c:1").call argc=3D0x80 ar= gv=3D0x0=0D process("/home/prasadkr/systemtap/testsuite/jennie").function("main@/home/p= rasadkr/systemtap/testsuite/systemtap.base/jennie.c:1").call argc=3D0x0 arg= v=3D0xfffe543ad30=0D process("/home/prasadkr/systemtap/testsuite/jennie").function("main@/home/p= rasadkr/systemtap/testsuite/systemtap.base/jennie.c:1").call argc=3D0xfff a= rgv=3D0x0=0D process("/home/prasadkr/systemtap/testsuite/jennie").function("main@/home/p= rasadkr/systemtap/testsuite/systemtap.base/jennie.c:1").return return=3D0x0= =0D process("/home/prasadkr/systemtap/testsuite/jennie").function("main@/home/p= rasadkr/systemtap/testsuite/systemtap.base/jennie.c:1").return return=3D0x0= =0D process("/home/prasadkr/systemtap/testsuite/jennie").function("main@/home/p= rasadkr/systemtap/testsuite/systemtap.base/jennie.c:1").return return=3D0x0= =0D process("/home/prasadkr/systemtap/testsuite/jennie").function("main@/home/p= rasadkr/systemtap/testsuite/systemtap.base/jennie.c:1").return return=3D0x0= =0D process("/home/prasadkr/systemtap/testsuite/jennie").function("main@/home/p= rasadkr/systemtap/testsuite/systemtap.base/jennie.c:1").return return=3D0x0= =0D PASS: uprobes -p5 testcase /home/prasadkr/systemtap/testsuite/systemtap.base/uprobes.exp comp= leted in 4 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/utrace_p4.exp ... running stap -v -p4 -e "probe process(\"/bin/ls\").begin { print(\"ls begin= \") }" spawn stap -v -p4 -e probe process("/bin/ls").begin { print("ls begin") }=0D Pass 1: parsed user script and 75 library script(s) using 38272virt/30464re= s/7808shr kb, in 240usr/0sys/245real ms.=0D Pass 2: analyzed script: 1 probe(s), 0 function(s), 0 embed(s), 0 global(s)= using 38848virt/31232res/8064shr kb, in 10usr/0sys/5real ms.=0D Pass 3: translated to C into "/tmp/stapkEjYai/stap_9b57c255064c46b7217e9344= 6c145fe3_675.c" using 142656virt/32000res/8640shr kb, in 20usr/110sys/146re= al ms.=0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/9b/stap_9b57c25506= 4c46b7217e93446c145fe3_675.ko=0D Pass 4: compiled C into "stap_9b57c255064c46b7217e93446c145fe3_675.ko" in 2= 030usr/200sys/2246real ms.=0D PASS: UTRACE_P4_01 compilation succeeded running stap -v -p4 -e "probe process(123).begin { print(\"123 begin\") }" spawn stap -v -p4 -e probe process(123).begin { print("123 begin") }=0D Pass 1: parsed user script and 75 library script(s) using 38272virt/30400re= s/7808shr kb, in 240usr/0sys/245real ms.=0D Pass 2: analyzed script: 1 probe(s), 0 function(s), 0 embed(s), 0 global(s)= using 38848virt/31104res/8000shr kb, in 0usr/0sys/5real ms.=0D Pass 3: translated to C into "/tmp/staph1XwOX/stap_8e2631b4b2a027131e12ea53= b0815726_641.c" using 38848virt/31424res/8320shr kb, in 0usr/0sys/0real ms.= =0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/8e/stap_8e2631b4b2= a027131e12ea53b0815726_641.ko=0D Pass 4: compiled C into "stap_8e2631b4b2a027131e12ea53b0815726_641.ko" in 2= 000usr/200sys/2205real ms.=0D PASS: UTRACE_P4_01_pid compilation succeeded running stap -v -p4 -e "probe process(\"/bin/ls\").end { print(\"ls end\") = }" spawn stap -v -p4 -e probe process("/bin/ls").end { print("ls end") }=0D Pass 1: parsed user script and 75 library script(s) using 38272virt/30400re= s/7808shr kb, in 250usr/0sys/246real ms.=0D Pass 2: analyzed script: 1 probe(s), 0 function(s), 0 embed(s), 0 global(s)= using 38848virt/31168res/8064shr kb, in 0usr/0sys/5real ms.=0D Pass 3: translated to C into "/tmp/stapNhrsLD/stap_07646892d756fba582e8b93f= 79343441_669.c" using 142656virt/31936res/8640shr kb, in 20usr/120sys/146re= al ms.=0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/07/stap_07646892d7= 56fba582e8b93f79343441_669.ko=0D Pass 4: compiled C into "stap_07646892d756fba582e8b93f79343441_669.ko" in 2= 090usr/200sys/2309real ms.=0D PASS: UTRACE_P4_02 compilation succeeded running stap -v -p4 -e "probe process(123).end { print(\"123 end\") }" spawn stap -v -p4 -e probe process(123).end { print("123 end") }=0D Pass 1: parsed user script and 75 library script(s) using 38272virt/30400re= s/7808shr kb, in 240usr/0sys/245real ms.=0D Pass 2: analyzed script: 1 probe(s), 0 function(s), 0 embed(s), 0 global(s)= using 38848virt/31104res/8000shr kb, in 10usr/0sys/5real ms.=0D Pass 3: translated to C into "/tmp/stapIVEEio/stap_7fc7891c8f1e401101dbcbc7= 9a981887_635.c" using 38848virt/31424res/8320shr kb, in 0usr/0sys/0real ms.= =0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/7f/stap_7fc7891c8f= 1e401101dbcbc79a981887_635.ko=0D Pass 4: compiled C into "stap_7fc7891c8f1e401101dbcbc79a981887_635.ko" in 2= 050usr/200sys/2268real ms.=0D PASS: UTRACE_P4_02_pid compilation succeeded running stap -v -p4 -e "probe process(\"/bin/ls\").syscall { printf(\"|%d\"= , \$syscall) }" spawn stap -v -p4 -e probe process("/bin/ls").syscall { printf("|%d", $sysc= all) }=0D Pass 1: parsed user script and 75 library script(s) using 38272virt/30464re= s/7808shr kb, in 250usr/0sys/246real ms.=0D Pass 2: analyzed script: 1 probe(s), 1 function(s), 1 embed(s), 0 global(s)= using 38848virt/31232res/8064shr kb, in 0usr/0sys/5real ms.=0D Pass 3: translated to C into "/tmp/stap8BXoMW/stap_68eb4c9d5c0a4d8872ddaba1= 1f743a58_1060.c" using 142656virt/32000res/8640shr kb, in 20usr/120sys/134r= eal ms.=0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/68/stap_68eb4c9d5c= 0a4d8872ddaba11f743a58_1060.ko=0D Pass 4: compiled C into "stap_68eb4c9d5c0a4d8872ddaba11f743a58_1060.ko" in = 2110usr/200sys/2330real ms.=0D PASS: UTRACE_P4_03 compilation succeeded running stap -v -p4 -e "probe process(123).syscall { printf(\"|%d\", \$sysc= all) }" spawn stap -v -p4 -e probe process(123).syscall { printf("|%d", $syscall) }= =0D Pass 1: parsed user script and 75 library script(s) using 38272virt/30400re= s/7808shr kb, in 240usr/0sys/245real ms.=0D Pass 2: analyzed script: 1 probe(s), 1 function(s), 1 embed(s), 0 global(s)= using 38848virt/31104res/8000shr kb, in 0usr/0sys/5real ms.=0D Pass 3: translated to C into "/tmp/stapq3e6wK/stap_5eb86a71caffed5b7ae2631a= f5ec6ee9_1025.c" using 38848virt/31424res/8320shr kb, in 0usr/0sys/0real ms= .=0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/5e/stap_5eb86a71ca= ffed5b7ae2631af5ec6ee9_1025.ko=0D Pass 4: compiled C into "stap_5eb86a71caffed5b7ae2631af5ec6ee9_1025.ko" in = 2020usr/200sys/2227real ms.=0D PASS: UTRACE_P4_03_pid compilation succeeded running stap -v -p4 -e "probe process(\"/bin/ls\").syscall.return { printf(= \"|%d\", \$syscall) }" spawn stap -v -p4 -e probe process("/bin/ls").syscall.return { printf("|%d"= , $syscall) }=0D Pass 1: parsed user script and 75 library script(s) using 38272virt/30464re= s/7808shr kb, in 270usr/0sys/263real ms.=0D Pass 2: analyzed script: 2 probe(s), 2 function(s), 4 embed(s), 1 global(s)= using 143424virt/32896res/8960shr kb, in 30usr/120sys/208real ms.=0D Pass 3: translated to C into "/tmp/stapiImn1p/stap_7fc3c24b178c8368445c71f6= 61aaee41_2571.c" using 143040virt/32704res/8960shr kb, in 10usr/120sys/138r= eal ms.=0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/7f/stap_7fc3c24b17= 8c8368445c71f661aaee41_2571.ko=0D Pass 4: compiled C into "stap_7fc3c24b178c8368445c71f661aaee41_2571.ko" in = 2260usr/200sys/2472real ms.=0D PASS: UTRACE_P4_04 compilation succeeded running stap -v -p4 -e "probe process(123).syscall.return { printf(\"|%d\",= \$syscall) }" spawn stap -v -p4 -e probe process(123).syscall.return { printf("|%d", $sys= call) }=0D Pass 1: parsed user script and 75 library script(s) using 38272virt/30464re= s/7808shr kb, in 240usr/0sys/246real ms.=0D Pass 2: analyzed script: 2 probe(s), 2 function(s), 4 embed(s), 1 global(s)= using 143424virt/32896res/8960shr kb, in 20usr/120sys/200real ms.=0D Pass 3: translated to C into "/tmp/stap4MgYMD/stap_effecb024122f1c481222c86= 4f9766a3_2524.c" using 143424virt/33024res/9088shr kb, in 0usr/0sys/1real m= s.=0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/ef/stap_effecb0241= 22f1c481222c864f9766a3_2524.ko=0D Pass 4: compiled C into "stap_effecb024122f1c481222c864f9766a3_2524.ko" in = 2160usr/200sys/2373real ms.=0D PASS: UTRACE_P4_04_pid compilation succeeded running stap -v -p4 -e "probe process(\"/bin/ls\").thread.begin { print(\"l= s thread.begin\") }" spawn stap -v -p4 -e probe process("/bin/ls").thread.begin { print("ls thre= ad.begin") }=0D Pass 1: parsed user script and 75 library script(s) using 38272virt/30464re= s/7808shr kb, in 240usr/0sys/246real ms.=0D Pass 2: analyzed script: 1 probe(s), 0 function(s), 0 embed(s), 0 global(s)= using 38848virt/31232res/8064shr kb, in 0usr/0sys/5real ms.=0D Pass 3: translated to C into "/tmp/stapqJJWpy/stap_77e5200a37d8a4b978442c60= 0434f513_696.c" using 142656virt/32000res/8640shr kb, in 30usr/120sys/134re= al ms.=0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/77/stap_77e5200a37= d8a4b978442c600434f513_696.ko=0D Pass 4: compiled C into "stap_77e5200a37d8a4b978442c600434f513_696.ko" in 2= 090usr/200sys/2310real ms.=0D PASS: UTRACE_P4_05 compilation succeeded running stap -v -p4 -e "probe process(123).thread.begin { print(\"123 threa= d.begin\") }" spawn stap -v -p4 -e probe process(123).thread.begin { print("123 thread.be= gin") }=0D Pass 1: parsed user script and 75 library script(s) using 38272virt/30400re= s/7808shr kb, in 240usr/0sys/245real ms.=0D Pass 2: analyzed script: 1 probe(s), 0 function(s), 0 embed(s), 0 global(s)= using 38848virt/31104res/8000shr kb, in 10usr/0sys/5real ms.=0D Pass 3: translated to C into "/tmp/stapgW1Gxm/stap_1682b6cf37aaf63b31e3ea60= 1bb458a5_662.c" using 38848virt/31424res/8320shr kb, in 0usr/0sys/0real ms.= =0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/16/stap_1682b6cf37= aaf63b31e3ea601bb458a5_662.ko=0D Pass 4: compiled C into "stap_1682b6cf37aaf63b31e3ea601bb458a5_662.ko" in 1= 990usr/200sys/2203real ms.=0D PASS: UTRACE_P4_05_pid compilation succeeded running stap -v -p4 -e "probe process(\"/bin/ls\").thread.end { print(\"ls = thread.end\") }" spawn stap -v -p4 -e probe process("/bin/ls").thread.end { print("ls thread= .end") }=0D Pass 1: parsed user script and 75 library script(s) using 38272virt/30464re= s/7808shr kb, in 250usr/0sys/263real ms.=0D Pass 2: analyzed script: 1 probe(s), 0 function(s), 0 embed(s), 0 global(s)= using 38848virt/31232res/8064shr kb, in 10usr/0sys/6real ms.=0D Pass 3: translated to C into "/tmp/stapOQJkQZ/stap_556863c5c59a17c64c26da42= 843f3198_690.c" using 142656virt/32000res/8640shr kb, in 20usr/120sys/141re= al ms.=0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/55/stap_556863c5c5= 9a17c64c26da42843f3198_690.ko=0D Pass 4: compiled C into "stap_556863c5c59a17c64c26da42843f3198_690.ko" in 2= 030usr/200sys/2246real ms.=0D PASS: UTRACE_P4_06 compilation succeeded running stap -v -p4 -e "probe process(123).thread.end { print(\"123 thread.= end\") }" spawn stap -v -p4 -e probe process(123).thread.end { print("123 thread.end"= ) }=0D Pass 1: parsed user script and 75 library script(s) using 38272virt/30464re= s/7808shr kb, in 250usr/0sys/264real ms.=0D Pass 2: analyzed script: 1 probe(s), 0 function(s), 0 embed(s), 0 global(s)= using 38848virt/31168res/8000shr kb, in 10usr/0sys/6real ms.=0D Pass 3: translated to C into "/tmp/stapz6bvEH/stap_13b34a04fc748a208fe31b4e= d1b3d38c_656.c" using 38848virt/31488res/8320shr kb, in 0usr/0sys/0real ms.= =0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/13/stap_13b34a04fc= 748a208fe31b4ed1b3d38c_656.ko=0D Pass 4: compiled C into "stap_13b34a04fc748a208fe31b4ed1b3d38c_656.ko" in 1= 990usr/200sys/2209real ms.=0D PASS: UTRACE_P4_06_pid compilation succeeded running stap -v -p4 -e "probe process.begin { print(\"begin\") }" spawn stap -v -p4 -e probe process.begin { print("begin") }=0D Pass 1: parsed user script and 75 library script(s) using 38272virt/30464re= s/7808shr kb, in 270usr/0sys/263real ms.=0D Pass 2: analyzed script: 1 probe(s), 0 function(s), 0 embed(s), 0 global(s)= using 38848virt/31168res/8000shr kb, in 0usr/0sys/5real ms.=0D Pass 3: translated to C into "/tmp/stap9oIXTf/stap_995dba00c2e4fa9efb70e05a= 51923616_627.c" using 38848virt/31488res/8320shr kb, in 0usr/0sys/0real ms.= =0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/99/stap_995dba00c2= e4fa9efb70e05a51923616_627.ko=0D Pass 4: compiled C into "stap_995dba00c2e4fa9efb70e05a51923616_627.ko" in 2= 060usr/200sys/2272real ms.=0D PASS: UTRACE_P4_07 compilation succeeded running stap -v -p4 -e "probe process(\"/bin/ls\").syscall { printf(\"|%s\"= , \$\$parms) }" spawn stap -v -p4 -e probe process("/bin/ls").syscall { printf("|%s", $$par= ms) }=0D Pass 1: parsed user script and 75 library script(s) using 38272virt/30464re= s/7808shr kb, in 260usr/0sys/264real ms.=0D Pass 2: analyzed script: 1 probe(s), 1 function(s), 1 embed(s), 0 global(s)= using 38848virt/31232res/8064shr kb, in 10usr/0sys/6real ms.=0D Pass 3: translated to C into "/tmp/staphp6oOY/stap_e948f744a2d6c4f065248b71= d5ce53fd_1326.c" using 142656virt/32000res/8640shr kb, in 20usr/120sys/141r= eal ms.=0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/e9/stap_e948f744a2= d6c4f065248b71d5ce53fd_1326.ko=0D Pass 4: compiled C into "stap_e948f744a2d6c4f065248b71d5ce53fd_1326.ko" in = 2140usr/200sys/2356real ms.=0D PASS: UTRACE_P4_08 compilation succeeded running stap -v -p4 -e "probe process(123).syscall { printf(\"|%s\", \$\$pa= rms) }" spawn stap -v -p4 -e probe process(123).syscall { printf("|%s", $$parms) }= =0D Pass 1: parsed user script and 75 library script(s) using 38272virt/30464re= s/7808shr kb, in 260usr/0sys/264real ms.=0D Pass 2: analyzed script: 1 probe(s), 1 function(s), 1 embed(s), 0 global(s)= using 38848virt/31168res/8000shr kb, in 0usr/0sys/6real ms.=0D Pass 3: translated to C into "/tmp/stapAFKSiQ/stap_1d6cc2d0d1efc1af4499249f= f766dd74_1291.c" using 38848virt/31552res/8320shr kb, in 10usr/0sys/0real m= s.=0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/1d/stap_1d6cc2d0d1= efc1af4499249ff766dd74_1291.ko=0D Pass 4: compiled C into "stap_1d6cc2d0d1efc1af4499249ff766dd74_1291.ko" in = 2110usr/200sys/2323real ms.=0D PASS: UTRACE_P4_09 compilation succeeded testcase /home/prasadkr/systemtap/testsuite/systemtap.base/utrace_p4.exp co= mpleted in 41 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/utrace_p5.exp ... Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.base/ut= race_p5_multi.c -lpthread -lm -o /home/prasadkr/systemtap/testsuite/utr= ace_p5_multi_4833 (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.base/= utrace_p5_multi.c -lpthread -lm -o /home/prasadkr/systemtap/testsuite/utrac= e_p5_multi_4833=0D executing: stap -v -e { global end_probes_fired =3D 0 probe begin { printf("systemtap starting probe\n") } probe process("/home/prasadkr/systemtap/testsuite/cat_4833").end { end_= probes_fired++ } probe end { printf("systemtap ending probe\n") printf("end probes =3D %d\n", end_probes_fired) } } spawn stap -v -e=20 global end_probes_fired =3D 0 probe begin { printf("systemtap starting probe\n") } probe process("/home/prasadkr/systemtap/testsuite/cat_4833").end { end_= probes_fired++ } probe end { printf("systemtap ending probe\n") printf("end probes =3D %d\n", end_probes_fired) } =0D Pass 1: parsed user script and 75 library script(s) using 38528virt/30592re= s/7872shr kb, in 260usr/0sys/263real ms.=0D Pass 2: analyzed script: 3 probe(s), 0 function(s), 0 embed(s), 1 global(s)= using 39104virt/31360res/8128shr kb, in 10usr/0sys/6real ms.=0D Pass 3: translated to C into "/tmp/stap9VA15A/stap_a9d046216593349ba1574d30= 8c540328_981.c" using 142720virt/32000res/8576shr kb, in 20usr/120sys/144re= al ms.=0D Pass 4: compiled C into "stap_a9d046216593349ba1574d308c540328_981.ko" in 2= 120usr/200sys/2334real ms.=0D Pass 5: starting run.=0D systemtap starting probe=0D PASS: UTRACE_P5_01 startup spawn /home/prasadkr/systemtap/testsuite/cat_4833=0D PASS: UTRACE_P5_01 load generation systemtap ending probe=0D end probes =3D 1=0D Pass 5: run completed in 0usr/30sys/5332real ms.=0D PASS: UTRACE_P5_01 shutdown and output metric: UTRACE_P5_01 260 0 263 10 0 6 20 120 144 2120 200 2334 0 30 5332 executing: stap -v -e { global begin_probes_fired =3D 0 probe begin { printf("systemtap starting probe\n") } probe process("/home/prasadkr/systemtap/testsuite/cat_4833").begin { be= gin_probes_fired++ } probe end { printf("systemtap ending probe\n") printf("begin probes =3D %d\n", begin_probes_fired) } } spawn stap -v -e=20 global begin_probes_fired =3D 0 probe begin { printf("systemtap starting probe\n") } probe process("/home/prasadkr/systemtap/testsuite/cat_4833").begin { be= gin_probes_fired++ } probe end { printf("systemtap ending probe\n") printf("begin probes =3D %d\n", begin_probes_fired) } =0D Pass 1: parsed user script and 75 library script(s) using 38528virt/30592re= s/7872shr kb, in 250usr/0sys/263real ms.=0D Pass 2: analyzed script: 3 probe(s), 0 function(s), 0 embed(s), 1 global(s)= using 39104virt/31360res/8128shr kb, in 10usr/0sys/6real ms.=0D Pass 3: translated to C into "/tmp/stapJVpziP/stap_a51aec04e19ebc18414ecfbb= f913c150_993.c" using 142720virt/32000res/8576shr kb, in 20usr/120sys/139re= al ms.=0D Pass 4: compiled C into "stap_a51aec04e19ebc18414ecfbbf913c150_993.ko" in 2= 110usr/200sys/2327real ms.=0D Pass 5: starting run.=0D systemtap starting probe=0D PASS: UTRACE_P5_02 startup spawn /home/prasadkr/systemtap/testsuite/cat_4833=0D PASS: UTRACE_P5_02 load generation systemtap ending probe=0D begin probes =3D 1=0D Pass 5: run completed in 10usr/30sys/5327real ms.=0D PASS: UTRACE_P5_02 shutdown and output metric: UTRACE_P5_02 250 0 263 10 0 6 20 120 139 2110 200 2327 10 30 5327 executing: stap -v -e { global syscall_probes_fired =3D 0 probe begin { printf("systemtap starting probe\n") } probe process("/home/prasadkr/systemtap/testsuite/cat_4833").syscall { = syscall_probes_fired++ } probe end { printf("systemtap ending probe\n") if (syscall_probes_fired > 0) { printf("syscalls =3D %d\n", syscall_probes_fired) } } } spawn stap -v -e=20 global syscall_probes_fired =3D 0 probe begin { printf("systemtap starting probe\n") } probe process("/home/prasadkr/systemtap/testsuite/cat_4833").syscall { = syscall_probes_fired++ } probe end { printf("systemtap ending probe\n") if (syscall_probes_fired > 0) { printf("syscalls =3D %d\n", syscall_probes_fired) } } =0D Pass 1: parsed user script and 75 library script(s) using 38592virt/30720re= s/7872shr kb, in 250usr/0sys/247real ms.=0D Pass 2: analyzed script: 3 probe(s), 0 function(s), 0 embed(s), 1 global(s)= using 38976virt/31424res/8128shr kb, in 10usr/0sys/5real ms.=0D Pass 3: translated to C into "/tmp/stapmDF4D6/stap_392d9a1af1b7047e64c78c21= 6be67593_1034.c" using 142720virt/32064res/8576shr kb, in 20usr/110sys/130r= eal ms.=0D Pass 4: compiled C into "stap_392d9a1af1b7047e64c78c216be67593_1034.ko" in = 2120usr/210sys/2340real ms.=0D Pass 5: starting run.=0D systemtap starting probe=0D PASS: UTRACE_P5_03 startup spawn /home/prasadkr/systemtap/testsuite/cat_4833=0D PASS: UTRACE_P5_03 load generation systemtap ending probe=0D syscalls =3D 57=0D Pass 5: run completed in 10usr/30sys/5334real ms.=0D PASS: UTRACE_P5_03 shutdown and output metric: UTRACE_P5_03 250 0 247 10 0 5 20 110 130 2120 210 2340 10 30 5334 executing: stap -v -e { global syscall_return_probes_fired =3D 0 probe begin { printf("systemtap starting probe\n") } probe process("/home/prasadkr/systemtap/testsuite/cat_4833").syscall.re= turn { syscall_return_probes_fired++ } probe end { printf("systemtap ending probe\n") if (syscall_return_probes_fired > 0) { printf("syscall_returns =3D %d\n", syscall_return_probes_fired) } } } spawn stap -v -e=20 global syscall_return_probes_fired =3D 0 probe begin { printf("systemtap starting probe\n") } probe process("/home/prasadkr/systemtap/testsuite/cat_4833").syscall.re= turn { syscall_return_probes_fired++ } probe end { printf("systemtap ending probe\n") if (syscall_return_probes_fired > 0) { printf("syscall_returns =3D %d\n", syscall_return_probes_fired) } } =0D Pass 1: parsed user script and 75 library script(s) using 38592virt/30656re= s/7872shr kb, in 250usr/0sys/263real ms.=0D Pass 2: analyzed script: 3 probe(s), 0 function(s), 0 embed(s), 1 global(s)= using 38976virt/31360res/8128shr kb, in 0usr/0sys/6real ms.=0D Pass 3: translated to C into "/tmp/stapci6x3k/stap_e8c2b216948e01f5d2748c46= eadcdadd_1083.c" using 142720virt/32000res/8576shr kb, in 20usr/120sys/137r= eal ms.=0D Pass 4: compiled C into "stap_e8c2b216948e01f5d2748c46eadcdadd_1083.ko" in = 2200usr/200sys/2416real ms.=0D Pass 5: starting run.=0D systemtap starting probe=0D PASS: UTRACE_P5_04 startup spawn /home/prasadkr/systemtap/testsuite/cat_4833=0D PASS: UTRACE_P5_04 load generation systemtap ending probe=0D syscall_returns =3D 57=0D Pass 5: run completed in 0usr/30sys/5340real ms.=0D PASS: UTRACE_P5_04 shutdown and output metric: UTRACE_P5_04 250 0 263 0 0 6 20 120 137 2200 200 2416 0 30 5340 executing: stap -v -e { global thread_begin_probes_fired =3D 0 probe begin { printf("systemtap starting probe\n") } probe process("/home/prasadkr/systemtap/testsuite/utrace_p5_multi_4833"= ).thread.begin { thread_begin_probes_fired++ } probe end { printf("systemtap ending probe\n") if (thread_begin_probes_fired > 0) { printf("thread_begins =3D %d\n", thread_begin_probes_fired) } } } spawn stap -v -e=20 global thread_begin_probes_fired =3D 0 probe begin { printf("systemtap starting probe\n") } probe process("/home/prasadkr/systemtap/testsuite/utrace_p5_multi_4833"= ).thread.begin { thread_begin_probes_fired++ } probe end { printf("systemtap ending probe\n") if (thread_begin_probes_fired > 0) { printf("thread_begins =3D %d\n", thread_begin_probes_fired) } } =0D Pass 1: parsed user script and 75 library script(s) using 38592virt/30656re= s/7872shr kb, in 250usr/0sys/263real ms.=0D Pass 2: analyzed script: 3 probe(s), 0 function(s), 0 embed(s), 1 global(s)= using 38976virt/31360res/8128shr kb, in 10usr/0sys/6real ms.=0D Pass 3: translated to C into "/tmp/staplluP2x/stap_c94d62122fbcd76caa7c4a54= f336d39b_1105.c" using 142720virt/32000res/8576shr kb, in 20usr/120sys/145r= eal ms.=0D Pass 4: compiled C into "stap_c94d62122fbcd76caa7c4a54f336d39b_1105.ko" in = 2120usr/200sys/2337real ms.=0D Pass 5: starting run.=0D systemtap starting probe=0D PASS: UTRACE_P5_05 startup PASS: UTRACE_P5_05 load generation systemtap ending probe=0D thread_begins =3D 2=0D Pass 5: run completed in 10usr/30sys/330real ms.=0D PASS: UTRACE_P5_05 shutdown and output metric: UTRACE_P5_05 250 0 263 10 0 6 20 120 145 2120 200 2337 10 30 330 executing: stap -v -e { global thread_end_probes_fired =3D 0 probe begin { printf("systemtap starting probe\n") } probe process("/home/prasadkr/systemtap/testsuite/utrace_p5_multi_4833"= ).thread.end { thread_end_probes_fired++ } probe end { printf("systemtap ending probe\n") if (thread_end_probes_fired > 0) { printf("thread_ends =3D %d\n", thread_end_probes_fired) } } } spawn stap -v -e=20 global thread_end_probes_fired =3D 0 probe begin { printf("systemtap starting probe\n") } probe process("/home/prasadkr/systemtap/testsuite/utrace_p5_multi_4833"= ).thread.end { thread_end_probes_fired++ } probe end { printf("systemtap ending probe\n") if (thread_end_probes_fired > 0) { printf("thread_ends =3D %d\n", thread_end_probes_fired) } } =0D Pass 1: parsed user script and 75 library script(s) using 38592virt/30720re= s/7872shr kb, in 250usr/0sys/245real ms.=0D Pass 2: analyzed script: 3 probe(s), 0 function(s), 0 embed(s), 1 global(s)= using 38976virt/31424res/8128shr kb, in 10usr/0sys/5real ms.=0D Pass 3: translated to C into "/tmp/stapDLaiWJ/stap_10413f102e551fcb6d267e11= 29775deb_1091.c" using 142720virt/32064res/8576shr kb, in 20usr/110sys/130r= eal ms.=0D Pass 4: compiled C into "stap_10413f102e551fcb6d267e1129775deb_1091.ko" in = 2190usr/210sys/2410real ms.=0D Pass 5: starting run.=0D systemtap starting probe=0D PASS: UTRACE_P5_06 startup PASS: UTRACE_P5_06 load generation systemtap ending probe=0D thread_ends =3D 1=0D Pass 5: run completed in 0usr/30sys/335real ms.=0D PASS: UTRACE_P5_06 shutdown and output metric: UTRACE_P5_06 250 0 245 10 0 5 20 110 130 2190 210 2410 0 30 335 executing: stap -v -e { global proc,name probe begin { printf("systemtap starting probe\n") } probe process.syscall { proc[pid()] <<< 1 name[pid()] =3D execname() } probe end { printf("systemtap ending probe\n") foreach(p+ in proc) { printf("%s(%d) issues syscall %d times\n", name[p], p, @sum(proc[p])) } } } spawn stap -v -e=20 global proc,name probe begin { printf("systemtap starting probe\n") } probe process.syscall { proc[pid()] <<< 1 name[pid()] =3D execname() } probe end { printf("systemtap ending probe\n") foreach(p+ in proc) { printf("%s(%d) issues syscall %d times\n", name[p], p, @sum(proc[p])) } } =0D Pass 1: parsed user script and 75 library script(s) using 38528virt/30784re= s/7872shr kb, in 250usr/0sys/245real ms.=0D Pass 2: analyzed script: 3 probe(s), 2 function(s), 3 embed(s), 2 global(s)= using 143616virt/33152res/9024shr kb, in 30usr/120sys/200real ms.=0D Pass 3: translated to C into "/tmp/stapP3hKV2/stap_bcaa582bc6e368994bdc1450= 0c7b6049_2120.c" using 143616virt/33280res/9152shr kb, in 0usr/0sys/1real m= s.=0D Pass 4: compiled C into "stap_bcaa582bc6e368994bdc14500c7b6049_2120.ko" in = 2560usr/200sys/2767real ms.=0D Pass 5: starting run.=0D systemtap starting probe=0D PASS: UTRACE_P5_07 startup PASS: UTRACE_P5_07 load generation systemtap ending probe=0D rs:main Q:Reg(1051) issues syscall 4 times=0D expect(4833) issues syscall 50 times=0D stap(28918) issues syscall 3 times=0D stapio(29136) issues syscall 14 times=0D utrace_p5_multi(29139) issues syscall 114 times=0D kill(29142) issues syscall 83 times=0D Pass 5: run completed in 10usr/20sys/333real ms.=0D PASS: UTRACE_P5_07 shutdown and output metric: UTRACE_P5_07 250 0 245 30 120 200 0 0 1 2560 200 2767 10 20 333 executing: stap -v -e { global syscall_parms_string probe begin { printf("systemtap starting probe\n") } probe process.syscall { syscall_parms_string =3D $$parms exit() } probe end { printf("systemtap ending probe\n") printf("%s\n",syscall_parms_string) delete syscall_parms_string } } spawn stap -v -e=20 global syscall_parms_string probe begin { printf("systemtap starting probe\n") } probe process.syscall { syscall_parms_string =3D $$parms exit() } probe end { printf("systemtap ending probe\n") printf("%s\n",syscall_parms_string) delete syscall_parms_string } =0D Pass 1: parsed user script and 75 library script(s) using 38592virt/30592re= s/7872shr kb, in 250usr/0sys/263real ms.=0D Pass 2: analyzed script: 3 probe(s), 2 function(s), 1 embed(s), 1 global(s)= using 38976virt/31296res/8064shr kb, in 10usr/0sys/6real ms.=0D Pass 3: translated to C into "/tmp/stapPfITlC/stap_45c7fa672607ca1c7e98425c= 586ec926_1639.c" using 39104virt/31680res/8384shr kb, in 0usr/0sys/1real ms= .=0D Pass 4: compiled C into "stap_45c7fa672607ca1c7e98425c586ec926_1639.ko" in = 2120usr/200sys/2333real ms.=0D Pass 5: starting run.=0D systemtap starting probe=0D PASS: UTRACE_P5_08 startup PASS: UTRACE_P5_08 load generation systemtap ending probe=0D $arg1=3D0x4 $arg2=3D0x4 $arg3=3D0x10802 $arg4=3D0x0 $arg5=3D0xfff8141f2d0 $= arg6=3D0xfffff0002001612c=0D Pass 5: run completed in 0usr/30sys/337real ms.=0D PASS: UTRACE_P5_08 shutdown and output metric: UTRACE_P5_08 250 0 263 10 0 6 0 0 1 2120 200 2333 0 30 337 testcase /home/prasadkr/systemtap/testsuite/systemtap.base/utrace_p5.exp co= mpleted in 46 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/utrace_syscall_ar= gs.exp ... Testing 64_BIT_UTRACE_SYSCALL_ARGS Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.base/ut= race_syscall_args.c -m64 -lm -o /home/prasadkr/systemtap/testsuite/utra= ce_syscall_args (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.base/= utrace_syscall_args.c -m64 -lm -o /home/prasadkr/systemtap/testsuite/utrace= _syscall_args=0D executing: stap -v -g /home/prasadkr/systemtap/testsuite/systemtap.base/utr= ace_syscall_args.stp -c /home/prasadkr/systemtap/testsuite/utrace_syscall_a= rgs spawn stap -v -g /home/prasadkr/systemtap/testsuite/systemtap.base/utrace_s= yscall_args.stp -c /home/prasadkr/systemtap/testsuite/utrace_syscall_args=0D Pass 1: parsed user script and 75 library script(s) using 38784virt/30976re= s/7872shr kb, in 270usr/0sys/267real ms.=0D Pass 2: analyzed script: 7 probe(s), 13 function(s), 24 embed(s), 13 global= (s) using 164544virt/54208res/9024shr kb, in 510usr/130sys/704real ms.=0D Pass 3: translated to C into "/tmp/stapYKnD4L/stap_c7630e0a850203fc176d480c= bb724e84_26987.c" using 164032virt/58368res/13440shr kb, in 1230usr/10sys/1= 248real ms.=0D Pass 4: compiled C into "stap_c7630e0a850203fc176d480cbb724e84_26987.ko" in= 3890usr/210sys/4125real ms.=0D Pass 5: starting run.=0D systemtap starting probe=0D systemtap ending probe=0D mmap(90)(0x0, 0x406, 0x1, 0x1, 0x4, 0x0) =3D 0xfffa6fd0000=0D munmap(91)(0xfffa6fd0000, 0x406) =3D 0x0=0D close(6)(0x4) =3D 0x0=0D dup(41)(0xffffffffffffcfc7, 0xffffffffffffffff, 0xa5a5a5a5a5a5a5a5, 0xf0f0f= 0f0f0f0f0f0, 0x5a5a5a5a5a5a5a5a, 0xe38e38e38e38e38e) =3D 0x9=0D bad_syscall(-1)(0x1c71c71c71c71c71, 0xf0f0f0f0f0f0f0f, 0xdb6db6db6db6db6d, = 0x2492492492492492, 0xad6b5ad6b5ad6b5a, 0xdef7ddef7ddef7dd) =3D 0x26=0D systemtap test success=0D Pass 5: run completed in 0usr/20sys/108real ms.=0D PASS: 64_BIT_UTRACE_SYSCALL_ARGS startup PASS: 64_BIT_UTRACE_SYSCALL_ARGS load generation PASS: 64_BIT_UTRACE_SYSCALL_ARGS shutdown and output metric: 64_BIT_UTRACE_SYSCALL_ARGS 270 0 267 510 130 704 1230 10 1248 3890= 210 4125 0 20 108 Testing 32_BIT_UTRACE_SYSCALL_ARGS Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.base/ut= race_syscall_args.c -m32 -lm -o /home/prasadkr/systemtap/testsuite/utra= ce_syscall_args (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.base/= utrace_syscall_args.c -m32 -lm -o /home/prasadkr/systemtap/testsuite/utrace= _syscall_args=0D executing: stap -v -g /home/prasadkr/systemtap/testsuite/systemtap.base/utr= ace_syscall_args.stp -c /home/prasadkr/systemtap/testsuite/utrace_syscall_a= rgs spawn stap -v -g /home/prasadkr/systemtap/testsuite/systemtap.base/utrace_s= yscall_args.stp -c /home/prasadkr/systemtap/testsuite/utrace_syscall_args=0D Pass 1: parsed user script and 75 library script(s) using 38784virt/30912re= s/7872shr kb, in 250usr/0sys/250real ms.=0D Pass 2: analyzed script: 7 probe(s), 13 function(s), 24 embed(s), 13 global= (s) using 164544virt/54144res/9024shr kb, in 490usr/120sys/680real ms.=0D Pass 3: translated to C into "/tmp/stapwMQUkv/stap_3b586556b5397d8d7f74f13c= fde60fc5_26987.c" using 164032virt/58304res/13440shr kb, in 1110usr/20sys/1= 149real ms.=0D Pass 4: compiled C into "stap_3b586556b5397d8d7f74f13cfde60fc5_26987.ko" in= 3880usr/210sys/4116real ms.=0D Pass 5: starting run.=0D systemtap starting probe=0D systemtap ending probe=0D mmap(90)(0x0, 0x406, 0x1, 0x1, 0x4, 0x0) =3D 0xf78a0000=0D munmap(91)(0xf78a0000, 0x406) =3D 0x0=0D close(6)(0x4) =3D 0x0=0D dup(41)(0xffffcfc7, 0xffffffff, 0xa5a5a5a5, 0xf0f0f0f0, 0x5a5a5a5a, 0xe38e3= 8e3) =3D 0x9=0D bad_syscall(-1)(0x1c71c71c, 0xf0f0f0f, 0xdb6db6db, 0x24924924, 0xad6b5ad6, = 0xdef7ddef) =3D 0x26=0D systemtap test success=0D Pass 5: run completed in 10usr/40sys/200real ms.=0D PASS: 32_BIT_UTRACE_SYSCALL_ARGS startup PASS: 32_BIT_UTRACE_SYSCALL_ARGS load generation PASS: 32_BIT_UTRACE_SYSCALL_ARGS shutdown and output metric: 32_BIT_UTRACE_SYSCALL_ARGS 250 0 250 490 120 680 1110 20 1149 3880= 210 4116 10 40 200 testcase /home/prasadkr/systemtap/testsuite/systemtap.base/utrace_syscall_a= rgs.exp completed in 13 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/vars.exp ... PASS: vars PASS: vars parms/locals testcase /home/prasadkr/systemtap/testsuite/systemtap.base/vars.exp complet= ed in 5 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/vta-test.exp ... Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.base/vt= a-test.c -g -O2 -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/lo= cal/include -lm -o vta-test-default.exe (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.base/= vta-test.c -g -O2 -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/l= ocal/include -lm -o vta-test-default.exe=0D PASS: vta-test.c compile -default executing: stap /home/prasadkr/systemtap/testsuite/systemtap.base/vta-test.= stp ./vta-test-default.exe -c ./vta-test-default.exe PASS: vta-test-default Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.base/vt= a-test.c -g -O2 -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/lo= cal/include -m32 -lm -o vta-test-m32.exe (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.base/= vta-test.c -g -O2 -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/l= ocal/include -m32 -lm -o vta-test-m32.exe=0D PASS: vta-test.c compile -m32 executing: stap /home/prasadkr/systemtap/testsuite/systemtap.base/vta-test.= stp ./vta-test-m32.exe -c ./vta-test-m32.exe PASS: vta-test-m32 testcase /home/prasadkr/systemtap/testsuite/systemtap.base/vta-test.exp com= pleted in 8 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/warnings.exp ... spawn stap -p4 /home/prasadkr/systemtap/testsuite/systemtap.base/warnings.s= tp=0D semantic error: multiple addresses for fs/bio.c:256 (try fs/bio.c:254 or fs= /bio.c:257)=0D semantic error: no match while resolving probe point kernel.statement("bio_= init@fs/bio.c+1")=0D semantic error: no match while resolving probe point probea=0D Pass 2: analysis failed. Try again with another '--vp 01' option.=0D FAIL: warnings (0) testcase /home/prasadkr/systemtap/testsuite/systemtap.base/warnings.exp com= pleted in 0 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/warnings2.exp ... spawn stap -e probe begin {warn ("1") warn ("2") warn ("1") exit ()}=0D WARNING: 1=0D WARNING: 2=0D PASS: warnings2 default spawn stap -w -e probe begin {warn ("1") warn ("2") warn ("1") exit ()}=0D PASS: warnings2 -w spawn stap -vv -e probe begin {warn ("1") warn ("2") warn ("1") exit ()}=0D Created temporary directory "/tmp/stapPxeeqQ"=0D SystemTap translator/driver (version 1.5/0.148 commit release-1.4-37-g55b37= 7f + changes)=0D Copyright (C) 2005-2011 Red Hat, Inc. and others=0D This is free software; see the source for copying conditions.=0D enabled features: LIBRPM LIBSQLITE3 TR1_UNORDERED_MAP=0D Session arch: powerpc release: 2.6.32-71.el6.ppc64=0D Searched "/usr/local/share/systemtap/tapset/powerpc/*.stp", found 3 process= ed 3=0D Searched "/usr/local/share/systemtap/tapset/*.stp", found 72 processed 72=0D Pass 1: parsed user script and 75 library script(s) using 38464virt/30720re= s/7936shr kb, in 240usr/0sys/245real ms.=0D Pass 2: analyzed script: 1 probe(s), 2 function(s), 0 embed(s), 0 global(s)= using 39040virt/31424res/8128shr kb, in 10usr/0sys/5real ms.=0D Pass 3: using cached /home/prasadkr/systemtap/testsuite/.systemtap-root/cac= he/c0/stap_c09de340f68524b6958f85cfaf0f8450_848.c=0D Pass 4: using cached /home/prasadkr/systemtap/testsuite/.systemtap-root/cac= he/c0/stap_c09de340f68524b6958f85cfaf0f8450_848.ko=0D Pass 5: starting run.=0D Running /usr/local/bin/staprun -v /tmp/stapPxeeqQ/stap_c09de340f68524b6958f= 85cfaf0f8450_848.ko=0D WARNING: 1=0D WARNING: 2=0D WARNING: 1=0D stapio:cleanup_and_exit:404 detach=3D0=0D stapio:cleanup_and_exit:421 closing control channel=0D staprun:remove_module:213 Module stap_c09de340f68524b6958f85cfaf0f8450_848 = removed.=0D Pass 5: run completed in 0usr/20sys/336real ms.=0D Running rm -rf /tmp/stapPxeeqQ=0D PASS: warnings2 -v testcase /home/prasadkr/systemtap/testsuite/systemtap.base/warnings2.exp co= mpleted in 4 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.base/x86_gs.exp ... UNTESTED: x86_gs testcase /home/prasadkr/systemtap/testsuite/systemtap.base/x86_gs.exp compl= eted in 0 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.clone/dtrace_clone.exp= ... exec make -C staptestIVYhsD CFLAGS=3D"-isystem/usr/local/include -DNO_SEMAP= HORES" make[3]: Entering directory `/home/prasadkr/systemtap/testsuite/staptestIVY= hsD' dtrace -C -h -s dtrace_clone_probes.d -o dtrace_clone_probes.h cc -isystem/usr/local/include -DNO_SEMAPHORES -c -o dtrace_clone.o dtrace= _clone.c dtrace -C -G -s dtrace_clone_probes.d -o dtrace_clone_probes.o cc dtrace_clone.o dtrace_clone_probes.o -o dtrace_clone make[3]: Leaving directory `/home/prasadkr/systemtap/testsuite/staptestIVYh= sD' PASS: dtrace_clone1 - build success executing: stap -v /home/prasadkr/systemtap/testsuite/systemtap.clone/dtrac= e_clone.stp staptestIVYhsD/dtrace_clone spawn stap -v /home/prasadkr/systemtap/testsuite/systemtap.clone/dtrace_clo= ne.stp staptestIVYhsD/dtrace_clone=0D Pass 1: parsed user script and 75 library script(s) using 38528virt/30656re= s/7872shr kb, in 270usr/0sys/264real ms.=0D Pass 2: analyzed script: 8 probe(s), 2 function(s), 1 embed(s), 1 global(s)= using 39552virt/32256res/8512shr kb, in 10usr/0sys/9real ms.=0D Pass 3: translated to C into "/tmp/stapw8EGPE/stap_c57c46a841bd0279a768ddef= b5a372d4_4365.c" using 143104virt/32704res/8832shr kb, in 10usr/120sys/139r= eal ms.=0D Pass 4: compiled C into "stap_c57c46a841bd0279a768ddefb5a372d4_4365.ko" in = 2790usr/390sys/3201real ms.=0D Pass 5: starting run.=0D systemtap starting probe=0D PASS: dtrace_clone2 startup as_root staptestIVYhsD/dtrace_clone OUT=20 RC 0 PASS: dtrace_clone2 load generation systemtap ending probe=0D main - pid: 31546=0D main - child pid: 31547=0D child1 - pid: 1=0D child1 - child2 pid: 2=0D child2 - pid: 1=0D main - finished=0D Pass 5: run completed in 10usr/60sys/630real ms.=0D PASS: dtrace_clone2 shutdown and output metric: dtrace_clone2 270 0 264 10 0 9 10 120 139 2790 390 3201 10 60 630 exec make -C staptestIVYhsD clean make[3]: Entering directory `/home/prasadkr/systemtap/testsuite/staptestIVY= hsD' rm -f dtrace_clone.o dtrace_clone_probes.o dtrace_clone dtrace_clone_probes= .h make[3]: Leaving directory `/home/prasadkr/systemtap/testsuite/staptestIVYh= sD' exec make -C staptestIVYhsD CFLAGS=3D"-isystem/usr/local/include" make[3]: Entering directory `/home/prasadkr/systemtap/testsuite/staptestIVY= hsD' dtrace -C -h -s dtrace_clone_probes.d -o dtrace_clone_probes.h cc -isystem/usr/local/include -c -o dtrace_clone.o dtrace_clone.c dtrace -C -G -s dtrace_clone_probes.d -o dtrace_clone_probes.o cc dtrace_clone.o dtrace_clone_probes.o -o dtrace_clone make[3]: Leaving directory `/home/prasadkr/systemtap/testsuite/staptestIVYh= sD' PASS: dtrace_clone3 - build success executing: stap -v /home/prasadkr/systemtap/testsuite/systemtap.clone/dtrac= e_clone.stp staptestIVYhsD/dtrace_clone spawn stap -v /home/prasadkr/systemtap/testsuite/systemtap.clone/dtrace_clo= ne.stp staptestIVYhsD/dtrace_clone=0D Pass 1: parsed user script and 75 library script(s) using 38528virt/30720re= s/7872shr kb, in 250usr/0sys/263real ms.=0D Pass 2: analyzed script: 8 probe(s), 2 function(s), 1 embed(s), 1 global(s)= using 39552virt/32256res/8512shr kb, in 10usr/0sys/9real ms.=0D Pass 3: translated to C into "/tmp/stapD8Oau5/stap_ea1d6b49ddc22d662d763c6d= f3362df5_4365.c" using 143104virt/32704res/8832shr kb, in 20usr/120sys/138r= eal ms.=0D Pass 4: compiled C into "stap_ea1d6b49ddc22d662d763c6df3362df5_4365.ko" in = 2710usr/390sys/3123real ms.=0D Pass 5: starting run.=0D systemtap starting probe=0D PASS: dtrace_clone4 startup as_root staptestIVYhsD/dtrace_clone OUT=20 RC 0 PASS: dtrace_clone4 load generation systemtap ending probe=0D main - pid: 32025=0D main - child pid: 32026=0D child1 - pid: 1=0D child1 - child2 pid: 2=0D child2 - pid: 1=0D main - finished=0D Pass 5: run completed in 10usr/70sys/628real ms.=0D PASS: dtrace_clone4 shutdown and output metric: dtrace_clone4 250 0 263 10 0 9 20 120 138 2710 390 3123 10 70 628 testcase /home/prasadkr/systemtap/testsuite/systemtap.clone/dtrace_clone.ex= p completed in 9 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.clone/dtrace_fork_exec= .exp ... exec make -C staptestdSJq06 CFLAGS=3D"-isystem/usr/local/include" make[3]: Entering directory `/home/prasadkr/systemtap/testsuite/staptestdSJ= q06' dtrace -C -h -s dtrace_fork_parent_probes.d -o dtrace_fork_parent_probes.h cc -isystem/usr/local/include -c -o dtrace_fork_parent.o dtrace_fork_pare= nt.c dtrace -C -G -s dtrace_fork_parent_probes.d -o dtrace_fork_parent_probes.o cc dtrace_fork_parent.o dtrace_fork_parent_probes.o -o dtrace_fork_pare= nt dtrace -C -h -s dtrace_child_probes.d -o dtrace_child_probes.h cc -isystem/usr/local/include -c -o dtrace_child.o dtrace_child.c dtrace -C -G -s dtrace_child_probes.d -o dtrace_child_probes.o cc dtrace_child.o dtrace_child_probes.o -o dtrace_child make[3]: Leaving directory `/home/prasadkr/systemtap/testsuite/staptestdSJq= 06' PASS: dtrace_fork_exec1 - build success executing: stap -v /home/prasadkr/systemtap/testsuite/systemtap.clone/dtrac= e_fork_exec.stp staptestdSJq06/dtrace_fork_parent staptestdSJq06/dtrace_chi= ld spawn stap -v /home/prasadkr/systemtap/testsuite/systemtap.clone/dtrace_for= k_exec.stp staptestdSJq06/dtrace_fork_parent staptestdSJq06/dtrace_child=0D Pass 1: parsed user script and 75 library script(s) using 38656virt/30656re= s/7872shr kb, in 270usr/0sys/264real ms.=0D Pass 2: analyzed script: 7 probe(s), 2 function(s), 1 embed(s), 1 global(s)= using 39680virt/32256res/8512shr kb, in 10usr/0sys/8real ms.=0D Pass 3: translated to C into "/tmp/stapHIFNSJ/stap_f3afa3ed0e32b9fbc2270d22= d2209f3b_4111.c" using 143168virt/32704res/8832shr kb, in 10usr/110sys/138r= eal ms.=0D Pass 4: compiled C into "stap_f3afa3ed0e32b9fbc2270d22d2209f3b_4111.ko" in = 2720usr/400sys/3125real ms.=0D Pass 5: starting run.=0D systemtap starting probe=0D PASS: dtrace_fork_exec2 startup PASS: dtrace_fork_exec2 load generation systemtap ending probe=0D parent - pid: 32534=0D parent - child pid: 32535=0D parent - child pid before exec: 32535=0D child - pid: 32535=0D parent - finished=0D Pass 5: run completed in 0usr/70sys/377real ms.=0D PASS: dtrace_fork_exec2 shutdown and output metric: dtrace_fork_exec2 270 0 264 10 0 8 10 110 138 2720 400 3125 0 70 3= 77 exec make -C staptestdSJq06 clean make[3]: Entering directory `/home/prasadkr/systemtap/testsuite/staptestdSJ= q06' rm -f dtrace_fork_parent.o dtrace_fork_parent_probes.o dtrace_child.o dtrac= e_child_probes.o dtrace_fork_parent dtrace_child dtrace_fork_parent_probes.= h dtrace_child_probes.h make[3]: Leaving directory `/home/prasadkr/systemtap/testsuite/staptestdSJq= 06' exec make -C staptestdSJq06 CFLAGS=3D"-isystem/usr/local/include -DUSE_SEMA= PHORES" make[3]: Entering directory `/home/prasadkr/systemtap/testsuite/staptestdSJ= q06' dtrace -C -h -s dtrace_fork_parent_probes.d -o dtrace_fork_parent_probes.h cc -isystem/usr/local/include -DUSE_SEMAPHORES -c -o dtrace_fork_parent.o= dtrace_fork_parent.c dtrace -C -G -s dtrace_fork_parent_probes.d -o dtrace_fork_parent_probes.o cc dtrace_fork_parent.o dtrace_fork_parent_probes.o -o dtrace_fork_pare= nt dtrace -C -h -s dtrace_child_probes.d -o dtrace_child_probes.h cc -isystem/usr/local/include -DUSE_SEMAPHORES -c -o dtrace_child.o dtrac= e_child.c dtrace -C -G -s dtrace_child_probes.d -o dtrace_child_probes.o cc dtrace_child.o dtrace_child_probes.o -o dtrace_child make[3]: Leaving directory `/home/prasadkr/systemtap/testsuite/staptestdSJq= 06' PASS: dtrace_fork_exec3 - build success executing: stap -v /home/prasadkr/systemtap/testsuite/systemtap.clone/dtrac= e_fork_exec.stp staptestdSJq06/dtrace_fork_parent staptestdSJq06/dtrace_chi= ld spawn stap -v /home/prasadkr/systemtap/testsuite/systemtap.clone/dtrace_for= k_exec.stp staptestdSJq06/dtrace_fork_parent staptestdSJq06/dtrace_child=0D Pass 1: parsed user script and 75 library script(s) using 38656virt/30720re= s/7872shr kb, in 250usr/0sys/246real ms.=0D Pass 2: analyzed script: 7 probe(s), 2 function(s), 1 embed(s), 1 global(s)= using 39680virt/32320res/8512shr kb, in 0usr/0sys/8real ms.=0D Pass 3: translated to C into "/tmp/stapAGwwQS/stap_c3fb79a7b3a2d02ab7a0cd75= 8e9adede_4111.c" using 143168virt/32768res/8832shr kb, in 20usr/120sys/131r= eal ms.=0D Pass 4: compiled C into "stap_c3fb79a7b3a2d02ab7a0cd758e9adede_4111.ko" in = 2720usr/390sys/3131real ms.=0D Pass 5: starting run.=0D systemtap starting probe=0D PASS: dtrace_fork_exec4 startup PASS: dtrace_fork_exec4 load generation systemtap ending probe=0D parent - pid: 564=0D parent - child pid: 565=0D parent - child pid before exec: 565=0D child - pid: 565=0D parent - finished=0D Pass 5: run completed in 10usr/70sys/373real ms.=0D PASS: dtrace_fork_exec4 shutdown and output metric: dtrace_fork_exec4 250 0 246 0 0 8 20 120 131 2720 390 3131 10 70 3= 73 testcase /home/prasadkr/systemtap/testsuite/systemtap.clone/dtrace_fork_exe= c.exp completed in 9 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.clone/dtrace_vfork_exe= c.exp ... exec make -C staptesttN5lWX CFLAGS=3D"-isystem/usr/local/include" make[3]: Entering directory `/home/prasadkr/systemtap/testsuite/staptesttN5= lWX' dtrace -C -h -s dtrace_vfork_parent_probes.d -o dtrace_vfork_parent_probes.h cc -isystem/usr/local/include -c -o dtrace_vfork_parent.o dtrace_vfork_pa= rent.c dtrace -C -G -s dtrace_vfork_parent_probes.d -o dtrace_vfork_parent_probes.o cc dtrace_vfork_parent.o dtrace_vfork_parent_probes.o -o dtrace_vfork_p= arent dtrace -C -h -s dtrace_child_probes.d -o dtrace_child_probes.h cc -isystem/usr/local/include -c -o dtrace_child.o dtrace_child.c dtrace -C -G -s dtrace_child_probes.d -o dtrace_child_probes.o cc dtrace_child.o dtrace_child_probes.o -o dtrace_child make[3]: Leaving directory `/home/prasadkr/systemtap/testsuite/staptesttN5l= WX' PASS: dtrace_vfork_exec1 - build success executing: stap -v /home/prasadkr/systemtap/testsuite/systemtap.clone/dtrac= e_vfork_exec.stp staptesttN5lWX/dtrace_vfork_parent staptesttN5lWX/dtrace_c= hild spawn stap -v /home/prasadkr/systemtap/testsuite/systemtap.clone/dtrace_vfo= rk_exec.stp staptesttN5lWX/dtrace_vfork_parent staptesttN5lWX/dtrace_child= =0D Pass 1: parsed user script and 75 library script(s) using 38656virt/30720re= s/7872shr kb, in 270usr/0sys/263real ms.=0D Pass 2: analyzed script: 6 probe(s), 2 function(s), 1 embed(s), 1 global(s)= using 39680virt/32320res/8512shr kb, in 10usr/0sys/8real ms.=0D Pass 3: translated to C into "/tmp/stap1EBfjf/stap_fd17471c70421990b785e3c7= ca96be9f_3644.c" using 143168virt/32768res/8832shr kb, in 10usr/110sys/137r= eal ms.=0D Pass 4: compiled C into "stap_fd17471c70421990b785e3c7ca96be9f_3644.ko" in = 2720usr/400sys/3143real ms.=0D Pass 5: starting run.=0D systemtap starting probe=0D PASS: dtrace_vfork_exec2 startup PASS: dtrace_vfork_exec2 load generation systemtap ending probe=0D parent - pid: 1093=0D child - pid: 1097=0D parent - child pid: 1097=0D parent - finished=0D Pass 5: run completed in 0usr/70sys/371real ms.=0D FAIL: dtrace_vfork_exec2 shutdown (eof) exec make -C staptesttN5lWX clean make[3]: Entering directory `/home/prasadkr/systemtap/testsuite/staptesttN5= lWX' rm -f dtrace_vfork_parent.o dtrace_vfork_parent_probes.o dtrace_child.o dtr= ace_child_probes.o dtrace_vfork_parent dtrace_child dtrace_vfork_parent_pro= bes.h dtrace_child_probes.h make[3]: Leaving directory `/home/prasadkr/systemtap/testsuite/staptesttN5l= WX' exec make -C staptesttN5lWX CFLAGS=3D"-isystem/usr/local/include -DUSE_SEMA= PHORES" make[3]: Entering directory `/home/prasadkr/systemtap/testsuite/staptesttN5= lWX' dtrace -C -h -s dtrace_vfork_parent_probes.d -o dtrace_vfork_parent_probes.h cc -isystem/usr/local/include -DUSE_SEMAPHORES -c -o dtrace_vfork_parent.= o dtrace_vfork_parent.c dtrace -C -G -s dtrace_vfork_parent_probes.d -o dtrace_vfork_parent_probes.o cc dtrace_vfork_parent.o dtrace_vfork_parent_probes.o -o dtrace_vfork_p= arent dtrace -C -h -s dtrace_child_probes.d -o dtrace_child_probes.h cc -isystem/usr/local/include -DUSE_SEMAPHORES -c -o dtrace_child.o dtrac= e_child.c dtrace -C -G -s dtrace_child_probes.d -o dtrace_child_probes.o cc dtrace_child.o dtrace_child_probes.o -o dtrace_child make[3]: Leaving directory `/home/prasadkr/systemtap/testsuite/staptesttN5l= WX' PASS: dtrace_vfork_exec3 - build success executing: stap -v /home/prasadkr/systemtap/testsuite/systemtap.clone/dtrac= e_vfork_exec.stp staptesttN5lWX/dtrace_vfork_parent staptesttN5lWX/dtrace_c= hild spawn stap -v /home/prasadkr/systemtap/testsuite/systemtap.clone/dtrace_vfo= rk_exec.stp staptesttN5lWX/dtrace_vfork_parent staptesttN5lWX/dtrace_child= =0D Pass 1: parsed user script and 75 library script(s) using 38656virt/30656re= s/7872shr kb, in 240usr/0sys/245real ms.=0D Pass 2: analyzed script: 6 probe(s), 2 function(s), 1 embed(s), 1 global(s)= using 39680virt/32256res/8512shr kb, in 10usr/0sys/7real ms.=0D Pass 3: translated to C into "/tmp/stapzpnOpA/stap_25765cdce50fdfb3729668ca= d90907c6_3644.c" using 143168virt/32704res/8832shr kb, in 20usr/110sys/131r= eal ms.=0D Pass 4: compiled C into "stap_25765cdce50fdfb3729668cad90907c6_3644.ko" in = 2710usr/400sys/3124real ms.=0D Pass 5: starting run.=0D systemtap starting probe=0D PASS: dtrace_vfork_exec4 startup PASS: dtrace_vfork_exec4 load generation systemtap ending probe=0D parent - pid: 1609=0D child - pid: 1610=0D parent - child pid: 1610=0D parent - finished=0D Pass 5: run completed in 10usr/60sys/368real ms.=0D FAIL: dtrace_vfork_exec4 shutdown (eof) testcase /home/prasadkr/systemtap/testsuite/systemtap.clone/dtrace_vfork_ex= ec.exp completed in 8 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.context/context.exp ... as_root cp staptestqnm3N9/systemtap_test_module2.ko /lib/modules/2.6.32-71.= el6.ppc64/kernel OUT=20 RC 0 as_root cp staptestqnm3N9/systemtap_test_module1.ko /lib/modules/2.6.32-71.= el6.ppc64/kernel OUT=20 RC 0 as_root /sbin/insmod staptestqnm3N9/systemtap_test_module2.ko OUT=20 RC 0 as_root /sbin/insmod staptestqnm3N9/systemtap_test_module1.ko OUT=20 RC 0 sourcing: /home/prasadkr/systemtap/testsuite/systemtap.context/backtrace.tcl spawn stap -d kernel -d systemtap_test_module1 /home/prasadkr/systemtap/tes= tsuite/systemtap.context/backtrace.stp=0D Systemtap probe: begin=0D PASS: backtrace of begin probe backtrace from module("systemtap_test_module2").function("yyy_func2@/home/p= rasadkr/systemtap/testsuite/staptestqnm3N9/systemtap_test_module2.c:33"):=0D 0xd0000000036f0040 : .yyy_func2+0x0/0x30 [systemtap_test_module2]=0D [0xc0000000030538b8] [0x00000000000004d2] 0x4d2 (inexact)=0D [0xc000000003053b30] [0xc000000133625100] 0xc000000133625100=0D [0xc000000003053ba0] [0xd0000000038f0268] 0xd0000000038f0268 : .stm_write_c= md+0x1b8/0x0 [systemtap_test_module1]=0D [0xc000000003053c30] [0xc0000000002295d4] 0xc0000000002295d4 : .proc_reg_wr= ite+0xb4/0x130 [kernel]=0D [0xc000000003053ce0] [0xc0000000001b11cc] 0xc0000000001b11cc : .vfs_write+0= xec/0x1f0 [kernel]=0D [0xc000000003053d80] [0xc0000000001b13f8] 0xc0000000001b13f8 : .SyS_write+0= x58/0xb0 [kernel]=0D [0xc000000003053e30] [0xc00000000000852c] 0xc00000000000852c : syscall_exit= +0x0/0x40 [kernel]=0D --- Exception: c00 at 0x800ba1bcf8=0D LR =3D 0x800b9aa328=0D --- yyy_func2 ---=0D the stack is 0xd0000000036f0040 [0xc0000000030538b8] [0x00000000000004d2]0x= 4d2 [0xc000000003053b30] [0xc000000133625100]0xc000000133625100 [0xc0000000= 03053ba0] [0xd0000000038f0268]0xd0000000038f0268 [0xc000000003053c30] [0xc0= 000000002295d4]0xc0000000002295d4 [0xc000000003053ce0] [0xc0000000001b11cc]= 0xc0000000001b11cc [0xc000000003053d80] [0xc0000000001b13f8]0xc0000000001b1= 3f8 [0xc000000003053e30] [0xc00000000000852c]0xc00000000000852c --- Excepti= on: c00 at 0x800ba1bcf8 LR =3D0x800b9aa328=0D 0xd0000000036f0040 : .yyy_func2+0x0/0x30 [systemtap_test_module2]=0D 0x0 : __mod_license99+0x0/0x10 [systemtap_test_module1]=0D 0x0 : __mod_license99+0x0/0x10 [systemtap_test_module1]=0D 0x0 : __mod_license99+0x0/0x10 [systemtap_test_module1]=0D 0x0 : __mod_license99+0x0/0x10 [systemtap_test_module1]=0D 0x0 : __mod_license99+0x0/0x10 [systemtap_test_module1]=0D 0x0 : __mod_license99+0x0/0x10 [systemtap_test_module1]=0D 0x0 : __mod_license99+0x0/0x10 [systemtap_test_module1]=0D 0x0 : __mod_license99+0x0/0x10 [systemtap_test_module1]=0D 0x0 : __mod_license99+0x0/0x10 [systemtap_test_module1]=0D 0x0 : __mod_license99+0x0/0x10 [systemtap_test_module1]=0D 0x0 : __mod_license99+0x0/0x10 [systemtap_test_module1]=0D 0x0 : __mod_license99+0x0/0x10 [systemtap_test_module1]=0D 0x0 : __mod_license99+0x0/0x10 [systemtap_test_module1]=0D 0x0 : __mod_license99+0x0/0x10 [systemtap_test_module1]=0D 0x0 : __mod_license99+0x0/0x10 [systemtap_test_module1]=0D 0xe : __mod_license99+0xe/0x10 [systemtap_test_module1]=0D 0xc00=0D 0xa : __mod_license99+0xa/0x10 [systemtap_test_module1]=0D 0x800ba1bcf8=0D --------=0D backtrace from module("systemtap_test_module2").function("yyy_func3@/home/p= rasadkr/systemtap/testsuite/staptestqnm3N9/systemtap_test_module2.c:28"):=0D 0xd0000000036f0010 : .yyy_func3+0x0/0x30 [systemtap_test_module2]=0D [0xc000000003053848] [0x00000000000004d2] 0x4d2 (inexact)=0D [0xc000000003053ac0] [0xc000000000179a00] 0xc000000000179a00 : .__vma_link_= rb+0x30/0x50 [kernel]=0D [0xc000000003053b30] [0xd0000000036f0080] 0xd0000000036f0080 : .yyy_func1+0= x10/0x30 [systemtap_test_module2]=0D [0xc000000003053ba0] [0xd0000000038f0268] 0xd0000000038f0268 : .stm_write_c= md+0x1b8/0x0 [systemtap_test_module1]=0D [0xc000000003053c30] [0xc0000000002295d4] 0xc0000000002295d4 : .proc_reg_wr= ite+0xb4/0x130 [kernel]=0D [0xc000000003053ce0] [0xc0000000001b11cc] 0xc0000000001b11cc : .vfs_write+0= xec/0x1f0 [kernel]=0D [0xc000000003053d80] [0xc0000000001b13f8] 0xc0000000001b13f8 : .SyS_write+0= x58/0xb0 [kernel]=0D [0xc000000003053e30] [0xc00000000000852c] 0xc00000000000852c : syscall_exit= +0x0/0x40 [kernel]=0D --- Exception: c00 at 0x800ba1bcf8=0D LR =3D 0x800b9aa328=0D --- yyy_func3 ---=0D the stack is 0xd0000000036f0010 [0xc000000003053848] [0x00000000000004d2]0x= 4d2 [0xc000000003053ac0] [0xc000000000179a00]0xc000000000179a00 [0xc0000000= 03053b30] [0xd0000000036f0080]0xd0000000036f0080 [0xc000000003053ba0] [0xd0= 000000038f0268]0xd0000000038f0268 [0xc000000003053c30] [0xc0000000002295d4]= 0xc0000000002295d4 [0xc000000003053ce0] [0xc0000000001b11cc]0xc0000000001b1= 1cc [0xc000000003053d80] [0xc0000000001b13f8]0xc0000000001b13f8 [0xc0000000= 03053e30] [0xc00000000000852c]0xc00000000000852c --- Exception: c00 at 0x8= =0D 0xd0000000036f0010 : .yyy_func3+0x0/0x30 [systemtap_test_module2]=0D 0x0 : __mod_license99+0x0/0x10 [systemtap_test_module1]=0D 0x0 : __mod_license99+0x0/0x10 [systemtap_test_module1]=0D 0x0 : __mod_license99+0x0/0x10 [systemtap_test_module1]=0D 0x0 : __mod_license99+0x0/0x10 [systemtap_test_module1]=0D 0x0 : __mod_license99+0x0/0x10 [systemtap_test_module1]=0D 0x0 : __mod_license99+0x0/0x10 [systemtap_test_module1]=0D 0x0 : __mod_license99+0x0/0x10 [systemtap_test_module1]=0D 0x0 : __mod_license99+0x0/0x10 [systemtap_test_module1]=0D 0x0 : __mod_license99+0x0/0x10 [systemtap_test_module1]=0D 0x0 : __mod_license99+0x0/0x10 [systemtap_test_module1]=0D 0x0 : __mod_license99+0x0/0x10 [systemtap_test_module1]=0D 0x0 : __mod_license99+0x0/0x10 [systemtap_test_module1]=0D 0x0 : __mod_license99+0x0/0x10 [systemtap_test_module1]=0D 0x0 : __mod_license99+0x0/0x10 [systemtap_test_module1]=0D 0x0 : __mod_license99+0x0/0x10 [systemtap_test_module1]=0D 0x0 : __mod_license99+0x0/0x10 [systemtap_test_module1]=0D 0x0 : __mod_license99+0x0/0x10 [systemtap_test_module1]=0D 0xe : __mod_license99+0xe/0x10 [systemtap_test_module1]=0D 0xc00=0D 0xa : __mod_license99+0xa/0x10 [systemtap_test_module1]=0D 0x8 : __mod_license99+0x8/0x10 [systemtap_test_module1]=0D --------=0D backtrace from module("systemtap_test_module2").function("yyy_func4@/home/p= rasadkr/systemtap/testsuite/staptestqnm3N9/systemtap_test_module2.c:24"):=0D 0xd0000000036f0000 : .yyy_func4+0x0/0x10 [systemtap_test_module2]=0D [0xc0000000030537d8] [0x00000000000004d2] 0x4d2 (inexact)=0D [0xc000000003053a50] [0xc000000000e27968] 0xc000000000e27968 : mv88e6131_sw= itch_driver+0x138c0/0x24100 [kernel]=0D [0xc000000003053ac0] [0xd0000000036f0050] 0xd0000000036f0050 : .yyy_func2+0= x10/0x30 [systemtap_test_module2]=0D [0xc000000003053b30] [0xd0000000036f0080] 0xd0000000036f0080 : .yyy_func1+0= x10/0x30 [systemtap_test_module2]=0D [0xc000000003053ba0] [0xd0000000038f0268] 0xd0000000038f0268 : .stm_write_c= md+0x1b8/0x0 [systemtap_test_module1]=0D [0xc000000003053c30] [0xc0000000002295d4] 0xc0000000002295d4 : .proc_reg_wr= ite+0xb4/0x130 [kernel]=0D [0xc000000003053ce0] [0xc0000000001b11cc] 0xc0000000001b11cc : .vfs_write+0= xec/0x1f0 [kernel]=0D [0xc000000003053d80] [0xc0000000001b13f8] 0xc0000000001b13f8 : .SyS_write+0= x58/0xb0 [kernel]=0D [0xc000000003053e30] [0xc00000000000852c] 0xc00000000000852c : syscall_exit= +0x0/0x40 [kernel]=0D --- Exception: c00 at 0x800ba1bcf8=0D LR =3D 0x800b9aa328=0D --- yyy_func4 ---=0D the stack is 0xd0000000036f0000 [0xc0000000030537d8] [0x00000000000004d2]0x= 4d2 [0xc000000003053a50] [0xc000000000e27968]0xc000000000e27968 [0xc0000000= 03053ac0] [0xd0000000036f0050]0xd0000000036f0050 [0xc000000003053b30] [0xd0= 000000036f0080]0xd0000000036f0080 [0xc000000003053ba0] [0xd0000000038f0268]= 0xd0000000038f0268 [0xc000000003053c30] [0xc0000000002295d4]0xc000000000229= 5d4 [0xc000000003053ce0] [0xc0000000001b11cc]0xc0000000001b11cc [0xc0000000= 03053d80] [0xc0000000001b13f8]0xc0000000001b13f8 [0xc000000003053e30] [0xc= =0D 0xd0000000036f0000 : .yyy_func4+0x0/0x10 [systemtap_test_module2]=0D 0x0 : __mod_license99+0x0/0x10 [systemtap_test_module1]=0D 0x0 : __mod_license99+0x0/0x10 [systemtap_test_module1]=0D 0x0 : __mod_license99+0x0/0x10 [systemtap_test_module1]=0D 0x0 : __mod_license99+0x0/0x10 [systemtap_test_module1]=0D 0x0 : __mod_license99+0x0/0x10 [systemtap_test_module1]=0D 0x0 : __mod_license99+0x0/0x10 [systemtap_test_module1]=0D 0x0 : __mod_license99+0x0/0x10 [systemtap_test_module1]=0D 0x0 : __mod_license99+0x0/0x10 [systemtap_test_module1]=0D 0x0 : __mod_license99+0x0/0x10 [systemtap_test_module1]=0D 0x0 : __mod_license99+0x0/0x10 [systemtap_test_module1]=0D 0x0 : __mod_license99+0x0/0x10 [systemtap_test_module1]=0D 0x0 : __mod_license99+0x0/0x10 [systemtap_test_module1]=0D 0x0 : __mod_license99+0x0/0x10 [systemtap_test_module1]=0D 0x0 : __mod_license99+0x0/0x10 [systemtap_test_module1]=0D 0x0 : __mod_license99+0x0/0x10 [systemtap_test_module1]=0D 0x0 : __mod_license99+0x0/0x10 [systemtap_test_module1]=0D 0x0 : __mod_license99+0x0/0x10 [systemtap_test_module1]=0D 0x0 : __mod_license99+0x0/0x10 [systemtap_test_module1]=0D --------=0D Systemtap probe: end=0D ERROR: tcl error sourcing /home/prasadkr/systemtap/testsuite/systemtap.cont= ext/context.exp. ERROR: expect: spawn id exp16 not open while executing "expect { -timeout 120 "Systemtap probe: begin\r\n" { pass "backtrace of begin probe" exec echo 0 > /proc/stap_test_cmd exp_continue } ..." (file "/home/prasadkr/systemtap/testsuite/systemtap.context/backtrace.t= cl" line 13) invoked from within "source $srcdir/$subdir/$test.tcl" ("foreach" body line 3) invoked from within "foreach test $testlist { send_log "sourcing: $srcdir/$subdir/$test.tcl\n" source $srcdir/$subdir/$test.tcl }" (file "/home/prasadkr/systemtap/testsuite/systemtap.context/context.exp= " line 85) invoked from within "source /home/prasadkr/systemtap/testsuite/systemtap.context/context.exp" ("uplevel" body line 1) invoked from within "uplevel #0 source /home/prasadkr/systemtap/testsuite/systemtap.context/con= text.exp" invoked from within "catch "uplevel #0 source $test_file_name"" testcase /home/prasadkr/systemtap/testsuite/systemtap.context/context.exp c= ompleted in 8 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.context/fib.exp ... Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.context= /fib.c -g -O0 -lm -o /home/prasadkr/systemtap/testsuite/fib (timeout= =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.conte= xt/fib.c -g -O0 -lm -o /home/prasadkr/systemtap/testsuite/fib=0D spawn stap -c /home/prasadkr/systemtap/testsuite/fib 10 /home/prasadkr/syst= emtap/testsuite/systemtap.context/fib.stp=0D 89=0D 00000011.plt_call.printf@@GLIBC_2.4+0+0x1dc=0D [0xc000000003db3ea8] [0x0000000000000001]0x1 (inexact)=0D =0D 00000011.plt_call.printf@@GLIBC_2.4+0+0x1f4=0D [0xc000000003db3ea8] [0x0000000000000001]0x1 (inexact)=0D =0D FAIL: fib (0 0) spawn stap -c /home/prasadkr/systemtap/testsuite/fib 10 -- /home/prasadkr/s= ystemtap/testsuite/systemtap.context/fib.stp --entry=0D 89=0D 00000011.plt_call.printf@@GLIBC_2.4+0+0x188=0D [0xc000000132f93ea8] [0x000000000000000a]0xa (inexact)=0D =0D 00000011.plt_call.printf@@GLIBC_2.4+0+0x188=0D [0xc000000132f93ea8] [0x0000000000000009]0x9 (inexact)=0D =0D 00000011.plt_call.printf@@GLIBC_2.4+0+0x188=0D [0xc000000132f93ea8] [0x0000000000000008]0x8 (inexact)=0D =0D 00000011.plt_call.printf@@GLIBC_2.4+0+0x188=0D [0xc000000132f93ea8] [0x0000000000000007]0x7 (inexact)=0D =0D 00000011.plt_call.printf@@GLIBC_2.4+0+0x188=0D [0xc000000132f93ea8] [0x0000000000000006]0x6 (inexact)=0D =0D 00000011.plt_call.printf@@GLIBC_2.4+0+0x188=0D [0xc000000132f93ea8] [0x0000000000000005]0x5 (inexact)=0D =0D 00000011.plt_call.printf@@GLIBC_2.4+0+0x188=0D [0xc000000132f93ea8] [0x0000000000000004]0x4 (inexact)=0D =0D 00000011.plt_call.printf@@GLIBC_2.4+0+0x188=0D [0xc000000132f93ea8] [0x0000000000000003]0x3 (inexact)=0D =0D 00000011.plt_call.printf@@GLIBC_2.4+0+0x188=0D [0xc000000132f93ea8] [0x0000000000000002]0x2 (inexact)=0D =0D 00000011.plt_call.printf@@GLIBC_2.4+0+0x188=0D [0xc000000132f93ea8] [0x0000000000000001]0x1 (inexact)=0D =0D FAIL: fib (0 0) testcase /home/prasadkr/systemtap/testsuite/systemtap.context/fib.exp compl= eted in 8 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.context/symbols.exp ... spawn stap -g /home/prasadkr/systemtap/testsuite/systemtap.context/symbols.= stp=0D 0x0=0D 0x80000000=0D 0xc0000000=0D 0xe0000000=0D 0xf0000000=0D 0xffffffff=0D 0xffffffff00000000=0D 0xffffffff80000000=0D 0xffffffff80120000=0D 0xffffffff88000000=0D 0xffffffffffffffff=0D PASS: symbols (11) testcase /home/prasadkr/systemtap/testsuite/systemtap.context/symbols.exp c= ompleted in 2 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.context/uprobe_stmt_nu= m.exp ... Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.context= /uprobe_stmt_num.c -g -O0 -lm -o /home/prasadkr/systemtap/testsuite/upr= obe_stmt_num (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.conte= xt/uprobe_stmt_num.c -g -O0 -lm -o /home/prasadkr/systemtap/testsuite/uprob= e_stmt_num=0D cmd: stap -c /home/prasadkr/systemtap/testsuite/uprobe_stmt_num /home/prasa= dkr/systemtap/testsuite/systemtap.context/uprobe_stmt_num.stp cmd output: 0x100005b8 0x100005d4 0x100005dc 0x100005ec 0x10000610 0x1000062c PASS: uprobe_stmt_num-run-one executing: stap /home/prasadkr/systemtap/testsuite/systemtap.context/uprobe= _stmt_num.stp -c /home/prasadkr/systemtap/testsuite/uprobe_stmt_num PASS: uprobe_stmt_num-run-two executing: stap uprobe_stmt_num-run-statements.stp -c /home/prasadkr/system= tap/testsuite/uprobe_stmt_num PASS: uprobe_stmt_num-run-statements Executing: objcopy -R .debug_line /home/prasadkr/systemtap/testsuite/uprobe= _stmt_num executing: stap -w -g uprobe_stmt_num-run-statements.stp -c /home/prasadkr/= systemtap/testsuite/uprobe_stmt_num PASS: uprobe_stmt_num-run-statements-nolines testcase /home/prasadkr/systemtap/testsuite/systemtap.context/uprobe_stmt_n= um.exp completed in 13 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.context/uprobe_uaddr.e= xp ... Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.context= /uprobe_stmt_num.c -g -O0 -lm -o /home/prasadkr/systemtap/testsuite/upr= obe_uaddr (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.conte= xt/uprobe_stmt_num.c -g -O0 -lm -o /home/prasadkr/systemtap/testsuite/uprob= e_uaddr=0D cmd: stap -c /home/prasadkr/systemtap/testsuite/uprobe_uaddr /home/prasadkr= /systemtap/testsuite/systemtap.context/uprobe_uaddr.stp cmd output: 00000011.plt_call.__libc_start_main@@GLIBC_2.3+0+0x270/0x418 [/home/prasad= kr/systemtap/testsuite/uprobe_uaddr] 00000011.plt_call.__libc_start_main@@GLIBC_2.3+0+0x1d8/0x418 [/home/prasadk= r/systemtap/testsuite/uprobe_uaddr] 00000011.plt_call.__libc_start_main@@GLIBC_2.3+0+0x190/0x418 [/home/prasadk= r/systemtap/testsuite/uprobe_uaddr] 00000011.plt_call.__libc_start_main@@GLIBC_2.3+0+0x228/0x418 [/home/prasadk= r/systemtap/testsuite/uprobe_uaddr] 00000011.plt_call.__libc_start_main@@GLIBC_2.3+0+0x29c/0x418 [/home/prasadk= r/systemtap/testsuite/uprobe_uaddr] 0x800b94bcd8 [/lib64/power6/libc-2.12.so+0x4bcd8/0x1f0000] PASS: uprobe_uaddr FAIL: uprobe_uaddr 00000011.plt_call.__libc_start_main@@GLIBC_2.3+0+0x270/0= x418 [/home/prasadkr/systemtap/testsuite/uprobe_uaddr] FAIL: uprobe_uaddr 00000011.plt_call.__libc_start_main@@GLIBC_2.3+0+0x1d8/0= x418 [/home/prasadkr/systemtap/testsuite/uprobe_uaddr] FAIL: uprobe_uaddr 00000011.plt_call.__libc_start_main@@GLIBC_2.3+0+0x190/0= x418 [/home/prasadkr/systemtap/testsuite/uprobe_uaddr] FAIL: uprobe_uaddr 00000011.plt_call.__libc_start_main@@GLIBC_2.3+0+0x228/0= x418 [/home/prasadkr/systemtap/testsuite/uprobe_uaddr] FAIL: uprobe_uaddr 00000011.plt_call.__libc_start_main@@GLIBC_2.3+0+0x29c/0= x418 [/home/prasadkr/systemtap/testsuite/uprobe_uaddr] PASS: uprobe_uaddr testcase /home/prasadkr/systemtap/testsuite/systemtap.context/uprobe_uaddr.= exp completed in 4 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.context/usymbols.exp .= .. Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.context= /usymbols_lib.c -fPIC -shared -lm -o /home/prasadkr/systemtap/testsuite= /libusymbols.so (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.conte= xt/usymbols_lib.c -fPIC -shared -lm -o /home/prasadkr/systemtap/testsuite/l= ibusymbols.so=0D Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.context= /usymbols.c -g -O -L/home/prasadkr/systemtap/testsuite -Wl,-rpath,/home/pr= asadkr/systemtap/testsuite -lusymbols -lm -o /home/prasadkr/systemtap/te= stsuite/usymbols (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.conte= xt/usymbols.c -g -O -L/home/prasadkr/systemtap/testsuite -Wl,-rpath,/home/p= rasadkr/systemtap/testsuite -lusymbols -lm -o /home/prasadkr/systemtap/test= suite/usymbols=0D script:=20 probe syscall.rt_sigaction, syscall.rt_sigaction32? { if (pid() =3D=3D target() && execname() =3D=3D "usymbols") { handler =3D user_long(&$act->sa_handler); // Note user address. printf("handler: %s (%s)\n", usymname(handler), umodname(handler)); } } cmd: stap -w -d /home/prasadkr/systemtap/testsuite/usymbols --ldd -c /home/= prasadkr/systemtap/testsuite/usymbols -e $script cmd output: semantic error: invalid access '->sa_handler' vs. long int: ope= rator '->' at :4:29 source: handler =3D user_long(&$act->sa_handler); // Note user a= ddress. ^ Pass 2: analysis failed. Try again with another '--vp 01' option. FAIL: usymbols default line 1: expected "handler: main_handler (/home/prasadkr/systemtap/testsuite= /usymbols)", Got "semantic error: invalid access '->sa_handler' vs. long in= t: operator '->' at :4:29" testcase /home/prasadkr/systemtap/testsuite/systemtap.context/usymbols.exp = completed in 2 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.examples/check.exp ... meta taglines '' tag 'test_support' value '' meta taglines 'test_check: stap -p4 ansi_colors.stp' tag 'test_check' value= 'stap -p4 ansi_colors.stp' attempting command stap -p4 ansi_colors.stp OUT /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/54/stap_54c88b= f64d3947f896ff0868da395ac7_1467.ko RC 0 PASS: systemtap.examples/general/ansi_colors build meta taglines 'test_installcheck: stap ansi_colors.stp' tag 'test_installch= eck' value 'stap ansi_colors.stp' attempting command stap ansi_colors.stp OUT fg,t \ bg | 40 41 42 43 44 45 46 4= 7=20=20=20 --------------------------------------------------------------------------- 30,0 |=1B[40;30m Normal =1B[0;0m=1B[41;30m Normal =1B[0;0m=1B[42;30m N= ormal =1B[0;0m=1B[43;30m Normal =1B[0;0m=1B[44;30m Normal =1B[0;0m=1B[45;30= m Normal =1B[0;0m=1B[46;30m Normal =1B[0;0m=1B[47;30m Normal =1B[0;0m 30,1 |=1B[40;30;1m Bold =1B[0;0m=1B[41;30;1m Bold =1B[0;0m=1B[42;3= 0;1m Bold =1B[0;0m=1B[43;30;1m Bold =1B[0;0m=1B[44;30;1m Bold =1B[0;0= m=1B[45;30;1m Bold =1B[0;0m=1B[46;30;1m Bold =1B[0;0m=1B[47;30;1m Bold = =1B[0;0m 31,0 |=1B[40;31m Normal =1B[0;0m=1B[41;31m Normal =1B[0;0m=1B[42;31m N= ormal =1B[0;0m=1B[43;31m Normal =1B[0;0m=1B[44;31m Normal =1B[0;0m=1B[45;31= m Normal =1B[0;0m=1B[46;31m Normal =1B[0;0m=1B[47;31m Normal =1B[0;0m 31,1 |=1B[40;31;1m Bold =1B[0;0m=1B[41;31;1m Bold =1B[0;0m=1B[42;3= 1;1m Bold =1B[0;0m=1B[43;31;1m Bold =1B[0;0m=1B[44;31;1m Bold =1B[0;0= m=1B[45;31;1m Bold =1B[0;0m=1B[46;31;1m Bold =1B[0;0m=1B[47;31;1m Bold = =1B[0;0m 32,0 |=1B[40;32m Normal =1B[0;0m=1B[41;32m Normal =1B[0;0m=1B[42;32m N= ormal =1B[0;0m=1B[43;32m Normal =1B[0;0m=1B[44;32m Normal =1B[0;0m=1B[45;32= m Normal =1B[0;0m=1B[46;32m Normal =1B[0;0m=1B[47;32m Normal =1B[0;0m 32,1 |=1B[40;32;1m Bold =1B[0;0m=1B[41;32;1m Bold =1B[0;0m=1B[42;3= 2;1m Bold =1B[0;0m=1B[43;32;1m Bold =1B[0;0m=1B[44;32;1m Bold =1B[0;0= m=1B[45;32;1m Bold =1B[0;0m=1B[46;32;1m Bold =1B[0;0m=1B[47;32;1m Bold = =1B[0;0m 33,0 |=1B[40;33m Normal =1B[0;0m=1B[41;33m Normal =1B[0;0m=1B[42;33m N= ormal =1B[0;0m=1B[43;33m Normal =1B[0;0m=1B[44;33m Normal =1B[0;0m=1B[45;33= m Normal =1B[0;0m=1B[46;33m Normal =1B[0;0m=1B[47;33m Normal =1B[0;0m 33,1 |=1B[40;33;1m Bold =1B[0;0m=1B[41;33;1m Bold =1B[0;0m=1B[42;3= 3;1m Bold =1B[0;0m=1B[43;33;1m Bold =1B[0;0m=1B[44;33;1m Bold =1B[0;0= m=1B[45;33;1m Bold =1B[0;0m=1B[46;33;1m Bold =1B[0;0m=1B[47;33;1m Bold = =1B[0;0m 34,0 |=1B[40;34m Normal =1B[0;0m=1B[41;34m Normal =1B[0;0m=1B[42;34m N= ormal =1B[0;0m=1B[43;34m Normal =1B[0;0m=1B[44;34m Normal =1B[0;0m=1B[45;34= m Normal =1B[0;0m=1B[46;34m Normal =1B[0;0m=1B[47;34m Normal =1B[0;0m 34,1 |=1B[40;34;1m Bold =1B[0;0m=1B[41;34;1m Bold =1B[0;0m=1B[42;3= 4;1m Bold =1B[0;0m=1B[43;34;1m Bold =1B[0;0m=1B[44;34;1m Bold =1B[0;0= m=1B[45;34;1m Bold =1B[0;0m=1B[46;34;1m Bold =1B[0;0m=1B[47;34;1m Bold = =1B[0;0m 35,0 |=1B[40;35m Normal =1B[0;0m=1B[41;35m Normal =1B[0;0m=1B[42;35m N= ormal =1B[0;0m=1B[43;35m Normal =1B[0;0m=1B[44;35m Normal =1B[0;0m=1B[45;35= m Normal =1B[0;0m=1B[46;35m Normal =1B[0;0m=1B[47;35m Normal =1B[0;0m 35,1 |=1B[40;35;1m Bold =1B[0;0m=1B[41;35;1m Bold =1B[0;0m=1B[42;3= 5;1m Bold =1B[0;0m=1B[43;35;1m Bold =1B[0;0m=1B[44;35;1m Bold =1B[0;0= m=1B[45;35;1m Bold =1B[0;0m=1B[46;35;1m Bold =1B[0;0m=1B[47;35;1m Bold = =1B[0;0m 36,0 |=1B[40;36m Normal =1B[0;0m=1B[41;36m Normal =1B[0;0m=1B[42;36m N= ormal =1B[0;0m=1B[43;36m Normal =1B[0;0m=1B[44;36m Normal =1B[0;0m=1B[45;36= m Normal =1B[0;0m=1B[46;36m Normal =1B[0;0m=1B[47;36m Normal =1B[0;0m 36,1 |=1B[40;36;1m Bold =1B[0;0m=1B[41;36;1m Bold =1B[0;0m=1B[42;3= 6;1m Bold =1B[0;0m=1B[43;36;1m Bold =1B[0;0m=1B[44;36;1m Bold =1B[0;0= m=1B[45;36;1m Bold =1B[0;0m=1B[46;36;1m Bold =1B[0;0m=1B[47;36;1m Bold = =1B[0;0m 37,0 |=1B[40;37m Normal =1B[0;0m=1B[41;37m Normal =1B[0;0m=1B[42;37m N= ormal =1B[0;0m=1B[43;37m Normal =1B[0;0m=1B[44;37m Normal =1B[0;0m=1B[45;37= m Normal =1B[0;0m=1B[46;37m Normal =1B[0;0m=1B[47;37m Normal =1B[0;0m 37,1 |=1B[40;37;1m Bold =1B[0;0m=1B[41;37;1m Bold =1B[0;0m=1B[42;3= 7;1m Bold =1B[0;0m=1B[43;37;1m Bold =1B[0;0m=1B[44;37;1m Bold =1B[0;0= m=1B[45;37;1m Bold =1B[0;0m=1B[46;37;1m Bold =1B[0;0m=1B[47;37;1m Bold = =1B[0;0m RC 0 PASS: systemtap.examples/general/ansi_colors run meta taglines '' tag 'test_support' value '' meta taglines 'test_check: stap -p4 ansi_colors2.stp' tag 'test_check' valu= e 'stap -p4 ansi_colors2.stp' attempting command stap -p4 ansi_colors2.stp OUT /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/53/stap_535e87= 1d38c68e337af36aa246391ae9_1463.ko RC 0 PASS: systemtap.examples/general/ansi_colors2 build meta taglines 'test_installcheck: stap ansi_colors2.stp' tag 'test_installc= heck' value 'stap ansi_colors2.stp' attempting command stap ansi_colors2.stp OUT fg,t \ bg | 40 41 42 43 44 45 46 4= 7=20=20=20 --------------------------------------------------------------------------- 30,0 |=1B[40;30m Colors =1B[0;0m=1B[41;30m Colors =1B[0;0m=1B[42;30m C= olors =1B[0;0m=1B[43;30m Colors =1B[0;0m=1B[44;30m Colors =1B[0;0m=1B[45;30= m Colors =1B[0;0m=1B[46;30m Colors =1B[0;0m=1B[47;30m Colors =1B[0;0m 30,1 |=1B[40;30;1m Colors =1B[0;0m=1B[41;30;1m Colors =1B[0;0m=1B[42;3= 0;1m Colors =1B[0;0m=1B[43;30;1m Colors =1B[0;0m=1B[44;30;1m Colors =1B[0;0= m=1B[45;30;1m Colors =1B[0;0m=1B[46;30;1m Colors =1B[0;0m=1B[47;30;1m Color= s =1B[0;0m 30,4 |=1B[40;30;4m Colors =1B[0;0m=1B[41;30;4m Colors =1B[0;0m=1B[42;3= 0;4m Colors =1B[0;0m=1B[43;30;4m Colors =1B[0;0m=1B[44;30;4m Colors =1B[0;0= m=1B[45;30;4m Colors =1B[0;0m=1B[46;30;4m Colors =1B[0;0m=1B[47;30;4m Color= s =1B[0;0m 30,7 |=1B[40;30;7m Colors =1B[0;0m=1B[41;30;7m Colors =1B[0;0m=1B[42;3= 0;7m Colors =1B[0;0m=1B[43;30;7m Colors =1B[0;0m=1B[44;30;7m Colors =1B[0;0= m=1B[45;30;7m Colors =1B[0;0m=1B[46;30;7m Colors =1B[0;0m=1B[47;30;7m Color= s =1B[0;0m 31,0 |=1B[40;31m Colors =1B[0;0m=1B[41;31m Colors =1B[0;0m=1B[42;31m C= olors =1B[0;0m=1B[43;31m Colors =1B[0;0m=1B[44;31m Colors =1B[0;0m=1B[45;31= m Colors =1B[0;0m=1B[46;31m Colors =1B[0;0m=1B[47;31m Colors =1B[0;0m 31,1 |=1B[40;31;1m Colors =1B[0;0m=1B[41;31;1m Colors =1B[0;0m=1B[42;3= 1;1m Colors =1B[0;0m=1B[43;31;1m Colors =1B[0;0m=1B[44;31;1m Colors =1B[0;0= m=1B[45;31;1m Colors =1B[0;0m=1B[46;31;1m Colors =1B[0;0m=1B[47;31;1m Color= s =1B[0;0m 31,4 |=1B[40;31;4m Colors =1B[0;0m=1B[41;31;4m Colors =1B[0;0m=1B[42;3= 1;4m Colors =1B[0;0m=1B[43;31;4m Colors =1B[0;0m=1B[44;31;4m Colors =1B[0;0= m=1B[45;31;4m Colors =1B[0;0m=1B[46;31;4m Colors =1B[0;0m=1B[47;31;4m Color= s =1B[0;0m 31,7 |=1B[40;31;7m Colors =1B[0;0m=1B[41;31;7m Colors =1B[0;0m=1B[42;3= 1;7m Colors =1B[0;0m=1B[43;31;7m Colors =1B[0;0m=1B[44;31;7m Colors =1B[0;0= m=1B[45;31;7m Colors =1B[0;0m=1B[46;31;7m Colors =1B[0;0m=1B[47;31;7m Color= s =1B[0;0m 32,0 |=1B[40;32m Colors =1B[0;0m=1B[41;32m Colors =1B[0;0m=1B[42;32m C= olors =1B[0;0m=1B[43;32m Colors =1B[0;0m=1B[44;32m Colors =1B[0;0m=1B[45;32= m Colors =1B[0;0m=1B[46;32m Colors =1B[0;0m=1B[47;32m Colors =1B[0;0m 32,1 |=1B[40;32;1m Colors =1B[0;0m=1B[41;32;1m Colors =1B[0;0m=1B[42;3= 2;1m Colors =1B[0;0m=1B[43;32;1m Colors =1B[0;0m=1B[44;32;1m Colors =1B[0;0= m=1B[45;32;1m Colors =1B[0;0m=1B[46;32;1m Colors =1B[0;0m=1B[47;32;1m Color= s =1B[0;0m 32,4 |=1B[40;32;4m Colors =1B[0;0m=1B[41;32;4m Colors =1B[0;0m=1B[42;3= 2;4m Colors =1B[0;0m=1B[43;32;4m Colors =1B[0;0m=1B[44;32;4m Colors =1B[0;0= m=1B[45;32;4m Colors =1B[0;0m=1B[46;32;4m Colors =1B[0;0m=1B[47;32;4m Color= s =1B[0;0m 32,7 |=1B[40;32;7m Colors =1B[0;0m=1B[41;32;7m Colors =1B[0;0m=1B[42;3= 2;7m Colors =1B[0;0m=1B[43;32;7m Colors =1B[0;0m=1B[44;32;7m Colors =1B[0;0= m=1B[45;32;7m Colors =1B[0;0m=1B[46;32;7m Colors =1B[0;0m=1B[47;32;7m Color= s =1B[0;0m 33,0 |=1B[40;33m Colors =1B[0;0m=1B[41;33m Colors =1B[0;0m=1B[42;33m C= olors =1B[0;0m=1B[43;33m Colors =1B[0;0m=1B[44;33m Colors =1B[0;0m=1B[45;33= m Colors =1B[0;0m=1B[46;33m Colors =1B[0;0m=1B[47;33m Colors =1B[0;0m 33,1 |=1B[40;33;1m Colors =1B[0;0m=1B[41;33;1m Colors =1B[0;0m=1B[42;3= 3;1m Colors =1B[0;0m=1B[43;33;1m Colors =1B[0;0m=1B[44;33;1m Colors =1B[0;0= m=1B[45;33;1m Colors =1B[0;0m=1B[46;33;1m Colors =1B[0;0m=1B[47;33;1m Color= s =1B[0;0m 33,4 |=1B[40;33;4m Colors =1B[0;0m=1B[41;33;4m Colors =1B[0;0m=1B[42;3= 3;4m Colors =1B[0;0m=1B[43;33;4m Colors =1B[0;0m=1B[44;33;4m Colors =1B[0;0= m=1B[45;33;4m Colors =1B[0;0m=1B[46;33;4m Colors =1B[0;0m=1B[47;33;4m Color= s =1B[0;0m 33,7 |=1B[40;33;7m Colors =1B[0;0m=1B[41;33;7m Colors =1B[0;0m=1B[42;3= 3;7m Colors =1B[0;0m=1B[43;33;7m Colors =1B[0;0m=1B[44;33;7m Colors =1B[0;0= m=1B[45;33;7m Colors =1B[0;0m=1B[46;33;7m Colors =1B[0;0m=1B[47;33;7m Color= s =1B[0;0m 34,0 |=1B[40;34m Colors =1B[0;0m=1B[41;34m Colors =1B[0;0m=1B[42;34m C= olors =1B[0;0m=1B[43;34m Colors =1B[0;0m=1B[44;34m Colors =1B[0;0m=1B[45;34= m Colors =1B[0;0m=1B[46;34m Colors =1B[0;0m=1B[47;34m Colors =1B[0;0m 34,1 |=1B[40;34;1m Colors =1B[0;0m=1B[41;34;1m Colors =1B[0;0m=1B[42;3= 4;1m Colors =1B[0;0m=1B[43;34;1m Colors =1B[0;0m=1B[44;34;1m Colors =1B[0;0= m=1B[45;34;1m Colors =1B[0;0m=1B[46;34;1m Colors =1B[0;0m=1B[47;34;1m Color= s =1B[0;0m 34,4 |=1B[40;34;4m Colors =1B[0;0m=1B[41;34;4m Colors =1B[0;0m=1B[42;3= 4;4m Colors =1B[0;0m=1B[43;34;4m Colors =1B[0;0m=1B[44;34;4m Colors =1B[0;0= m=1B[45;34;4m Colors =1B[0;0m=1B[46;34;4m Colors =1B[0;0m=1B[47;34;4m Color= s =1B[0;0m 34,7 |=1B[40;34;7m Colors =1B[0;0m=1B[41;34;7m Colors =1B[0;0m=1B[42;3= 4;7m Colors =1B[0;0m=1B[43;34;7m Colors =1B[0;0m=1B[44;34;7m Colors =1B[0;0= m=1B[45;34;7m Colors =1B[0;0m=1B[46;34;7m Colors =1B[0;0m=1B[47;34;7m Color= s =1B[0;0m 35,0 |=1B[40;35m Colors =1B[0;0m=1B[41;35m Colors =1B[0;0m=1B[42;35m C= olors =1B[0;0m=1B[43;35m Colors =1B[0;0m=1B[44;35m Colors =1B[0;0m=1B[45;35= m Colors =1B[0;0m=1B[46;35m Colors =1B[0;0m=1B[47;35m Colors =1B[0;0m 35,1 |=1B[40;35;1m Colors =1B[0;0m=1B[41;35;1m Colors =1B[0;0m=1B[42;3= 5;1m Colors =1B[0;0m=1B[43;35;1m Colors =1B[0;0m=1B[44;35;1m Colors =1B[0;0= m=1B[45;35;1m Colors =1B[0;0m=1B[46;35;1m Colors =1B[0;0m=1B[47;35;1m Color= s =1B[0;0m 35,4 |=1B[40;35;4m Colors =1B[0;0m=1B[41;35;4m Colors =1B[0;0m=1B[42;3= 5;4m Colors =1B[0;0m=1B[43;35;4m Colors =1B[0;0m=1B[44;35;4m Colors =1B[0;0= m=1B[45;35;4m Colors =1B[0;0m=1B[46;35;4m Colors =1B[0;0m=1B[47;35;4m Color= s =1B[0;0m 35,7 |=1B[40;35;7m Colors =1B[0;0m=1B[41;35;7m Colors =1B[0;0m=1B[42;3= 5;7m Colors =1B[0;0m=1B[43;35;7m Colors =1B[0;0m=1B[44;35;7m Colors =1B[0;0= m=1B[45;35;7m Colors =1B[0;0m=1B[46;35;7m Colors =1B[0;0m=1B[47;35;7m Color= s =1B[0;0m 36,0 |=1B[40;36m Colors =1B[0;0m=1B[41;36m Colors =1B[0;0m=1B[42;36m C= olors =1B[0;0m=1B[43;36m Colors =1B[0;0m=1B[44;36m Colors =1B[0;0m=1B[45;36= m Colors =1B[0;0m=1B[46;36m Colors =1B[0;0m=1B[47;36m Colors =1B[0;0m 36,1 |=1B[40;36;1m Colors =1B[0;0m=1B[41;36;1m Colors =1B[0;0m=1B[42;3= 6;1m Colors =1B[0;0m=1B[43;36;1m Colors =1B[0;0m=1B[44;36;1m Colors =1B[0;0= m=1B[45;36;1m Colors =1B[0;0m=1B[46;36;1m Colors =1B[0;0m=1B[47;36;1m Color= s =1B[0;0m 36,4 |=1B[40;36;4m Colors =1B[0;0m=1B[41;36;4m Colors =1B[0;0m=1B[42;3= 6;4m Colors =1B[0;0m=1B[43;36;4m Colors =1B[0;0m=1B[44;36;4m Colors =1B[0;0= m=1B[45;36;4m Colors =1B[0;0m=1B[46;36;4m Colors =1B[0;0m=1B[47;36;4m Color= s =1B[0;0m 36,7 |=1B[40;36;7m Colors =1B[0;0m=1B[41;36;7m Colors =1B[0;0m=1B[42;3= 6;7m Colors =1B[0;0m=1B[43;36;7m Colors =1B[0;0m=1B[44;36;7m Colors =1B[0;0= m=1B[45;36;7m Colors =1B[0;0m=1B[46;36;7m Colors =1B[0;0m=1B[47;36;7m Color= s =1B[0;0m 37,0 |=1B[40;37m Colors =1B[0;0m=1B[41;37m Colors =1B[0;0m=1B[42;37m C= olors =1B[0;0m=1B[43;37m Colors =1B[0;0m=1B[44;37m Colors =1B[0;0m=1B[45;37= m Colors =1B[0;0m=1B[46;37m Colors =1B[0;0m=1B[47;37m Colors =1B[0;0m 37,1 |=1B[40;37;1m Colors =1B[0;0m=1B[41;37;1m Colors =1B[0;0m=1B[42;3= 7;1m Colors =1B[0;0m=1B[43;37;1m Colors =1B[0;0m=1B[44;37;1m Colors =1B[0;0= m=1B[45;37;1m Colors =1B[0;0m=1B[46;37;1m Colors =1B[0;0m=1B[47;37;1m Color= s =1B[0;0m 37,4 |=1B[40;37;4m Colors =1B[0;0m=1B[41;37;4m Colors =1B[0;0m=1B[42;3= 7;4m Colors =1B[0;0m=1B[43;37;4m Colors =1B[0;0m=1B[44;37;4m Colors =1B[0;0= m=1B[45;37;4m Colors =1B[0;0m=1B[46;37;4m Colors =1B[0;0m=1B[47;37;4m Color= s =1B[0;0m 37,7 |=1B[40;37;7m Colors =1B[0;0m=1B[41;37;7m Colors =1B[0;0m=1B[42;3= 7;7m Colors =1B[0;0m=1B[43;37;7m Colors =1B[0;0m=1B[44;37;7m Colors =1B[0;0= m=1B[45;37;7m Colors =1B[0;0m=1B[46;37;7m Colors =1B[0;0m=1B[47;37;7m Color= s =1B[0;0m RC 0 PASS: systemtap.examples/general/ansi_colors2 run meta taglines '' tag 'test_support' value '' meta taglines 'test_check: stap -g -p4 badname.stp' tag 'test_check' value = 'stap -g -p4 badname.stp' attempting command stap -g -p4 badname.stp OUT /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/cd/stap_cd4f3a= 94ffc9a7f2766a06e99a86eb5a_11299.ko RC 0 PASS: systemtap.examples/general/badname build meta taglines 'test_installcheck: stap -g badname.stp -c "touch /tmp/myXXXf= ile" 2>&1 | grep denied' tag 'test_installcheck' value 'stap -g badname.stp= -c "touch /tmp/myXXXfile" 2>&1 | grep denied' attempting command stap -g badname.stp -c "touch /tmp/myXXXfile" 2>&1 | gre= p denied OUT child process exited abnormally RC 1 FAIL: systemtap.examples/general/badname run meta taglines '' tag 'test_support' value '' meta taglines 'test_check: stap -p4 graphs.stp' tag 'test_check' value 'sta= p -p4 graphs.stp' attempting command stap -p4 graphs.stp OUT /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/81/stap_81bacd= 569fbb2a6042579d09b67297c9_4832.ko RC 0 PASS: systemtap.examples/general/graphs build meta taglines 'test_installcheck: stap graphs.stp -c "sleep 0.2"' tag 'test= _installcheck' value 'stap graphs.stp -c "sleep 0.2"' attempting command stap graphs.stp -c "sleep 0.2" OUT=20 RC 0 PASS: systemtap.examples/general/graphs run meta taglines '' tag 'test_support' value '' meta taglines 'test_check: stap -p4 helloworld.stp' tag 'test_check' value = 'stap -p4 helloworld.stp' attempting command stap -p4 helloworld.stp OUT /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/d5/stap_d50566= 58c444a0e7a245a67fe2fded4c_757.ko RC 0 PASS: systemtap.examples/general/helloworld build meta taglines 'test_installcheck: stap helloworld.stp' tag 'test_installche= ck' value 'stap helloworld.stp' attempting command stap helloworld.stp OUT hello world RC 0 PASS: systemtap.examples/general/helloworld run meta taglines '' tag 'test_support' value '' meta taglines 'test_check: stap -p4 para-callgraph-verbose.stp 'kernel.func= tion("*@fs/proc*.c")' 'kernel.function("vfs_read")'' tag 'test_check' value= 'stap -p4 para-callgraph-verbose.stp 'kernel.function("*@fs/proc*.c")' 'ke= rnel.function("vfs_read")'' attempting command stap -p4 para-callgraph-verbose.stp 'kernel.function("*@= fs/proc*.c")' 'kernel.function("vfs_read")' OUT /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/d6/stap_d6d509= 2d7e22e7d09f1926c5f6a4fd18_756278.ko RC 0 PASS: systemtap.examples/general/para-callgraph-verbose build meta taglines 'test_installcheck: stap para-callgraph-verbose.stp 'kernel.f= unction("*@fs/proc*.c")' 'kernel.function("vfs_read")' -c "cat /proc/sys/vm= /*"' tag 'test_installcheck' value 'stap para-callgraph-verbose.stp 'kernel= .function("*@fs/proc*.c")' 'kernel.function("vfs_read")' -c "cat /proc/sys/= vm/*"' attempting command stap para-callgraph-verbose.stp 'kernel.function("*@fs/p= roc*.c")' 'kernel.function("vfs_read")' -c "cat /proc/sys/vm/*" OUT 0 cat: /proc/sys/vm/compact_memory: Permission denied 0 10 0 3000 20 500 0 500 0 0 0 0 256 32 65530 9097 5 1 4096 0 0 0 default 0 0 0 50 3 0 0 0 1 60 100 0 0 0 cat(6903):->proc_sys_read filp=3D{.f_u=3D{.fu_list=3D{.next=3D0xc000= 000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D0xc000000= 136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000001392a23= 80, .dentry=3D0xc0000000eaac07a8}, .f_op=3D0xc0000000005c3840, .f_lock=3D{.= raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65536, .f_m= ode=3D29, .f_pos=3D0, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}}, .pid= =3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D0xc0000= 00131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pages=3D2= , .mmap_miss=3D0,=20 20 cat(6903): ->proc_sys_call_handler filp=3D{.f_u=3D{.fu_list=3D{.next= =3D0xc000000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D= 0xc000000136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000= 001392a2380, .dentry=3D0xc0000000eaac07a8}, .f_op=3D0xc0000000005c3840, .f_= lock=3D{.raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65= 536, .f_mode=3D29, .f_pos=3D0, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}= }, .pid=3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D= 0xc000000131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pa= ges=3D2, .mmap_miss=3D0,=20 36 cat(6903): ->grab_header inode=3D{.i_hash=3D{.next=3D0x0, .pprev=3D= 0x0}, .i_list=3D{.next=3D0xc000000138498560, .prev=3D0xc0000001384ab250}, .= i_sb_list=3D{.next=3D0xc000000138498570, .prev=3D0xc0000001384ab260}, .i_de= ntry=3D{.next=3D0xc0000000eaac0818, .prev=3D0xc0000000eaac0818}, .i_ino=3D1= 04687, .i_count=3D{.counter=3D1}, .i_nlink=3D1, .i_uid=3D0, .i_gid=3D0, .i_= rdev=3D0, .i_version=3D0, .i_size=3D0, .i_atime=3D{.tv_sec=3D1296666942, .t= v_nsec=3D322727223}, .i_mtime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223= }, .i_ctime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223}, .i_blocks=3D0, = .i_blkbi 42 cat(6903): <-grab_header return=3D0xc000000000da7180 57 cat(6903): <-proc_sys_call_handler return=3D0x2 60 cat(6903):<-proc_sys_read return=3D0x2 0 cat(6903):->proc_sys_read filp=3D{.f_u=3D{.fu_list=3D{.next=3D0xc000= 000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D0xc000000= 136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000001392a23= 80, .dentry=3D0xc0000000eaac07a8}, .f_op=3D0xc0000000005c3840, .f_lock=3D{.= raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65536, .f_m= ode=3D29, .f_pos=3D2, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}}, .pid= =3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D0xc0000= 00131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pages=3D2= , .mmap_miss=3D0,=20 21 cat(6903): ->proc_sys_call_handler filp=3D{.f_u=3D{.fu_list=3D{.next= =3D0xc000000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D= 0xc000000136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000= 001392a2380, .dentry=3D0xc0000000eaac07a8}, .f_op=3D0xc0000000005c3840, .f_= lock=3D{.raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65= 536, .f_mode=3D29, .f_pos=3D2, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}= }, .pid=3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D= 0xc000000131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pa= ges=3D2, .mmap_miss=3D0,=20 40 cat(6903): ->grab_header inode=3D{.i_hash=3D{.next=3D0x0, .pprev=3D= 0x0}, .i_list=3D{.next=3D0xc000000138498560, .prev=3D0xc0000001384ab250}, .= i_sb_list=3D{.next=3D0xc000000138498570, .prev=3D0xc0000001384ab260}, .i_de= ntry=3D{.next=3D0xc0000000eaac0818, .prev=3D0xc0000000eaac0818}, .i_ino=3D1= 04687, .i_count=3D{.counter=3D1}, .i_nlink=3D1, .i_uid=3D0, .i_gid=3D0, .i_= rdev=3D0, .i_version=3D0, .i_size=3D0, .i_atime=3D{.tv_sec=3D1296666942, .t= v_nsec=3D322727223}, .i_mtime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223= }, .i_ctime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223}, .i_blocks=3D0, = .i_blkbi 47 cat(6903): <-grab_header return=3D0xc000000000da7180 52 cat(6903): <-proc_sys_call_handler return=3D0x0 55 cat(6903):<-proc_sys_read return=3D0x0 0 cat(6903):->proc_sys_read filp=3D{.f_u=3D{.fu_list=3D{.next=3D0xc000= 000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D0xc000000= 136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000001392a23= 80, .dentry=3D0xc0000000eaac0ce8}, .f_op=3D0xc0000000005c3840, .f_lock=3D{.= raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65536, .f_m= ode=3D29, .f_pos=3D0, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}}, .pid= =3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D0xc0000= 00131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pages=3D2= , .mmap_miss=3D0,=20 18 cat(6903): ->proc_sys_call_handler filp=3D{.f_u=3D{.fu_list=3D{.next= =3D0xc000000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D= 0xc000000136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000= 001392a2380, .dentry=3D0xc0000000eaac0ce8}, .f_op=3D0xc0000000005c3840, .f_= lock=3D{.raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65= 536, .f_mode=3D29, .f_pos=3D0, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}= }, .pid=3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D= 0xc000000131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pa= ges=3D2, .mmap_miss=3D0,=20 35 cat(6903): ->grab_header inode=3D{.i_hash=3D{.next=3D0x0, .pprev=3D= 0x0}, .i_list=3D{.next=3D0xc00000013849e330, .prev=3D0xc00000013849c318}, .= i_sb_list=3D{.next=3D0xc00000013849e340, .prev=3D0xc00000013849c328}, .i_de= ntry=3D{.next=3D0xc0000000eaac0d58, .prev=3D0xc0000000eaac0d58}, .i_ino=3D1= 04670, .i_count=3D{.counter=3D1}, .i_nlink=3D1, .i_uid=3D0, .i_gid=3D0, .i_= rdev=3D0, .i_version=3D0, .i_size=3D0, .i_atime=3D{.tv_sec=3D1296666942, .t= v_nsec=3D322727223}, .i_mtime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223= }, .i_ctime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223}, .i_blocks=3D0, = .i_blkbi 40 cat(6903): <-grab_header return=3D0xc000000000da7180 46 cat(6903): <-proc_sys_call_handler return=3D0x2 49 cat(6903):<-proc_sys_read return=3D0x2 0 cat(6903):->proc_sys_read filp=3D{.f_u=3D{.fu_list=3D{.next=3D0xc000= 000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D0xc000000= 136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000001392a23= 80, .dentry=3D0xc0000000eaac0ce8}, .f_op=3D0xc0000000005c3840, .f_lock=3D{.= raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65536, .f_m= ode=3D29, .f_pos=3D2, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}}, .pid= =3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D0xc0000= 00131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pages=3D2= , .mmap_miss=3D0,=20 23 cat(6903): ->proc_sys_call_handler filp=3D{.f_u=3D{.fu_list=3D{.next= =3D0xc000000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D= 0xc000000136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000= 001392a2380, .dentry=3D0xc0000000eaac0ce8}, .f_op=3D0xc0000000005c3840, .f_= lock=3D{.raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65= 536, .f_mode=3D29, .f_pos=3D2, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}= }, .pid=3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D= 0xc000000131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pa= ges=3D2, .mmap_miss=3D0,=20 42 cat(6903): ->grab_header inode=3D{.i_hash=3D{.next=3D0x0, .pprev=3D= 0x0}, .i_list=3D{.next=3D0xc00000013849e330, .prev=3D0xc00000013849c318}, .= i_sb_list=3D{.next=3D0xc00000013849e340, .prev=3D0xc00000013849c328}, .i_de= ntry=3D{.next=3D0xc0000000eaac0d58, .prev=3D0xc0000000eaac0d58}, .i_ino=3D1= 04670, .i_count=3D{.counter=3D1}, .i_nlink=3D1, .i_uid=3D0, .i_gid=3D0, .i_= rdev=3D0, .i_version=3D0, .i_size=3D0, .i_atime=3D{.tv_sec=3D1296666942, .t= v_nsec=3D322727223}, .i_mtime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223= }, .i_ctime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223}, .i_blocks=3D0, = .i_blkbi 49 cat(6903): <-grab_header return=3D0xc000000000da7180 57 cat(6903): <-proc_sys_call_handler return=3D0x0 60 cat(6903):<-proc_sys_read return=3D0x0 0 cat(6903):->proc_sys_read filp=3D{.f_u=3D{.fu_list=3D{.next=3D0xc000= 000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D0xc000000= 136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000001392a23= 80, .dentry=3D0xc0000000eaac0aa8}, .f_op=3D0xc0000000005c3840, .f_lock=3D{.= raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65536, .f_m= ode=3D29, .f_pos=3D0, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}}, .pid= =3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D0xc0000= 00131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pages=3D2= , .mmap_miss=3D0,=20 19 cat(6903): ->proc_sys_call_handler filp=3D{.f_u=3D{.fu_list=3D{.next= =3D0xc000000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D= 0xc000000136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000= 001392a2380, .dentry=3D0xc0000000eaac0aa8}, .f_op=3D0xc0000000005c3840, .f_= lock=3D{.raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65= 536, .f_mode=3D29, .f_pos=3D0, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}= }, .pid=3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D= 0xc000000131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pa= ges=3D2, .mmap_miss=3D0,=20 36 cat(6903): ->grab_header inode=3D{.i_hash=3D{.next=3D0x0, .pprev=3D= 0x0}, .i_list=3D{.next=3D0xc00000013849cf70, .prev=3D0xc00000013849ed10}, .= i_sb_list=3D{.next=3D0xc00000013849cf80, .prev=3D0xc00000013849ed20}, .i_de= ntry=3D{.next=3D0xc0000000eaac0b18, .prev=3D0xc0000000eaac0b18}, .i_ino=3D1= 04669, .i_count=3D{.counter=3D1}, .i_nlink=3D1, .i_uid=3D0, .i_gid=3D0, .i_= rdev=3D0, .i_version=3D0, .i_size=3D0, .i_atime=3D{.tv_sec=3D1296666942, .t= v_nsec=3D322727223}, .i_mtime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223= }, .i_ctime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223}, .i_blocks=3D0, = .i_blkbi 41 cat(6903): <-grab_header return=3D0xc000000000da7180 47 cat(6903): <-proc_sys_call_handler return=3D0x3 50 cat(6903):<-proc_sys_read return=3D0x3 0 cat(6903):->proc_sys_read filp=3D{.f_u=3D{.fu_list=3D{.next=3D0xc000= 000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D0xc000000= 136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000001392a23= 80, .dentry=3D0xc0000000eaac0aa8}, .f_op=3D0xc0000000005c3840, .f_lock=3D{.= raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65536, .f_m= ode=3D29, .f_pos=3D3, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}}, .pid= =3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D0xc0000= 00131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pages=3D2= , .mmap_miss=3D0,=20 22 cat(6903): ->proc_sys_call_handler filp=3D{.f_u=3D{.fu_list=3D{.next= =3D0xc000000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D= 0xc000000136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000= 001392a2380, .dentry=3D0xc0000000eaac0aa8}, .f_op=3D0xc0000000005c3840, .f_= lock=3D{.raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65= 536, .f_mode=3D29, .f_pos=3D3, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}= }, .pid=3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D= 0xc000000131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pa= ges=3D2, .mmap_miss=3D0,=20 41 cat(6903): ->grab_header inode=3D{.i_hash=3D{.next=3D0x0, .pprev=3D= 0x0}, .i_list=3D{.next=3D0xc00000013849cf70, .prev=3D0xc00000013849ed10}, .= i_sb_list=3D{.next=3D0xc00000013849cf80, .prev=3D0xc00000013849ed20}, .i_de= ntry=3D{.next=3D0xc0000000eaac0b18, .prev=3D0xc0000000eaac0b18}, .i_ino=3D1= 04669, .i_count=3D{.counter=3D1}, .i_nlink=3D1, .i_uid=3D0, .i_gid=3D0, .i_= rdev=3D0, .i_version=3D0, .i_size=3D0, .i_atime=3D{.tv_sec=3D1296666942, .t= v_nsec=3D322727223}, .i_mtime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223= }, .i_ctime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223}, .i_blocks=3D0, = .i_blkbi 49 cat(6903): <-grab_header return=3D0xc000000000da7180 56 cat(6903): <-proc_sys_call_handler return=3D0x0 70 cat(6903):<-proc_sys_read return=3D0x0 0 cat(6903):->proc_sys_read filp=3D{.f_u=3D{.fu_list=3D{.next=3D0xc000= 000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D0xc000000= 136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000001392a23= 80, .dentry=3D0xc0000000eaac36e8}, .f_op=3D0xc0000000005c3840, .f_lock=3D{.= raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65536, .f_m= ode=3D29, .f_pos=3D0, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}}, .pid= =3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D0xc0000= 00131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pages=3D2= , .mmap_miss=3D0,=20 18 cat(6903): ->proc_sys_call_handler filp=3D{.f_u=3D{.fu_list=3D{.next= =3D0xc000000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D= 0xc000000136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000= 001392a2380, .dentry=3D0xc0000000eaac36e8}, .f_op=3D0xc0000000005c3840, .f_= lock=3D{.raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65= 536, .f_mode=3D29, .f_pos=3D0, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}= }, .pid=3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D= 0xc000000131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pa= ges=3D2, .mmap_miss=3D0,=20 35 cat(6903): ->grab_header inode=3D{.i_hash=3D{.next=3D0x0, .pprev=3D= 0x0}, .i_list=3D{.next=3D0xc00000013849c318, .prev=3D0xc000000138499e10}, .= i_sb_list=3D{.next=3D0xc00000013849c328, .prev=3D0xc000000138499e20}, .i_de= ntry=3D{.next=3D0xc0000000eaac3758, .prev=3D0xc0000000eaac3758}, .i_ino=3D1= 04672, .i_count=3D{.counter=3D1}, .i_nlink=3D1, .i_uid=3D0, .i_gid=3D0, .i_= rdev=3D0, .i_version=3D0, .i_size=3D0, .i_atime=3D{.tv_sec=3D1296666942, .t= v_nsec=3D322727223}, .i_mtime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223= }, .i_ctime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223}, .i_blocks=3D0, = .i_blkbi 41 cat(6903): <-grab_header return=3D0xc000000000da7180 46 cat(6903): <-proc_sys_call_handler return=3D0x2 49 cat(6903):<-proc_sys_read return=3D0x2 0 cat(6903):->proc_sys_read filp=3D{.f_u=3D{.fu_list=3D{.next=3D0xc000= 000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D0xc000000= 136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000001392a23= 80, .dentry=3D0xc0000000eaac36e8}, .f_op=3D0xc0000000005c3840, .f_lock=3D{.= raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65536, .f_m= ode=3D29, .f_pos=3D2, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}}, .pid= =3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D0xc0000= 00131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pages=3D2= , .mmap_miss=3D0,=20 22 cat(6903): ->proc_sys_call_handler filp=3D{.f_u=3D{.fu_list=3D{.next= =3D0xc000000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D= 0xc000000136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000= 001392a2380, .dentry=3D0xc0000000eaac36e8}, .f_op=3D0xc0000000005c3840, .f_= lock=3D{.raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65= 536, .f_mode=3D29, .f_pos=3D2, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}= }, .pid=3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D= 0xc000000131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pa= ges=3D2, .mmap_miss=3D0,=20 42 cat(6903): ->grab_header inode=3D{.i_hash=3D{.next=3D0x0, .pprev=3D= 0x0}, .i_list=3D{.next=3D0xc00000013849c318, .prev=3D0xc000000138499e10}, .= i_sb_list=3D{.next=3D0xc00000013849c328, .prev=3D0xc000000138499e20}, .i_de= ntry=3D{.next=3D0xc0000000eaac3758, .prev=3D0xc0000000eaac3758}, .i_ino=3D1= 04672, .i_count=3D{.counter=3D1}, .i_nlink=3D1, .i_uid=3D0, .i_gid=3D0, .i_= rdev=3D0, .i_version=3D0, .i_size=3D0, .i_atime=3D{.tv_sec=3D1296666942, .t= v_nsec=3D322727223}, .i_mtime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223= }, .i_ctime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223}, .i_blocks=3D0, = .i_blkbi 49 cat(6903): <-grab_header return=3D0xc000000000da7180 56 cat(6903): <-proc_sys_call_handler return=3D0x0 60 cat(6903):<-proc_sys_read return=3D0x0 0 cat(6903):->proc_sys_read filp=3D{.f_u=3D{.fu_list=3D{.next=3D0xc000= 000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D0xc000000= 136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000001392a23= 80, .dentry=3D0xc0000000eaacb968}, .f_op=3D0xc0000000005c3840, .f_lock=3D{.= raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65536, .f_m= ode=3D29, .f_pos=3D0, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}}, .pid= =3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D0xc0000= 00131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pages=3D2= , .mmap_miss=3D0,=20 18 cat(6903): ->proc_sys_call_handler filp=3D{.f_u=3D{.fu_list=3D{.next= =3D0xc000000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D= 0xc000000136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000= 001392a2380, .dentry=3D0xc0000000eaacb968}, .f_op=3D0xc0000000005c3840, .f_= lock=3D{.raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65= 536, .f_mode=3D29, .f_pos=3D0, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}= }, .pid=3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D= 0xc000000131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pa= ges=3D2, .mmap_miss=3D0,=20 35 cat(6903): ->grab_header inode=3D{.i_hash=3D{.next=3D0x0, .pprev=3D= 0x0}, .i_list=3D{.next=3D0xc000000138499e10, .prev=3D0xc000000138498070}, .= i_sb_list=3D{.next=3D0xc000000138499e20, .prev=3D0xc000000138498080}, .i_de= ntry=3D{.next=3D0xc0000000eaacb9d8, .prev=3D0xc0000000eaacb9d8}, .i_ino=3D1= 04674, .i_count=3D{.counter=3D1}, .i_nlink=3D1, .i_uid=3D0, .i_gid=3D0, .i_= rdev=3D0, .i_version=3D0, .i_size=3D0, .i_atime=3D{.tv_sec=3D1296666942, .t= v_nsec=3D322727223}, .i_mtime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223= }, .i_ctime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223}, .i_blocks=3D0, = .i_blkbi 41 cat(6903): <-grab_header return=3D0xc000000000da7180 46 cat(6903): <-proc_sys_call_handler return=3D0x5 49 cat(6903):<-proc_sys_read return=3D0x5 0 cat(6903):->proc_sys_read filp=3D{.f_u=3D{.fu_list=3D{.next=3D0xc000= 000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D0xc000000= 136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000001392a23= 80, .dentry=3D0xc0000000eaacb968}, .f_op=3D0xc0000000005c3840, .f_lock=3D{.= raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65536, .f_m= ode=3D29, .f_pos=3D5, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}}, .pid= =3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D0xc0000= 00131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pages=3D2= , .mmap_miss=3D0,=20 22 cat(6903): ->proc_sys_call_handler filp=3D{.f_u=3D{.fu_list=3D{.next= =3D0xc000000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D= 0xc000000136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000= 001392a2380, .dentry=3D0xc0000000eaacb968}, .f_op=3D0xc0000000005c3840, .f_= lock=3D{.raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65= 536, .f_mode=3D29, .f_pos=3D5, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}= }, .pid=3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D= 0xc000000131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pa= ges=3D2, .mmap_miss=3D0,=20 42 cat(6903): ->grab_header inode=3D{.i_hash=3D{.next=3D0x0, .pprev=3D= 0x0}, .i_list=3D{.next=3D0xc000000138499e10, .prev=3D0xc000000138498070}, .= i_sb_list=3D{.next=3D0xc000000138499e20, .prev=3D0xc000000138498080}, .i_de= ntry=3D{.next=3D0xc0000000eaacb9d8, .prev=3D0xc0000000eaacb9d8}, .i_ino=3D1= 04674, .i_count=3D{.counter=3D1}, .i_nlink=3D1, .i_uid=3D0, .i_gid=3D0, .i_= rdev=3D0, .i_version=3D0, .i_size=3D0, .i_atime=3D{.tv_sec=3D1296666942, .t= v_nsec=3D322727223}, .i_mtime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223= }, .i_ctime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223}, .i_blocks=3D0, = .i_blkbi 49 cat(6903): <-grab_header return=3D0xc000000000da7180 56 cat(6903): <-proc_sys_call_handler return=3D0x0 60 cat(6903):<-proc_sys_read return=3D0x0 0 cat(6903):->proc_sys_read filp=3D{.f_u=3D{.fu_list=3D{.next=3D0xc000= 000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D0xc000000= 136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000001392a23= 80, .dentry=3D0xc0000000eaac0f28}, .f_op=3D0xc0000000005c3840, .f_lock=3D{.= raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65536, .f_m= ode=3D29, .f_pos=3D0, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}}, .pid= =3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D0xc0000= 00131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pages=3D2= , .mmap_miss=3D0,=20 18 cat(6903): ->proc_sys_call_handler filp=3D{.f_u=3D{.fu_list=3D{.next= =3D0xc000000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D= 0xc000000136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000= 001392a2380, .dentry=3D0xc0000000eaac0f28}, .f_op=3D0xc0000000005c3840, .f_= lock=3D{.raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65= 536, .f_mode=3D29, .f_pos=3D0, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}= }, .pid=3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D= 0xc000000131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pa= ges=3D2, .mmap_miss=3D0,=20 35 cat(6903): ->grab_header inode=3D{.i_hash=3D{.next=3D0x0, .pprev=3D= 0x0}, .i_list=3D{.next=3D0xc00000013849ed10, .prev=3D0xc00000013849bbb0}, .= i_sb_list=3D{.next=3D0xc00000013849ed20, .prev=3D0xc00000013849bbc0}, .i_de= ntry=3D{.next=3D0xc0000000eaac0f98, .prev=3D0xc0000000eaac0f98}, .i_ino=3D1= 04671, .i_count=3D{.counter=3D1}, .i_nlink=3D1, .i_uid=3D0, .i_gid=3D0, .i_= rdev=3D0, .i_version=3D0, .i_size=3D0, .i_atime=3D{.tv_sec=3D1296666942, .t= v_nsec=3D322727223}, .i_mtime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223= }, .i_ctime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223}, .i_blocks=3D0, = .i_blkbi 41 cat(6903): <-grab_header return=3D0xc000000000da7180 46 cat(6903): <-proc_sys_call_handler return=3D0x3 49 cat(6903):<-proc_sys_read return=3D0x3 0 cat(6903):->proc_sys_read filp=3D{.f_u=3D{.fu_list=3D{.next=3D0xc000= 000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D0xc000000= 136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000001392a23= 80, .dentry=3D0xc0000000eaac0f28}, .f_op=3D0xc0000000005c3840, .f_lock=3D{.= raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65536, .f_m= ode=3D29, .f_pos=3D3, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}}, .pid= =3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D0xc0000= 00131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pages=3D2= , .mmap_miss=3D0,=20 21 cat(6903): ->proc_sys_call_handler filp=3D{.f_u=3D{.fu_list=3D{.next= =3D0xc000000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D= 0xc000000136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000= 001392a2380, .dentry=3D0xc0000000eaac0f28}, .f_op=3D0xc0000000005c3840, .f_= lock=3D{.raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65= 536, .f_mode=3D29, .f_pos=3D3, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}= }, .pid=3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D= 0xc000000131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pa= ges=3D2, .mmap_miss=3D0,=20 40 cat(6903): ->grab_header inode=3D{.i_hash=3D{.next=3D0x0, .pprev=3D= 0x0}, .i_list=3D{.next=3D0xc00000013849ed10, .prev=3D0xc00000013849bbb0}, .= i_sb_list=3D{.next=3D0xc00000013849ed20, .prev=3D0xc00000013849bbc0}, .i_de= ntry=3D{.next=3D0xc0000000eaac0f98, .prev=3D0xc0000000eaac0f98}, .i_ino=3D1= 04671, .i_count=3D{.counter=3D1}, .i_nlink=3D1, .i_uid=3D0, .i_gid=3D0, .i_= rdev=3D0, .i_version=3D0, .i_size=3D0, .i_atime=3D{.tv_sec=3D1296666942, .t= v_nsec=3D322727223}, .i_mtime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223= }, .i_ctime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223}, .i_blocks=3D0, = .i_blkbi 47 cat(6903): <-grab_header return=3D0xc000000000da7180 54 cat(6903): <-proc_sys_call_handler return=3D0x0 58 cat(6903):<-proc_sys_read return=3D0x0 0 rsyslogd(1054):->proc_reg_read file=3D{.f_u=3D{.fu_list=3D{.next=3D0= xc00000013a0c9e60, .prev=3D0xc000000136d7ef80}, .fu_rcuhead=3D{.next=3D0xc0= 0000013a0c9e60, .func=3D0xc000000136d7ef80}}, .f_path=3D{.mnt=3D0xc00000013= 92a2380, .dentry=3D0xc0000001381b40a8}, .f_op=3D0xc0000000005c2240, .f_lock= =3D{.raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D2}, .f_flags=3D589824= , .f_mode=3D29, .f_pos=3D0, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}}, = .pid=3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D0xc= 000000139392d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pages= =3D2, .mmap_miss=3D0, 19 rsyslogd(1054): ->kmsg_read file=3D{.f_u=3D{.fu_list=3D{.next=3D0xc0= 0000013a0c9e60, .prev=3D0xc000000136d7ef80}, .fu_rcuhead=3D{.next=3D0xc0000= 0013a0c9e60, .func=3D0xc000000136d7ef80}}, .f_path=3D{.mnt=3D0xc0000001392a= 2380, .dentry=3D0xc0000001381b40a8}, .f_op=3D0xc0000000005c2240, .f_lock=3D= {.raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D2}, .f_flags=3D589824, .= f_mode=3D29, .f_pos=3D0, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}}, .pi= d=3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D0xc000= 000139392d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pages=3D= 2, .mmap_miss=3D0, 0 cat(6903):->proc_sys_read filp=3D{.f_u=3D{.fu_list=3D{.next=3D0xc000= 000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D0xc000000= 136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000001392a23= 80, .dentry=3D0xc0000000eaac5668}, .f_op=3D0xc0000000005c3840, .f_lock=3D{.= raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65536, .f_m= ode=3D29, .f_pos=3D0, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}}, .pid= =3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D0xc0000= 00131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pages=3D2= , .mmap_miss=3D0,=20 19 cat(6903): ->proc_sys_call_handler filp=3D{.f_u=3D{.fu_list=3D{.next= =3D0xc000000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D= 0xc000000136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000= 001392a2380, .dentry=3D0xc0000000eaac5668}, .f_op=3D0xc0000000005c3840, .f_= lock=3D{.raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65= 536, .f_mode=3D29, .f_pos=3D0, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}= }, .pid=3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D= 0xc000000131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pa= ges=3D2, .mmap_miss=3D0,=20 35 cat(6903): ->grab_header inode=3D{.i_hash=3D{.next=3D0x0, .pprev=3D= 0x0}, .i_list=3D{.next=3D0xc00000013849bbb0, .prev=3D0xc000000138499b98}, .= i_sb_list=3D{.next=3D0xc00000013849bbc0, .prev=3D0xc000000138499ba8}, .i_de= ntry=3D{.next=3D0xc0000000eaac56d8, .prev=3D0xc0000000eaac56d8}, .i_ino=3D1= 04673, .i_count=3D{.counter=3D1}, .i_nlink=3D1, .i_uid=3D0, .i_gid=3D0, .i_= rdev=3D0, .i_version=3D0, .i_size=3D0, .i_atime=3D{.tv_sec=3D1296666942, .t= v_nsec=3D322727223}, .i_mtime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223= }, .i_ctime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223}, .i_blocks=3D0, = .i_blkbi 41 cat(6903): <-grab_header return=3D0xc000000000da7180 48 cat(6903): <-proc_sys_call_handler return=3D0x4 51 cat(6903):<-proc_sys_read return=3D0x4 0 cat(6903):->proc_sys_read filp=3D{.f_u=3D{.fu_list=3D{.next=3D0xc000= 000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D0xc000000= 136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000001392a23= 80, .dentry=3D0xc0000000eaac5668}, .f_op=3D0xc0000000005c3840, .f_lock=3D{.= raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65536, .f_m= ode=3D29, .f_pos=3D4, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}}, .pid= =3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D0xc0000= 00131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pages=3D2= , .mmap_miss=3D0,=20 22 cat(6903): ->proc_sys_call_handler filp=3D{.f_u=3D{.fu_list=3D{.next= =3D0xc000000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D= 0xc000000136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000= 001392a2380, .dentry=3D0xc0000000eaac5668}, .f_op=3D0xc0000000005c3840, .f_= lock=3D{.raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65= 536, .f_mode=3D29, .f_pos=3D4, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}= }, .pid=3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D= 0xc000000131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pa= ges=3D2, .mmap_miss=3D0,=20 42 cat(6903): ->grab_header inode=3D{.i_hash=3D{.next=3D0x0, .pprev=3D= 0x0}, .i_list=3D{.next=3D0xc00000013849bbb0, .prev=3D0xc000000138499b98}, .= i_sb_list=3D{.next=3D0xc00000013849bbc0, .prev=3D0xc000000138499ba8}, .i_de= ntry=3D{.next=3D0xc0000000eaac56d8, .prev=3D0xc0000000eaac56d8}, .i_ino=3D1= 04673, .i_count=3D{.counter=3D1}, .i_nlink=3D1, .i_uid=3D0, .i_gid=3D0, .i_= rdev=3D0, .i_version=3D0, .i_size=3D0, .i_atime=3D{.tv_sec=3D1296666942, .t= v_nsec=3D322727223}, .i_mtime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223= }, .i_ctime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223}, .i_blocks=3D0, = .i_blkbi 49 cat(6903): <-grab_header return=3D0xc000000000da7180 56 cat(6903): <-proc_sys_call_handler return=3D0x0 70 cat(6903):<-proc_sys_read return=3D0x0 0 cat(6903):->proc_sys_read filp=3D{.f_u=3D{.fu_list=3D{.next=3D0xc000= 000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D0xc000000= 136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000001392a23= 80, .dentry=3D0xc0000000eaacf328}, .f_op=3D0xc0000000005c3840, .f_lock=3D{.= raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65536, .f_m= ode=3D29, .f_pos=3D0, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}}, .pid= =3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D0xc0000= 00131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pages=3D2= , .mmap_miss=3D0,=20 19 cat(6903): ->proc_sys_call_handler filp=3D{.f_u=3D{.fu_list=3D{.next= =3D0xc000000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D= 0xc000000136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000= 001392a2380, .dentry=3D0xc0000000eaacf328}, .f_op=3D0xc0000000005c3840, .f_= lock=3D{.raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65= 536, .f_mode=3D29, .f_pos=3D0, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}= }, .pid=3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D= 0xc000000131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pa= ges=3D2, .mmap_miss=3D0,=20 35 cat(6903): ->grab_header inode=3D{.i_hash=3D{.next=3D0x0, .pprev=3D= 0x0}, .i_list=3D{.next=3D0xc000000138499920, .prev=3D0xc00000013849f478}, .= i_sb_list=3D{.next=3D0xc000000138499930, .prev=3D0xc00000013849f488}, .i_de= ntry=3D{.next=3D0xc0000000eaacf398, .prev=3D0xc0000000eaacf398}, .i_ino=3D1= 04682, .i_count=3D{.counter=3D1}, .i_nlink=3D1, .i_uid=3D0, .i_gid=3D0, .i_= rdev=3D0, .i_version=3D0, .i_size=3D0, .i_atime=3D{.tv_sec=3D1296666942, .t= v_nsec=3D322727223}, .i_mtime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223= }, .i_ctime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223}, .i_blocks=3D0, = .i_blkbi 41 cat(6903): <-grab_header return=3D0xc000000000da7180 47 cat(6903): <-proc_sys_call_handler return=3D0x2 50 cat(6903):<-proc_sys_read return=3D0x2 0 cat(6903):->proc_sys_read filp=3D{.f_u=3D{.fu_list=3D{.next=3D0xc000= 000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D0xc000000= 136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000001392a23= 80, .dentry=3D0xc0000000eaacf328}, .f_op=3D0xc0000000005c3840, .f_lock=3D{.= raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65536, .f_m= ode=3D29, .f_pos=3D2, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}}, .pid= =3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D0xc0000= 00131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pages=3D2= , .mmap_miss=3D0,=20 21 cat(6903): ->proc_sys_call_handler filp=3D{.f_u=3D{.fu_list=3D{.next= =3D0xc000000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D= 0xc000000136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000= 001392a2380, .dentry=3D0xc0000000eaacf328}, .f_op=3D0xc0000000005c3840, .f_= lock=3D{.raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65= 536, .f_mode=3D29, .f_pos=3D2, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}= }, .pid=3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D= 0xc000000131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pa= ges=3D2, .mmap_miss=3D0,=20 40 cat(6903): ->grab_header inode=3D{.i_hash=3D{.next=3D0x0, .pprev=3D= 0x0}, .i_list=3D{.next=3D0xc000000138499920, .prev=3D0xc00000013849f478}, .= i_sb_list=3D{.next=3D0xc000000138499930, .prev=3D0xc00000013849f488}, .i_de= ntry=3D{.next=3D0xc0000000eaacf398, .prev=3D0xc0000000eaacf398}, .i_ino=3D1= 04682, .i_count=3D{.counter=3D1}, .i_nlink=3D1, .i_uid=3D0, .i_gid=3D0, .i_= rdev=3D0, .i_version=3D0, .i_size=3D0, .i_atime=3D{.tv_sec=3D1296666942, .t= v_nsec=3D322727223}, .i_mtime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223= }, .i_ctime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223}, .i_blocks=3D0, = .i_blkbi 47 cat(6903): <-grab_header return=3D0xc000000000da7180 55 cat(6903): <-proc_sys_call_handler return=3D0x0 59 cat(6903):<-proc_sys_read return=3D0x0 0 cat(6903):->proc_sys_read filp=3D{.f_u=3D{.fu_list=3D{.next=3D0xc000= 000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D0xc000000= 136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000001392a23= 80, .dentry=3D0xc0000000eaacdbe8}, .f_op=3D0xc0000000005c3840, .f_lock=3D{.= raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65536, .f_m= ode=3D29, .f_pos=3D0, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}}, .pid= =3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D0xc0000= 00131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pages=3D2= , .mmap_miss=3D0,=20 19 cat(6903): ->proc_sys_call_handler filp=3D{.f_u=3D{.fu_list=3D{.next= =3D0xc000000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D= 0xc000000136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000= 001392a2380, .dentry=3D0xc0000000eaacdbe8}, .f_op=3D0xc0000000005c3840, .f_= lock=3D{.raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65= 536, .f_mode=3D29, .f_pos=3D0, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}= }, .pid=3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D= 0xc000000131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pa= ges=3D2, .mmap_miss=3D0,=20 35 cat(6903): ->grab_header inode=3D{.i_hash=3D{.next=3D0x0, .pprev=3D= 0x0}, .i_list=3D{.next=3D0xc00000013849b448, .prev=3D0xc00000013849b6c0}, .= i_sb_list=3D{.next=3D0xc00000013849b458, .prev=3D0xc00000013849b6d0}, .i_de= ntry=3D{.next=3D0xc0000000eaacdc58, .prev=3D0xc0000000eaacdc58}, .i_ino=3D1= 04664, .i_count=3D{.counter=3D1}, .i_nlink=3D1, .i_uid=3D0, .i_gid=3D0, .i_= rdev=3D0, .i_version=3D0, .i_size=3D0, .i_atime=3D{.tv_sec=3D1296666942, .t= v_nsec=3D322727223}, .i_mtime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223= }, .i_ctime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223}, .i_blocks=3D0, = .i_blkbi 41 cat(6903): <-grab_header return=3D0xc000000000da7180 47 cat(6903): <-proc_sys_call_handler return=3D0x4 50 cat(6903):<-proc_sys_read return=3D0x4 0 cat(6903):->proc_sys_read filp=3D{.f_u=3D{.fu_list=3D{.next=3D0xc000= 000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D0xc000000= 136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000001392a23= 80, .dentry=3D0xc0000000eaacdbe8}, .f_op=3D0xc0000000005c3840, .f_lock=3D{.= raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65536, .f_m= ode=3D29, .f_pos=3D4, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}}, .pid= =3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D0xc0000= 00131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pages=3D2= , .mmap_miss=3D0,=20 22 cat(6903): ->proc_sys_call_handler filp=3D{.f_u=3D{.fu_list=3D{.next= =3D0xc000000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D= 0xc000000136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000= 001392a2380, .dentry=3D0xc0000000eaacdbe8}, .f_op=3D0xc0000000005c3840, .f_= lock=3D{.raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65= 536, .f_mode=3D29, .f_pos=3D4, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}= }, .pid=3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D= 0xc000000131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pa= ges=3D2, .mmap_miss=3D0,=20 41 cat(6903): ->grab_header inode=3D{.i_hash=3D{.next=3D0x0, .pprev=3D= 0x0}, .i_list=3D{.next=3D0xc00000013849b448, .prev=3D0xc00000013849b6c0}, .= i_sb_list=3D{.next=3D0xc00000013849b458, .prev=3D0xc00000013849b6d0}, .i_de= ntry=3D{.next=3D0xc0000000eaacdc58, .prev=3D0xc0000000eaacdc58}, .i_ino=3D1= 04664, .i_count=3D{.counter=3D1}, .i_nlink=3D1, .i_uid=3D0, .i_gid=3D0, .i_= rdev=3D0, .i_version=3D0, .i_size=3D0, .i_atime=3D{.tv_sec=3D1296666942, .t= v_nsec=3D322727223}, .i_mtime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223= }, .i_ctime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223}, .i_blocks=3D0, = .i_blkbi 49 cat(6903): <-grab_header return=3D0xc000000000da7180 56 cat(6903): <-proc_sys_call_handler return=3D0x0 60 cat(6903):<-proc_sys_read return=3D0x0 0 cat(6903):->proc_sys_read filp=3D{.f_u=3D{.fu_list=3D{.next=3D0xc000= 000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D0xc000000= 136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000001392a23= 80, .dentry=3D0xc0000000eaac9ce8}, .f_op=3D0xc0000000005c3840, .f_lock=3D{.= raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65536, .f_m= ode=3D29, .f_pos=3D0, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}}, .pid= =3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D0xc0000= 00131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pages=3D2= , .mmap_miss=3D0,=20 18 cat(6903): ->proc_sys_call_handler filp=3D{.f_u=3D{.fu_list=3D{.next= =3D0xc000000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D= 0xc000000136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000= 001392a2380, .dentry=3D0xc0000000eaac9ce8}, .f_op=3D0xc0000000005c3840, .f_= lock=3D{.raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65= 536, .f_mode=3D29, .f_pos=3D0, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}= }, .pid=3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D= 0xc000000131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pa= ges=3D2, .mmap_miss=3D0,=20 35 cat(6903): ->grab_header inode=3D{.i_hash=3D{.next=3D0x0, .pprev=3D= 0x0}, .i_list=3D{.next=3D0xc000000138490c68, .prev=3D0xc00000013849ace0}, .= i_sb_list=3D{.next=3D0xc000000138490c78, .prev=3D0xc00000013849acf0}, .i_de= ntry=3D{.next=3D0xc0000000eaac9d58, .prev=3D0xc0000000eaac9d58}, .i_ino=3D1= 04679, .i_count=3D{.counter=3D1}, .i_nlink=3D1, .i_uid=3D0, .i_gid=3D0, .i_= rdev=3D0, .i_version=3D0, .i_size=3D0, .i_atime=3D{.tv_sec=3D1296666942, .t= v_nsec=3D322727223}, .i_mtime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223= }, .i_ctime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223}, .i_blocks=3D0, = .i_blkbi 40 cat(6903): <-grab_header return=3D0xc000000000da7180 46 cat(6903): <-proc_sys_call_handler return=3D0x2 49 cat(6903):<-proc_sys_read return=3D0x2 0 cat(6903):->proc_sys_read filp=3D{.f_u=3D{.fu_list=3D{.next=3D0xc000= 000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D0xc000000= 136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000001392a23= 80, .dentry=3D0xc0000000eaac9ce8}, .f_op=3D0xc0000000005c3840, .f_lock=3D{.= raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65536, .f_m= ode=3D29, .f_pos=3D2, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}}, .pid= =3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D0xc0000= 00131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pages=3D2= , .mmap_miss=3D0,=20 21 cat(6903): ->proc_sys_call_handler filp=3D{.f_u=3D{.fu_list=3D{.next= =3D0xc000000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D= 0xc000000136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000= 001392a2380, .dentry=3D0xc0000000eaac9ce8}, .f_op=3D0xc0000000005c3840, .f_= lock=3D{.raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65= 536, .f_mode=3D29, .f_pos=3D2, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}= }, .pid=3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D= 0xc000000131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pa= ges=3D2, .mmap_miss=3D0,=20 40 cat(6903): ->grab_header inode=3D{.i_hash=3D{.next=3D0x0, .pprev=3D= 0x0}, .i_list=3D{.next=3D0xc000000138490c68, .prev=3D0xc00000013849ace0}, .= i_sb_list=3D{.next=3D0xc000000138490c78, .prev=3D0xc00000013849acf0}, .i_de= ntry=3D{.next=3D0xc0000000eaac9d58, .prev=3D0xc0000000eaac9d58}, .i_ino=3D1= 04679, .i_count=3D{.counter=3D1}, .i_nlink=3D1, .i_uid=3D0, .i_gid=3D0, .i_= rdev=3D0, .i_version=3D0, .i_size=3D0, .i_atime=3D{.tv_sec=3D1296666942, .t= v_nsec=3D322727223}, .i_mtime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223= }, .i_ctime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223}, .i_blocks=3D0, = .i_blkbi 48 cat(6903): <-grab_header return=3D0xc000000000da7180 55 cat(6903): <-proc_sys_call_handler return=3D0x0 59 cat(6903):<-proc_sys_read return=3D0x0 0 cat(6903):->proc_sys_read filp=3D{.f_u=3D{.fu_list=3D{.next=3D0xc000= 000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D0xc000000= 136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000001392a23= 80, .dentry=3D0xc0000000eaac9568}, .f_op=3D0xc0000000005c3840, .f_lock=3D{.= raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65536, .f_m= ode=3D29, .f_pos=3D0, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}}, .pid= =3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D0xc0000= 00131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pages=3D2= , .mmap_miss=3D0,=20 19 cat(6903): ->proc_sys_call_handler filp=3D{.f_u=3D{.fu_list=3D{.next= =3D0xc000000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D= 0xc000000136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000= 001392a2380, .dentry=3D0xc0000000eaac9568}, .f_op=3D0xc0000000005c3840, .f_= lock=3D{.raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65= 536, .f_mode=3D29, .f_pos=3D0, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}= }, .pid=3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D= 0xc000000131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pa= ges=3D2, .mmap_miss=3D0,=20 36 cat(6903): ->grab_header inode=3D{.i_hash=3D{.next=3D0x0, .pprev=3D= 0x0}, .i_list=3D{.next=3D0xc00000013849a300, .prev=3D0xc00000013849a7f0}, .= i_sb_list=3D{.next=3D0xc00000013849a310, .prev=3D0xc00000013849a800}, .i_de= ntry=3D{.next=3D0xc0000000eaac95d8, .prev=3D0xc0000000eaac95d8}, .i_ino=3D1= 04678, .i_count=3D{.counter=3D1}, .i_nlink=3D1, .i_uid=3D0, .i_gid=3D0, .i_= rdev=3D0, .i_version=3D0, .i_size=3D0, .i_atime=3D{.tv_sec=3D1296666942, .t= v_nsec=3D322727223}, .i_mtime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223= }, .i_ctime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223}, .i_blocks=3D0, = .i_blkbi 41 cat(6903): <-grab_header return=3D0xc000000000da7180 47 cat(6903): <-proc_sys_call_handler return=3D0x2 50 cat(6903):<-proc_sys_read return=3D0x2 0 cat(6903):->proc_sys_read filp=3D{.f_u=3D{.fu_list=3D{.next=3D0xc000= 000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D0xc000000= 136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000001392a23= 80, .dentry=3D0xc0000000eaac9568}, .f_op=3D0xc0000000005c3840, .f_lock=3D{.= raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65536, .f_m= ode=3D29, .f_pos=3D2, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}}, .pid= =3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D0xc0000= 00131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pages=3D2= , .mmap_miss=3D0,=20 22 cat(6903): ->proc_sys_call_handler filp=3D{.f_u=3D{.fu_list=3D{.next= =3D0xc000000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D= 0xc000000136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000= 001392a2380, .dentry=3D0xc0000000eaac9568}, .f_op=3D0xc0000000005c3840, .f_= lock=3D{.raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65= 536, .f_mode=3D29, .f_pos=3D2, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}= }, .pid=3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D= 0xc000000131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pa= ges=3D2, .mmap_miss=3D0,=20 41 cat(6903): ->grab_header inode=3D{.i_hash=3D{.next=3D0x0, .pprev=3D= 0x0}, .i_list=3D{.next=3D0xc00000013849a300, .prev=3D0xc00000013849a7f0}, .= i_sb_list=3D{.next=3D0xc00000013849a310, .prev=3D0xc00000013849a800}, .i_de= ntry=3D{.next=3D0xc0000000eaac95d8, .prev=3D0xc0000000eaac95d8}, .i_ino=3D1= 04678, .i_count=3D{.counter=3D1}, .i_nlink=3D1, .i_uid=3D0, .i_gid=3D0, .i_= rdev=3D0, .i_version=3D0, .i_size=3D0, .i_atime=3D{.tv_sec=3D1296666942, .t= v_nsec=3D322727223}, .i_mtime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223= }, .i_ctime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223}, .i_blocks=3D0, = .i_blkbi 48 cat(6903): <-grab_header return=3D0xc000000000da7180 56 cat(6903): <-proc_sys_call_handler return=3D0x0 59 cat(6903):<-proc_sys_read return=3D0x0 0 cat(6903):->proc_sys_read filp=3D{.f_u=3D{.fu_list=3D{.next=3D0xc000= 000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D0xc000000= 136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000001392a23= 80, .dentry=3D0xc0000000eaacc7a8}, .f_op=3D0xc0000000005c3840, .f_lock=3D{.= raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65536, .f_m= ode=3D29, .f_pos=3D0, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}}, .pid= =3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D0xc0000= 00131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pages=3D2= , .mmap_miss=3D0,=20 18 cat(6903): ->proc_sys_call_handler filp=3D{.f_u=3D{.fu_list=3D{.next= =3D0xc000000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D= 0xc000000136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000= 001392a2380, .dentry=3D0xc0000000eaacc7a8}, .f_op=3D0xc0000000005c3840, .f_= lock=3D{.raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65= 536, .f_mode=3D29, .f_pos=3D0, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}= }, .pid=3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D= 0xc000000131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pa= ges=3D2, .mmap_miss=3D0,=20 35 cat(6903): ->grab_header inode=3D{.i_hash=3D{.next=3D0x0, .pprev=3D= 0x0}, .i_list=3D{.next=3D0xc00000013849a578, .prev=3D0xc00000013849f200}, .= i_sb_list=3D{.next=3D0xc00000013849a588, .prev=3D0xc00000013849f210}, .i_de= ntry=3D{.next=3D0xc0000000eaacc818, .prev=3D0xc0000000eaacc818}, .i_ino=3D1= 04686, .i_count=3D{.counter=3D1}, .i_nlink=3D1, .i_uid=3D0, .i_gid=3D0, .i_= rdev=3D0, .i_version=3D0, .i_size=3D0, .i_atime=3D{.tv_sec=3D1296666942, .t= v_nsec=3D322727223}, .i_mtime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223= }, .i_ctime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223}, .i_blocks=3D0, = .i_blkbi 41 cat(6903): <-grab_header return=3D0xc000000000da7180 47 cat(6903): <-proc_sys_call_handler return=3D0x2 49 cat(6903):<-proc_sys_read return=3D0x2 0 cat(6903):->proc_sys_read filp=3D{.f_u=3D{.fu_list=3D{.next=3D0xc000= 000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D0xc000000= 136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000001392a23= 80, .dentry=3D0xc0000000eaacc7a8}, .f_op=3D0xc0000000005c3840, .f_lock=3D{.= raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65536, .f_m= ode=3D29, .f_pos=3D2, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}}, .pid= =3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D0xc0000= 00131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pages=3D2= , .mmap_miss=3D0,=20 22 cat(6903): ->proc_sys_call_handler filp=3D{.f_u=3D{.fu_list=3D{.next= =3D0xc000000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D= 0xc000000136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000= 001392a2380, .dentry=3D0xc0000000eaacc7a8}, .f_op=3D0xc0000000005c3840, .f_= lock=3D{.raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65= 536, .f_mode=3D29, .f_pos=3D2, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}= }, .pid=3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D= 0xc000000131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pa= ges=3D2, .mmap_miss=3D0,=20 50 cat(6903): ->grab_header inode=3D{.i_hash=3D{.next=3D0x0, .pprev=3D= 0x0}, .i_list=3D{.next=3D0xc00000013849a578, .prev=3D0xc00000013849f200}, .= i_sb_list=3D{.next=3D0xc00000013849a588, .prev=3D0xc00000013849f210}, .i_de= ntry=3D{.next=3D0xc0000000eaacc818, .prev=3D0xc0000000eaacc818}, .i_ino=3D1= 04686, .i_count=3D{.counter=3D1}, .i_nlink=3D1, .i_uid=3D0, .i_gid=3D0, .i_= rdev=3D0, .i_version=3D0, .i_size=3D0, .i_atime=3D{.tv_sec=3D1296666942, .t= v_nsec=3D322727223}, .i_mtime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223= }, .i_ctime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223}, .i_blocks=3D0, = .i_blkbi 56 cat(6903): <-grab_header return=3D0xc000000000da7180 61 cat(6903): <-proc_sys_call_handler return=3D0x0 64 cat(6903):<-proc_sys_read return=3D0x0 0 cat(6903):->proc_sys_read filp=3D{.f_u=3D{.fu_list=3D{.next=3D0xc000= 000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D0xc000000= 136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000001392a23= 80, .dentry=3D0xc0000000eaac8d28}, .f_op=3D0xc0000000005c3840, .f_lock=3D{.= raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65536, .f_m= ode=3D29, .f_pos=3D0, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}}, .pid= =3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D0xc0000= 00131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pages=3D2= , .mmap_miss=3D0,=20 22 cat(6903): ->proc_sys_call_handler filp=3D{.f_u=3D{.fu_list=3D{.next= =3D0xc000000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D= 0xc000000136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000= 001392a2380, .dentry=3D0xc0000000eaac8d28}, .f_op=3D0xc0000000005c3840, .f_= lock=3D{.raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65= 536, .f_mode=3D29, .f_pos=3D0, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}= }, .pid=3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D= 0xc000000131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pa= ges=3D2, .mmap_miss=3D0,=20 40 cat(6903): ->grab_header inode=3D{.i_hash=3D{.next=3D0x0, .pprev=3D= 0x0}, .i_list=3D{.next=3D0xc0000001384ab250, .prev=3D0xc0000001384abc30}, .= i_sb_list=3D{.next=3D0xc0000001384ab260, .prev=3D0xc0000001384abc40}, .i_de= ntry=3D{.next=3D0xc0000000eaac8d98, .prev=3D0xc0000000eaac8d98}, .i_ino=3D1= 04689, .i_count=3D{.counter=3D1}, .i_nlink=3D1, .i_uid=3D0, .i_gid=3D0, .i_= rdev=3D0, .i_version=3D0, .i_size=3D0, .i_atime=3D{.tv_sec=3D1296666942, .t= v_nsec=3D322727223}, .i_mtime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223= }, .i_ctime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223}, .i_blocks=3D0, = .i_blkbi 46 cat(6903): <-grab_header return=3D0xc000000000da7180 52 cat(6903): <-proc_sys_call_handler return=3D0x2 55 cat(6903):<-proc_sys_read return=3D0x2 0 cat(6903):->proc_sys_read filp=3D{.f_u=3D{.fu_list=3D{.next=3D0xc000= 000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D0xc000000= 136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000001392a23= 80, .dentry=3D0xc0000000eaac8d28}, .f_op=3D0xc0000000005c3840, .f_lock=3D{.= raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65536, .f_m= ode=3D29, .f_pos=3D2, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}}, .pid= =3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D0xc0000= 00131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pages=3D2= , .mmap_miss=3D0,=20 22 cat(6903): ->proc_sys_call_handler filp=3D{.f_u=3D{.fu_list=3D{.next= =3D0xc000000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D= 0xc000000136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000= 001392a2380, .dentry=3D0xc0000000eaac8d28}, .f_op=3D0xc0000000005c3840, .f_= lock=3D{.raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65= 536, .f_mode=3D29, .f_pos=3D2, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}= }, .pid=3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D= 0xc000000131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pa= ges=3D2, .mmap_miss=3D0,=20 41 cat(6903): ->grab_header inode=3D{.i_hash=3D{.next=3D0x0, .pprev=3D= 0x0}, .i_list=3D{.next=3D0xc0000001384ab250, .prev=3D0xc0000001384abc30}, .= i_sb_list=3D{.next=3D0xc0000001384ab260, .prev=3D0xc0000001384abc40}, .i_de= ntry=3D{.next=3D0xc0000000eaac8d98, .prev=3D0xc0000000eaac8d98}, .i_ino=3D1= 04689, .i_count=3D{.counter=3D1}, .i_nlink=3D1, .i_uid=3D0, .i_gid=3D0, .i_= rdev=3D0, .i_version=3D0, .i_size=3D0, .i_atime=3D{.tv_sec=3D1296666942, .t= v_nsec=3D322727223}, .i_mtime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223= }, .i_ctime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223}, .i_blocks=3D0, = .i_blkbi 48 cat(6903): <-grab_header return=3D0xc000000000da7180 55 cat(6903): <-proc_sys_call_handler return=3D0x0 59 cat(6903):<-proc_sys_read return=3D0x0 0 cat(6903):->proc_sys_read filp=3D{.f_u=3D{.fu_list=3D{.next=3D0xc000= 000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D0xc000000= 136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000001392a23= 80, .dentry=3D0xc0000000eaac87e8}, .f_op=3D0xc0000000005c3840, .f_lock=3D{.= raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65536, .f_m= ode=3D29, .f_pos=3D0, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}}, .pid= =3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D0xc0000= 00131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pages=3D2= , .mmap_miss=3D0,=20 19 cat(6903): ->proc_sys_call_handler filp=3D{.f_u=3D{.fu_list=3D{.next= =3D0xc000000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D= 0xc000000136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000= 001392a2380, .dentry=3D0xc0000000eaac87e8}, .f_op=3D0xc0000000005c3840, .f_= lock=3D{.raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65= 536, .f_mode=3D29, .f_pos=3D0, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}= }, .pid=3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D= 0xc000000131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pa= ges=3D2, .mmap_miss=3D0,=20 35 cat(6903): ->grab_header inode=3D{.i_hash=3D{.next=3D0x0, .pprev=3D= 0x0}, .i_list=3D{.next=3D0xc00000013849ace0, .prev=3D0xc00000013849b938}, .= i_sb_list=3D{.next=3D0xc00000013849acf0, .prev=3D0xc00000013849b948}, .i_de= ntry=3D{.next=3D0xc0000000eaac8858, .prev=3D0xc0000000eaac8858}, .i_ino=3D1= 04681, .i_count=3D{.counter=3D1}, .i_nlink=3D1, .i_uid=3D0, .i_gid=3D0, .i_= rdev=3D0, .i_version=3D0, .i_size=3D0, .i_atime=3D{.tv_sec=3D1296666942, .t= v_nsec=3D322727223}, .i_mtime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223= }, .i_ctime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223}, .i_blocks=3D0, = .i_blkbi 41 cat(6903): <-grab_header return=3D0xc000000000da7180 48 cat(6903): <-proc_sys_call_handler return=3D0x7 51 cat(6903):<-proc_sys_read return=3D0x7 0 cat(6903):->proc_sys_read filp=3D{.f_u=3D{.fu_list=3D{.next=3D0xc000= 000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D0xc000000= 136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000001392a23= 80, .dentry=3D0xc0000000eaac87e8}, .f_op=3D0xc0000000005c3840, .f_lock=3D{.= raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65536, .f_m= ode=3D29, .f_pos=3D7, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}}, .pid= =3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D0xc0000= 00131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pages=3D2= , .mmap_miss=3D0,=20 22 cat(6903): ->proc_sys_call_handler filp=3D{.f_u=3D{.fu_list=3D{.next= =3D0xc000000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D= 0xc000000136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000= 001392a2380, .dentry=3D0xc0000000eaac87e8}, .f_op=3D0xc0000000005c3840, .f_= lock=3D{.raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65= 536, .f_mode=3D29, .f_pos=3D7, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}= }, .pid=3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D= 0xc000000131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pa= ges=3D2, .mmap_miss=3D0,=20 42 cat(6903): ->grab_header inode=3D{.i_hash=3D{.next=3D0x0, .pprev=3D= 0x0}, .i_list=3D{.next=3D0xc00000013849ace0, .prev=3D0xc00000013849b938}, .= i_sb_list=3D{.next=3D0xc00000013849acf0, .prev=3D0xc00000013849b948}, .i_de= ntry=3D{.next=3D0xc0000000eaac8858, .prev=3D0xc0000000eaac8858}, .i_ino=3D1= 04681, .i_count=3D{.counter=3D1}, .i_nlink=3D1, .i_uid=3D0, .i_gid=3D0, .i_= rdev=3D0, .i_version=3D0, .i_size=3D0, .i_atime=3D{.tv_sec=3D1296666942, .t= v_nsec=3D322727223}, .i_mtime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223= }, .i_ctime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223}, .i_blocks=3D0, = .i_blkbi 49 cat(6903): <-grab_header return=3D0xc000000000da7180 56 cat(6903): <-proc_sys_call_handler return=3D0x0 60 cat(6903):<-proc_sys_read return=3D0x0 0 cat(6903):->proc_sys_read filp=3D{.f_u=3D{.fu_list=3D{.next=3D0xc000= 000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D0xc000000= 136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000001392a23= 80, .dentry=3D0xc0000000eaac8de8}, .f_op=3D0xc0000000005c3840, .f_lock=3D{.= raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65536, .f_m= ode=3D29, .f_pos=3D0, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}}, .pid= =3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D0xc0000= 00131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pages=3D2= , .mmap_miss=3D0,=20 19 cat(6903): ->proc_sys_call_handler filp=3D{.f_u=3D{.fu_list=3D{.next= =3D0xc000000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D= 0xc000000136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000= 001392a2380, .dentry=3D0xc0000000eaac8de8}, .f_op=3D0xc0000000005c3840, .f_= lock=3D{.raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65= 536, .f_mode=3D29, .f_pos=3D0, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}= }, .pid=3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D= 0xc000000131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pa= ges=3D2, .mmap_miss=3D0,=20 35 cat(6903): ->grab_header inode=3D{.i_hash=3D{.next=3D0x0, .pprev=3D= 0x0}, .i_list=3D{.next=3D0xc00000013849ccf8, .prev=3D0xc000000138498560}, .= i_sb_list=3D{.next=3D0xc00000013849cd08, .prev=3D0xc000000138498570}, .i_de= ntry=3D{.next=3D0xc0000000eaac8e58, .prev=3D0xc0000000eaac8e58}, .i_ino=3D1= 04685, .i_count=3D{.counter=3D1}, .i_nlink=3D1, .i_uid=3D0, .i_gid=3D0, .i_= rdev=3D0, .i_version=3D0, .i_size=3D0, .i_atime=3D{.tv_sec=3D1296666942, .t= v_nsec=3D322727223}, .i_mtime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223= }, .i_ctime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223}, .i_blocks=3D0, = .i_blkbi 41 cat(6903): <-grab_header return=3D0xc000000000da7180 47 cat(6903): <-proc_sys_call_handler return=3D0x6 50 cat(6903):<-proc_sys_read return=3D0x6 0 cat(6903):->proc_sys_read filp=3D{.f_u=3D{.fu_list=3D{.next=3D0xc000= 000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D0xc000000= 136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000001392a23= 80, .dentry=3D0xc0000000eaac8de8}, .f_op=3D0xc0000000005c3840, .f_lock=3D{.= raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65536, .f_m= ode=3D29, .f_pos=3D6, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}}, .pid= =3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D0xc0000= 00131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pages=3D2= , .mmap_miss=3D0,=20 22 cat(6903): ->proc_sys_call_handler filp=3D{.f_u=3D{.fu_list=3D{.next= =3D0xc000000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D= 0xc000000136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000= 001392a2380, .dentry=3D0xc0000000eaac8de8}, .f_op=3D0xc0000000005c3840, .f_= lock=3D{.raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65= 536, .f_mode=3D29, .f_pos=3D6, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}= }, .pid=3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D= 0xc000000131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pa= ges=3D2, .mmap_miss=3D0,=20 50 cat(6903): ->grab_header inode=3D{.i_hash=3D{.next=3D0x0, .pprev=3D= 0x0}, .i_list=3D{.next=3D0xc00000013849ccf8, .prev=3D0xc000000138498560}, .= i_sb_list=3D{.next=3D0xc00000013849cd08, .prev=3D0xc000000138498570}, .i_de= ntry=3D{.next=3D0xc0000000eaac8e58, .prev=3D0xc0000000eaac8e58}, .i_ino=3D1= 04685, .i_count=3D{.counter=3D1}, .i_nlink=3D1, .i_uid=3D0, .i_gid=3D0, .i_= rdev=3D0, .i_version=3D0, .i_size=3D0, .i_atime=3D{.tv_sec=3D1296666942, .t= v_nsec=3D322727223}, .i_mtime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223= }, .i_ctime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223}, .i_blocks=3D0, = .i_blkbi 56 cat(6903): <-grab_header return=3D0xc000000000da7180 62 cat(6903): <-proc_sys_call_handler return=3D0x0 65 cat(6903):<-proc_sys_read return=3D0x0 0 cat(6903):->proc_sys_read filp=3D{.f_u=3D{.fu_list=3D{.next=3D0xc000= 000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D0xc000000= 136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000001392a23= 80, .dentry=3D0xc0000000eaacf868}, .f_op=3D0xc0000000005c3840, .f_lock=3D{.= raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65536, .f_m= ode=3D29, .f_pos=3D0, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}}, .pid= =3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D0xc0000= 00131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pages=3D2= , .mmap_miss=3D0,=20 19 cat(6903): ->proc_sys_call_handler filp=3D{.f_u=3D{.fu_list=3D{.next= =3D0xc000000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D= 0xc000000136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000= 001392a2380, .dentry=3D0xc0000000eaacf868}, .f_op=3D0xc0000000005c3840, .f_= lock=3D{.raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65= 536, .f_mode=3D29, .f_pos=3D0, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}= }, .pid=3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D= 0xc000000131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pa= ges=3D2, .mmap_miss=3D0,=20 36 cat(6903): ->grab_header inode=3D{.i_hash=3D{.next=3D0x0, .pprev=3D= 0x0}, .i_list=3D{.next=3D0xc00000013849b938, .prev=3D0xc00000013849ccf8}, .= i_sb_list=3D{.next=3D0xc00000013849b948, .prev=3D0xc00000013849cd08}, .i_de= ntry=3D{.next=3D0xc0000000eaacf8d8, .prev=3D0xc0000000eaacf8d8}, .i_ino=3D1= 04683, .i_count=3D{.counter=3D1}, .i_nlink=3D1, .i_uid=3D0, .i_gid=3D0, .i_= rdev=3D0, .i_version=3D0, .i_size=3D0, .i_atime=3D{.tv_sec=3D1296666942, .t= v_nsec=3D322727223}, .i_mtime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223= }, .i_ctime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223}, .i_blocks=3D0, = .i_blkbi 41 cat(6903): <-grab_header return=3D0xc000000000da7180 47 cat(6903): <-proc_sys_call_handler return=3D0x5 50 cat(6903):<-proc_sys_read return=3D0x5 0 cat(6903):->proc_sys_read filp=3D{.f_u=3D{.fu_list=3D{.next=3D0xc000= 000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D0xc000000= 136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000001392a23= 80, .dentry=3D0xc0000000eaacf868}, .f_op=3D0xc0000000005c3840, .f_lock=3D{.= raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65536, .f_m= ode=3D29, .f_pos=3D5, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}}, .pid= =3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D0xc0000= 00131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pages=3D2= , .mmap_miss=3D0,=20 23 cat(6903): ->proc_sys_call_handler filp=3D{.f_u=3D{.fu_list=3D{.next= =3D0xc000000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D= 0xc000000136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000= 001392a2380, .dentry=3D0xc0000000eaacf868}, .f_op=3D0xc0000000005c3840, .f_= lock=3D{.raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65= 536, .f_mode=3D29, .f_pos=3D5, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}= }, .pid=3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D= 0xc000000131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pa= ges=3D2, .mmap_miss=3D0,=20 51 cat(6903): ->grab_header inode=3D{.i_hash=3D{.next=3D0x0, .pprev=3D= 0x0}, .i_list=3D{.next=3D0xc00000013849b938, .prev=3D0xc00000013849ccf8}, .= i_sb_list=3D{.next=3D0xc00000013849b948, .prev=3D0xc00000013849cd08}, .i_de= ntry=3D{.next=3D0xc0000000eaacf8d8, .prev=3D0xc0000000eaacf8d8}, .i_ino=3D1= 04683, .i_count=3D{.counter=3D1}, .i_nlink=3D1, .i_uid=3D0, .i_gid=3D0, .i_= rdev=3D0, .i_version=3D0, .i_size=3D0, .i_atime=3D{.tv_sec=3D1296666942, .t= v_nsec=3D322727223}, .i_mtime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223= }, .i_ctime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223}, .i_blocks=3D0, = .i_blkbi 57 cat(6903): <-grab_header return=3D0xc000000000da7180 62 cat(6903): <-proc_sys_call_handler return=3D0x0 65 cat(6903):<-proc_sys_read return=3D0x0 0 cat(6903):->proc_sys_read filp=3D{.f_u=3D{.fu_list=3D{.next=3D0xc000= 000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D0xc000000= 136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000001392a23= 80, .dentry=3D0xc0000000eaacf928}, .f_op=3D0xc0000000005c3840, .f_lock=3D{.= raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65536, .f_m= ode=3D29, .f_pos=3D0, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}}, .pid= =3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D0xc0000= 00131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pages=3D2= , .mmap_miss=3D0,=20 19 cat(6903): ->proc_sys_call_handler filp=3D{.f_u=3D{.fu_list=3D{.next= =3D0xc000000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D= 0xc000000136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000= 001392a2380, .dentry=3D0xc0000000eaacf928}, .f_op=3D0xc0000000005c3840, .f_= lock=3D{.raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65= 536, .f_mode=3D29, .f_pos=3D0, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}= }, .pid=3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D= 0xc000000131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pa= ges=3D2, .mmap_miss=3D0,=20 35 cat(6903): ->grab_header inode=3D{.i_hash=3D{.next=3D0x0, .pprev=3D= 0x0}, .i_list=3D{.next=3D0xc0000001384ab740, .prev=3D0xc0000001384a7988}, .= i_sb_list=3D{.next=3D0xc0000001384ab750, .prev=3D0xc0000001384a7998}, .i_de= ntry=3D{.next=3D0xc0000000eaacf998, .prev=3D0xc0000000eaacf998}, .i_ino=3D1= 04692, .i_count=3D{.counter=3D1}, .i_nlink=3D1, .i_uid=3D0, .i_gid=3D0, .i_= rdev=3D0, .i_version=3D0, .i_size=3D0, .i_atime=3D{.tv_sec=3D1296666942, .t= v_nsec=3D322727223}, .i_mtime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223= }, .i_ctime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223}, .i_blocks=3D0, = .i_blkbi 41 cat(6903): <-grab_header return=3D0xc000000000da7180 47 cat(6903): <-proc_sys_call_handler return=3D0x2 50 cat(6903):<-proc_sys_read return=3D0x2 0 cat(6903):->proc_sys_read filp=3D{.f_u=3D{.fu_list=3D{.next=3D0xc000= 000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D0xc000000= 136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000001392a23= 80, .dentry=3D0xc0000000eaacf928}, .f_op=3D0xc0000000005c3840, .f_lock=3D{.= raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65536, .f_m= ode=3D29, .f_pos=3D2, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}}, .pid= =3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D0xc0000= 00131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pages=3D2= , .mmap_miss=3D0,=20 21 cat(6903): ->proc_sys_call_handler filp=3D{.f_u=3D{.fu_list=3D{.next= =3D0xc000000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D= 0xc000000136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000= 001392a2380, .dentry=3D0xc0000000eaacf928}, .f_op=3D0xc0000000005c3840, .f_= lock=3D{.raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65= 536, .f_mode=3D29, .f_pos=3D2, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}= }, .pid=3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D= 0xc000000131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pa= ges=3D2, .mmap_miss=3D0,=20 41 cat(6903): ->grab_header inode=3D{.i_hash=3D{.next=3D0x0, .pprev=3D= 0x0}, .i_list=3D{.next=3D0xc0000001384ab740, .prev=3D0xc0000001384a7988}, .= i_sb_list=3D{.next=3D0xc0000001384ab750, .prev=3D0xc0000001384a7998}, .i_de= ntry=3D{.next=3D0xc0000000eaacf998, .prev=3D0xc0000000eaacf998}, .i_ino=3D1= 04692, .i_count=3D{.counter=3D1}, .i_nlink=3D1, .i_uid=3D0, .i_gid=3D0, .i_= rdev=3D0, .i_version=3D0, .i_size=3D0, .i_atime=3D{.tv_sec=3D1296666942, .t= v_nsec=3D322727223}, .i_mtime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223= }, .i_ctime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223}, .i_blocks=3D0, = .i_blkbi 48 cat(6903): <-grab_header return=3D0xc000000000da7180 56 cat(6903): <-proc_sys_call_handler return=3D0x0 60 cat(6903):<-proc_sys_read return=3D0x0 0 cat(6903):->proc_sys_read filp=3D{.f_u=3D{.fu_list=3D{.next=3D0xc000= 000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D0xc000000= 136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000001392a23= 80, .dentry=3D0xc0000000eaacf628}, .f_op=3D0xc0000000005c3840, .f_lock=3D{.= raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65536, .f_m= ode=3D29, .f_pos=3D0, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}}, .pid= =3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D0xc0000= 00131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pages=3D2= , .mmap_miss=3D0,=20 19 cat(6903): ->proc_sys_call_handler filp=3D{.f_u=3D{.fu_list=3D{.next= =3D0xc000000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D= 0xc000000136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000= 001392a2380, .dentry=3D0xc0000000eaacf628}, .f_op=3D0xc0000000005c3840, .f_= lock=3D{.raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65= 536, .f_mode=3D29, .f_pos=3D0, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}= }, .pid=3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D= 0xc000000131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pa= ges=3D2, .mmap_miss=3D0,=20 35 cat(6903): ->grab_header inode=3D{.i_hash=3D{.next=3D0x0, .pprev=3D= 0x0}, .i_list=3D{.next=3D0xc0000001384abc30, .prev=3D0xc0000001384a7710}, .= i_sb_list=3D{.next=3D0xc0000001384abc40, .prev=3D0xc0000001384a7720}, .i_de= ntry=3D{.next=3D0xc0000000eaacf698, .prev=3D0xc0000000eaacf698}, .i_ino=3D1= 04691, .i_count=3D{.counter=3D1}, .i_nlink=3D1, .i_uid=3D0, .i_gid=3D0, .i_= rdev=3D0, .i_version=3D0, .i_size=3D0, .i_atime=3D{.tv_sec=3D1296666942, .t= v_nsec=3D322727223}, .i_mtime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223= }, .i_ctime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223}, .i_blocks=3D0, = .i_blkbi 41 cat(6903): <-grab_header return=3D0xc000000000da7180 47 cat(6903): <-proc_sys_call_handler return=3D0x2 50 cat(6903):<-proc_sys_read return=3D0x2 0 cat(6903):->proc_sys_read filp=3D{.f_u=3D{.fu_list=3D{.next=3D0xc000= 000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D0xc000000= 136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000001392a23= 80, .dentry=3D0xc0000000eaacf628}, .f_op=3D0xc0000000005c3840, .f_lock=3D{.= raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65536, .f_m= ode=3D29, .f_pos=3D2, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}}, .pid= =3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D0xc0000= 00131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pages=3D2= , .mmap_miss=3D0,=20 22 cat(6903): ->proc_sys_call_handler filp=3D{.f_u=3D{.fu_list=3D{.next= =3D0xc000000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D= 0xc000000136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000= 001392a2380, .dentry=3D0xc0000000eaacf628}, .f_op=3D0xc0000000005c3840, .f_= lock=3D{.raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65= 536, .f_mode=3D29, .f_pos=3D2, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}= }, .pid=3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D= 0xc000000131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pa= ges=3D2, .mmap_miss=3D0,=20 41 cat(6903): ->grab_header inode=3D{.i_hash=3D{.next=3D0x0, .pprev=3D= 0x0}, .i_list=3D{.next=3D0xc0000001384abc30, .prev=3D0xc0000001384a7710}, .= i_sb_list=3D{.next=3D0xc0000001384abc40, .prev=3D0xc0000001384a7720}, .i_de= ntry=3D{.next=3D0xc0000000eaacf698, .prev=3D0xc0000000eaacf698}, .i_ino=3D1= 04691, .i_count=3D{.counter=3D1}, .i_nlink=3D1, .i_uid=3D0, .i_gid=3D0, .i_= rdev=3D0, .i_version=3D0, .i_size=3D0, .i_atime=3D{.tv_sec=3D1296666942, .t= v_nsec=3D322727223}, .i_mtime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223= }, .i_ctime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223}, .i_blocks=3D0, = .i_blkbi 48 cat(6903): <-grab_header return=3D0xc000000000da7180 56 cat(6903): <-proc_sys_call_handler return=3D0x0 60 cat(6903):<-proc_sys_read return=3D0x0 0 cat(6903):->proc_sys_read filp=3D{.f_u=3D{.fu_list=3D{.next=3D0xc000= 000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D0xc000000= 136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000001392a23= 80, .dentry=3D0xc0000000fc33d0a8}, .f_op=3D0xc0000000005c3840, .f_lock=3D{.= raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65536, .f_m= ode=3D29, .f_pos=3D0, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}}, .pid= =3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D0xc0000= 00131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pages=3D2= , .mmap_miss=3D0,=20 19 cat(6903): ->proc_sys_call_handler filp=3D{.f_u=3D{.fu_list=3D{.next= =3D0xc000000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D= 0xc000000136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000= 001392a2380, .dentry=3D0xc0000000fc33d0a8}, .f_op=3D0xc0000000005c3840, .f_= lock=3D{.raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65= 536, .f_mode=3D29, .f_pos=3D0, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}= }, .pid=3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D= 0xc000000131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pa= ges=3D2, .mmap_miss=3D0,=20 35 cat(6903): ->grab_header inode=3D{.i_hash=3D{.next=3D0x0, .pprev=3D= 0x0}, .i_list=3D{.next=3D0xc0000001384a7988, .prev=3D0xc0000001384a56f8}, .= i_sb_list=3D{.next=3D0xc0000001384a7998, .prev=3D0xc0000001384a5708}, .i_de= ntry=3D{.next=3D0xc0000000fc33d118, .prev=3D0xc0000000fc33d118}, .i_ino=3D1= 04694, .i_count=3D{.counter=3D1}, .i_nlink=3D1, .i_uid=3D0, .i_gid=3D0, .i_= rdev=3D0, .i_version=3D0, .i_size=3D0, .i_atime=3D{.tv_sec=3D1296666942, .t= v_nsec=3D322727223}, .i_mtime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223= }, .i_ctime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223}, .i_blocks=3D0, = .i_blkbi 41 cat(6903): <-grab_header return=3D0xc000000000da7180 47 cat(6903): <-proc_sys_call_handler return=3D0x5 50 cat(6903):<-proc_sys_read return=3D0x5 0 cat(6903):->proc_sys_read filp=3D{.f_u=3D{.fu_list=3D{.next=3D0xc000= 000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D0xc000000= 136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000001392a23= 80, .dentry=3D0xc0000000fc33d0a8}, .f_op=3D0xc0000000005c3840, .f_lock=3D{.= raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65536, .f_m= ode=3D29, .f_pos=3D5, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}}, .pid= =3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D0xc0000= 00131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pages=3D2= , .mmap_miss=3D0,=20 22 cat(6903): ->proc_sys_call_handler filp=3D{.f_u=3D{.fu_list=3D{.next= =3D0xc000000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D= 0xc000000136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000= 001392a2380, .dentry=3D0xc0000000fc33d0a8}, .f_op=3D0xc0000000005c3840, .f_= lock=3D{.raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65= 536, .f_mode=3D29, .f_pos=3D5, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}= }, .pid=3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D= 0xc000000131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pa= ges=3D2, .mmap_miss=3D0,=20 42 cat(6903): ->grab_header inode=3D{.i_hash=3D{.next=3D0x0, .pprev=3D= 0x0}, .i_list=3D{.next=3D0xc0000001384a7988, .prev=3D0xc0000001384a56f8}, .= i_sb_list=3D{.next=3D0xc0000001384a7998, .prev=3D0xc0000001384a5708}, .i_de= ntry=3D{.next=3D0xc0000000fc33d118, .prev=3D0xc0000000fc33d118}, .i_ino=3D1= 04694, .i_count=3D{.counter=3D1}, .i_nlink=3D1, .i_uid=3D0, .i_gid=3D0, .i_= rdev=3D0, .i_version=3D0, .i_size=3D0, .i_atime=3D{.tv_sec=3D1296666942, .t= v_nsec=3D322727223}, .i_mtime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223= }, .i_ctime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223}, .i_blocks=3D0, = .i_blkbi 49 cat(6903): <-grab_header return=3D0xc000000000da7180 56 cat(6903): <-proc_sys_call_handler return=3D0x0 60 cat(6903):<-proc_sys_read return=3D0x0 0 cat(6903):->proc_sys_read filp=3D{.f_u=3D{.fu_list=3D{.next=3D0xc000= 000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D0xc000000= 136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000001392a23= 80, .dentry=3D0xc0000000eaac0628}, .f_op=3D0xc0000000005c3840, .f_lock=3D{.= raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65536, .f_m= ode=3D29, .f_pos=3D0, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}}, .pid= =3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D0xc0000= 00131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pages=3D2= , .mmap_miss=3D0,=20 19 cat(6903): ->proc_sys_call_handler filp=3D{.f_u=3D{.fu_list=3D{.next= =3D0xc000000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D= 0xc000000136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000= 001392a2380, .dentry=3D0xc0000000eaac0628}, .f_op=3D0xc0000000005c3840, .f_= lock=3D{.raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65= 536, .f_mode=3D29, .f_pos=3D0, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}= }, .pid=3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D= 0xc000000131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pa= ges=3D2, .mmap_miss=3D0,=20 35 cat(6903): ->grab_header inode=3D{.i_hash=3D{.next=3D0x0, .pprev=3D= 0x0}, .i_list=3D{.next=3D0xc0000001384991b8, .prev=3D0xc000000138490c68}, .= i_sb_list=3D{.next=3D0xc0000001384991c8, .prev=3D0xc000000138490c78}, .i_de= ntry=3D{.next=3D0xc0000000eaac0698, .prev=3D0xc0000000eaac0698}, .i_ino=3D1= 04677, .i_count=3D{.counter=3D1}, .i_nlink=3D1, .i_uid=3D0, .i_gid=3D0, .i_= rdev=3D0, .i_version=3D0, .i_size=3D0, .i_atime=3D{.tv_sec=3D1296666942, .t= v_nsec=3D322727223}, .i_mtime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223= }, .i_ctime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223}, .i_blocks=3D0, = .i_blkbi 41 cat(6903): <-grab_header return=3D0xc000000000da7180 46 cat(6903): <-proc_sys_call_handler return=3D0x2 49 cat(6903):<-proc_sys_read return=3D0x2 0 cat(6903):->proc_sys_read filp=3D{.f_u=3D{.fu_list=3D{.next=3D0xc000= 000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D0xc000000= 136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000001392a23= 80, .dentry=3D0xc0000000eaac0628}, .f_op=3D0xc0000000005c3840, .f_lock=3D{.= raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65536, .f_m= ode=3D29, .f_pos=3D2, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}}, .pid= =3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D0xc0000= 00131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pages=3D2= , .mmap_miss=3D0,=20 22 cat(6903): ->proc_sys_call_handler filp=3D{.f_u=3D{.fu_list=3D{.next= =3D0xc000000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D= 0xc000000136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000= 001392a2380, .dentry=3D0xc0000000eaac0628}, .f_op=3D0xc0000000005c3840, .f_= lock=3D{.raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65= 536, .f_mode=3D29, .f_pos=3D2, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}= }, .pid=3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D= 0xc000000131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pa= ges=3D2, .mmap_miss=3D0,=20 42 cat(6903): ->grab_header inode=3D{.i_hash=3D{.next=3D0x0, .pprev=3D= 0x0}, .i_list=3D{.next=3D0xc0000001384991b8, .prev=3D0xc000000138490c68}, .= i_sb_list=3D{.next=3D0xc0000001384991c8, .prev=3D0xc000000138490c78}, .i_de= ntry=3D{.next=3D0xc0000000eaac0698, .prev=3D0xc0000000eaac0698}, .i_ino=3D1= 04677, .i_count=3D{.counter=3D1}, .i_nlink=3D1, .i_uid=3D0, .i_gid=3D0, .i_= rdev=3D0, .i_version=3D0, .i_size=3D0, .i_atime=3D{.tv_sec=3D1296666942, .t= v_nsec=3D322727223}, .i_mtime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223= }, .i_ctime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223}, .i_blocks=3D0, = .i_blkbi 49 cat(6903): <-grab_header return=3D0xc000000000da7180 56 cat(6903): <-proc_sys_call_handler return=3D0x0 70 cat(6903):<-proc_sys_read return=3D0x0 0 cat(6903):->proc_sys_read filp=3D{.f_u=3D{.fu_list=3D{.next=3D0xc000= 000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D0xc000000= 136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000001392a23= 80, .dentry=3D0xc0000000eaac8668}, .f_op=3D0xc0000000005c3840, .f_lock=3D{.= raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65536, .f_m= ode=3D29, .f_pos=3D0, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}}, .pid= =3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D0xc0000= 00131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pages=3D2= , .mmap_miss=3D0,=20 19 cat(6903): ->proc_sys_call_handler filp=3D{.f_u=3D{.fu_list=3D{.next= =3D0xc000000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D= 0xc000000136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000= 001392a2380, .dentry=3D0xc0000000eaac8668}, .f_op=3D0xc0000000005c3840, .f_= lock=3D{.raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65= 536, .f_mode=3D29, .f_pos=3D0, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}= }, .pid=3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D= 0xc000000131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pa= ges=3D2, .mmap_miss=3D0,=20 35 cat(6903): ->grab_header inode=3D{.i_hash=3D{.next=3D0x0, .pprev=3D= 0x0}, .i_list=3D{.next=3D0xc00000013849a7f0, .prev=3D0xc000000138499920}, .= i_sb_list=3D{.next=3D0xc00000013849a800, .prev=3D0xc000000138499930}, .i_de= ntry=3D{.next=3D0xc0000000eaac86d8, .prev=3D0xc0000000eaac86d8}, .i_ino=3D1= 04680, .i_count=3D{.counter=3D1}, .i_nlink=3D1, .i_uid=3D0, .i_gid=3D0, .i_= rdev=3D0, .i_version=3D0, .i_size=3D0, .i_atime=3D{.tv_sec=3D1296666942, .t= v_nsec=3D322727223}, .i_mtime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223= }, .i_ctime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223}, .i_blocks=3D0, = .i_blkbi 41 cat(6903): <-grab_header return=3D0xc000000000da7180 46 cat(6903): <-proc_sys_call_handler return=3D0x2 49 cat(6903):<-proc_sys_read return=3D0x2 0 cat(6903):->proc_sys_read filp=3D{.f_u=3D{.fu_list=3D{.next=3D0xc000= 000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D0xc000000= 136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000001392a23= 80, .dentry=3D0xc0000000eaac8668}, .f_op=3D0xc0000000005c3840, .f_lock=3D{.= raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65536, .f_m= ode=3D29, .f_pos=3D2, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}}, .pid= =3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D0xc0000= 00131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pages=3D2= , .mmap_miss=3D0,=20 21 cat(6903): ->proc_sys_call_handler filp=3D{.f_u=3D{.fu_list=3D{.next= =3D0xc000000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D= 0xc000000136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000= 001392a2380, .dentry=3D0xc0000000eaac8668}, .f_op=3D0xc0000000005c3840, .f_= lock=3D{.raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65= 536, .f_mode=3D29, .f_pos=3D2, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}= }, .pid=3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D= 0xc000000131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pa= ges=3D2, .mmap_miss=3D0,=20 41 cat(6903): ->grab_header inode=3D{.i_hash=3D{.next=3D0x0, .pprev=3D= 0x0}, .i_list=3D{.next=3D0xc00000013849a7f0, .prev=3D0xc000000138499920}, .= i_sb_list=3D{.next=3D0xc00000013849a800, .prev=3D0xc000000138499930}, .i_de= ntry=3D{.next=3D0xc0000000eaac86d8, .prev=3D0xc0000000eaac86d8}, .i_ino=3D1= 04680, .i_count=3D{.counter=3D1}, .i_nlink=3D1, .i_uid=3D0, .i_gid=3D0, .i_= rdev=3D0, .i_version=3D0, .i_size=3D0, .i_atime=3D{.tv_sec=3D1296666942, .t= v_nsec=3D322727223}, .i_mtime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223= }, .i_ctime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223}, .i_blocks=3D0, = .i_blkbi 48 cat(6903): <-grab_header return=3D0xc000000000da7180 55 cat(6903): <-proc_sys_call_handler return=3D0x0 59 cat(6903):<-proc_sys_read return=3D0x0 0 cat(6903):->proc_sys_read filp=3D{.f_u=3D{.fu_list=3D{.next=3D0xc000= 000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D0xc000000= 136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000001392a23= 80, .dentry=3D0xc0000000eaacfaa8}, .f_op=3D0xc0000000005c3840, .f_lock=3D{.= raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65536, .f_m= ode=3D29, .f_pos=3D0, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}}, .pid= =3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D0xc0000= 00131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pages=3D2= , .mmap_miss=3D0,=20 18 cat(6903): ->proc_sys_call_handler filp=3D{.f_u=3D{.fu_list=3D{.next= =3D0xc000000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D= 0xc000000136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000= 001392a2380, .dentry=3D0xc0000000eaacfaa8}, .f_op=3D0xc0000000005c3840, .f_= lock=3D{.raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65= 536, .f_mode=3D29, .f_pos=3D0, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}= }, .pid=3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D= 0xc000000131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pa= ges=3D2, .mmap_miss=3D0,=20 35 cat(6903): ->grab_header inode=3D{.i_hash=3D{.next=3D0x0, .pprev=3D= 0x0}, .i_list=3D{.next=3D0xc000000138499b98, .prev=3D0xc0000001384991b8}, .= i_sb_list=3D{.next=3D0xc000000138499ba8, .prev=3D0xc0000001384991c8}, .i_de= ntry=3D{.next=3D0xc0000000eaacfb18, .prev=3D0xc0000000eaacfb18}, .i_ino=3D1= 04675, .i_count=3D{.counter=3D1}, .i_nlink=3D1, .i_uid=3D0, .i_gid=3D0, .i_= rdev=3D0, .i_version=3D0, .i_size=3D0, .i_atime=3D{.tv_sec=3D1296666942, .t= v_nsec=3D322727223}, .i_mtime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223= }, .i_ctime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223}, .i_blocks=3D0, = .i_blkbi 41 cat(6903): <-grab_header return=3D0xc000000000da7180 46 cat(6903): <-proc_sys_call_handler return=3D0x2 49 cat(6903):<-proc_sys_read return=3D0x2 0 cat(6903):->proc_sys_read filp=3D{.f_u=3D{.fu_list=3D{.next=3D0xc000= 000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D0xc000000= 136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000001392a23= 80, .dentry=3D0xc0000000eaacfaa8}, .f_op=3D0xc0000000005c3840, .f_lock=3D{.= raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65536, .f_m= ode=3D29, .f_pos=3D2, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}}, .pid= =3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D0xc0000= 00131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pages=3D2= , .mmap_miss=3D0,=20 22 cat(6903): ->proc_sys_call_handler filp=3D{.f_u=3D{.fu_list=3D{.next= =3D0xc000000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D= 0xc000000136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000= 001392a2380, .dentry=3D0xc0000000eaacfaa8}, .f_op=3D0xc0000000005c3840, .f_= lock=3D{.raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65= 536, .f_mode=3D29, .f_pos=3D2, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}= }, .pid=3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D= 0xc000000131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pa= ges=3D2, .mmap_miss=3D0,=20 40 cat(6903): ->grab_header inode=3D{.i_hash=3D{.next=3D0x0, .pprev=3D= 0x0}, .i_list=3D{.next=3D0xc000000138499b98, .prev=3D0xc0000001384991b8}, .= i_sb_list=3D{.next=3D0xc000000138499ba8, .prev=3D0xc0000001384991c8}, .i_de= ntry=3D{.next=3D0xc0000000eaacfb18, .prev=3D0xc0000000eaacfb18}, .i_ino=3D1= 04675, .i_count=3D{.counter=3D1}, .i_nlink=3D1, .i_uid=3D0, .i_gid=3D0, .i_= rdev=3D0, .i_version=3D0, .i_size=3D0, .i_atime=3D{.tv_sec=3D1296666942, .t= v_nsec=3D322727223}, .i_mtime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223= }, .i_ctime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223}, .i_blocks=3D0, = .i_blkbi 48 cat(6903): <-grab_header return=3D0xc000000000da7180 55 cat(6903): <-proc_sys_call_handler return=3D0x0 59 cat(6903):<-proc_sys_read return=3D0x0 0 cat(6903):->proc_sys_read filp=3D{.f_u=3D{.fu_list=3D{.next=3D0xc000= 000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D0xc000000= 136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000001392a23= 80, .dentry=3D0xc0000000fc3c31a8}, .f_op=3D0xc0000000005c3840, .f_lock=3D{.= raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65536, .f_m= ode=3D29, .f_pos=3D0, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}}, .pid= =3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D0xc0000= 00131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pages=3D2= , .mmap_miss=3D0,=20 19 cat(6903): ->proc_sys_call_handler filp=3D{.f_u=3D{.fu_list=3D{.next= =3D0xc000000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D= 0xc000000136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000= 001392a2380, .dentry=3D0xc0000000fc3c31a8}, .f_op=3D0xc0000000005c3840, .f_= lock=3D{.raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65= 536, .f_mode=3D29, .f_pos=3D0, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}= }, .pid=3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D= 0xc000000131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pa= ges=3D2, .mmap_miss=3D0,=20 35 cat(6903): ->grab_header inode=3D{.i_hash=3D{.next=3D0x0, .pprev=3D= 0x0}, .i_list=3D{.next=3D0xc0000001384a7498, .prev=3D0xc0000001384a6350}, .= i_sb_list=3D{.next=3D0xc0000001384a74a8, .prev=3D0xc0000001384a6360}, .i_de= ntry=3D{.next=3D0xc0000000fc3c3218, .prev=3D0xc0000000fc3c3218}, .i_ino=3D1= 04695, .i_count=3D{.counter=3D1}, .i_nlink=3D1, .i_uid=3D0, .i_gid=3D0, .i_= rdev=3D0, .i_version=3D0, .i_size=3D0, .i_atime=3D{.tv_sec=3D1296666942, .t= v_nsec=3D322727223}, .i_mtime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223= }, .i_ctime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223}, .i_blocks=3D0, = .i_blkbi 41 cat(6903): <-grab_header return=3D0xc000000000da7180 46 cat(6903): <-proc_sys_call_handler return=3D0x8 49 cat(6903):<-proc_sys_read return=3D0x8 0 cat(6903):->proc_sys_read filp=3D{.f_u=3D{.fu_list=3D{.next=3D0xc000= 000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D0xc000000= 136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000001392a23= 80, .dentry=3D0xc0000000fc3c31a8}, .f_op=3D0xc0000000005c3840, .f_lock=3D{.= raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65536, .f_m= ode=3D29, .f_pos=3D8, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}}, .pid= =3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D0xc0000= 00131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pages=3D2= , .mmap_miss=3D0,=20 22 cat(6903): ->proc_sys_call_handler filp=3D{.f_u=3D{.fu_list=3D{.next= =3D0xc000000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D= 0xc000000136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000= 001392a2380, .dentry=3D0xc0000000fc3c31a8}, .f_op=3D0xc0000000005c3840, .f_= lock=3D{.raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65= 536, .f_mode=3D29, .f_pos=3D8, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}= }, .pid=3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D= 0xc000000131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pa= ges=3D2, .mmap_miss=3D0,=20 41 cat(6903): ->grab_header inode=3D{.i_hash=3D{.next=3D0x0, .pprev=3D= 0x0}, .i_list=3D{.next=3D0xc0000001384a7498, .prev=3D0xc0000001384a6350}, .= i_sb_list=3D{.next=3D0xc0000001384a74a8, .prev=3D0xc0000001384a6360}, .i_de= ntry=3D{.next=3D0xc0000000fc3c3218, .prev=3D0xc0000000fc3c3218}, .i_ino=3D1= 04695, .i_count=3D{.counter=3D1}, .i_nlink=3D1, .i_uid=3D0, .i_gid=3D0, .i_= rdev=3D0, .i_version=3D0, .i_size=3D0, .i_atime=3D{.tv_sec=3D1296666942, .t= v_nsec=3D322727223}, .i_mtime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223= }, .i_ctime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223}, .i_blocks=3D0, = .i_blkbi 48 cat(6903): <-grab_header return=3D0xc000000000da7180 55 cat(6903): <-proc_sys_call_handler return=3D0x0 59 cat(6903):<-proc_sys_read return=3D0x0 0 cat(6903):->proc_sys_read filp=3D{.f_u=3D{.fu_list=3D{.next=3D0xc000= 000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D0xc000000= 136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000001392a23= 80, .dentry=3D0xc0000000eaac0868}, .f_op=3D0xc0000000005c3840, .f_lock=3D{.= raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65536, .f_m= ode=3D29, .f_pos=3D0, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}}, .pid= =3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D0xc0000= 00131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pages=3D2= , .mmap_miss=3D0,=20 18 cat(6903): ->proc_sys_call_handler filp=3D{.f_u=3D{.fu_list=3D{.next= =3D0xc000000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D= 0xc000000136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000= 001392a2380, .dentry=3D0xc0000000eaac0868}, .f_op=3D0xc0000000005c3840, .f_= lock=3D{.raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65= 536, .f_mode=3D29, .f_pos=3D0, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}= }, .pid=3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D= 0xc000000131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pa= ges=3D2, .mmap_miss=3D0,=20 35 cat(6903): ->grab_header inode=3D{.i_hash=3D{.next=3D0x0, .pprev=3D= 0x0}, .i_list=3D{.next=3D0xc00000013849ca80, .prev=3D0xc000000138497df8}, .= i_sb_list=3D{.next=3D0xc00000013849ca90, .prev=3D0xc000000138497e08}, .i_de= ntry=3D{.next=3D0xc0000000eaac08d8, .prev=3D0xc0000000eaac08d8}, .i_ino=3D1= 04665, .i_count=3D{.counter=3D1}, .i_nlink=3D1, .i_uid=3D0, .i_gid=3D0, .i_= rdev=3D0, .i_version=3D0, .i_size=3D0, .i_atime=3D{.tv_sec=3D1296666942, .t= v_nsec=3D322727223}, .i_mtime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223= }, .i_ctime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223}, .i_blocks=3D0, = .i_blkbi 41 cat(6903): <-grab_header return=3D0xc000000000da7180 46 cat(6903): <-proc_sys_call_handler return=3D0x2 49 cat(6903):<-proc_sys_read return=3D0x2 0 cat(6903):->proc_sys_read filp=3D{.f_u=3D{.fu_list=3D{.next=3D0xc000= 000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D0xc000000= 136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000001392a23= 80, .dentry=3D0xc0000000eaac0868}, .f_op=3D0xc0000000005c3840, .f_lock=3D{.= raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65536, .f_m= ode=3D29, .f_pos=3D2, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}}, .pid= =3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D0xc0000= 00131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pages=3D2= , .mmap_miss=3D0,=20 23 cat(6903): ->proc_sys_call_handler filp=3D{.f_u=3D{.fu_list=3D{.next= =3D0xc000000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D= 0xc000000136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000= 001392a2380, .dentry=3D0xc0000000eaac0868}, .f_op=3D0xc0000000005c3840, .f_= lock=3D{.raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65= 536, .f_mode=3D29, .f_pos=3D2, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}= }, .pid=3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D= 0xc000000131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pa= ges=3D2, .mmap_miss=3D0,=20 42 cat(6903): ->grab_header inode=3D{.i_hash=3D{.next=3D0x0, .pprev=3D= 0x0}, .i_list=3D{.next=3D0xc00000013849ca80, .prev=3D0xc000000138497df8}, .= i_sb_list=3D{.next=3D0xc00000013849ca90, .prev=3D0xc000000138497e08}, .i_de= ntry=3D{.next=3D0xc0000000eaac08d8, .prev=3D0xc0000000eaac08d8}, .i_ino=3D1= 04665, .i_count=3D{.counter=3D1}, .i_nlink=3D1, .i_uid=3D0, .i_gid=3D0, .i_= rdev=3D0, .i_version=3D0, .i_size=3D0, .i_atime=3D{.tv_sec=3D1296666942, .t= v_nsec=3D322727223}, .i_mtime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223= }, .i_ctime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223}, .i_blocks=3D0, = .i_blkbi 49 cat(6903): <-grab_header return=3D0xc000000000da7180 56 cat(6903): <-proc_sys_call_handler return=3D0x0 70 cat(6903):<-proc_sys_read return=3D0x0 0 cat(6903):->proc_sys_read filp=3D{.f_u=3D{.fu_list=3D{.next=3D0xc000= 000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D0xc000000= 136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000001392a23= 80, .dentry=3D0xc0000000eaacd768}, .f_op=3D0xc0000000005c3840, .f_lock=3D{.= raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65536, .f_m= ode=3D29, .f_pos=3D0, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}}, .pid= =3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D0xc0000= 00131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pages=3D2= , .mmap_miss=3D0,=20 19 cat(6903): ->proc_sys_call_handler filp=3D{.f_u=3D{.fu_list=3D{.next= =3D0xc000000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D= 0xc000000136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000= 001392a2380, .dentry=3D0xc0000000eaacd768}, .f_op=3D0xc0000000005c3840, .f_= lock=3D{.raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65= 536, .f_mode=3D29, .f_pos=3D0, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}= }, .pid=3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D= 0xc000000131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pa= ges=3D2, .mmap_miss=3D0,=20 36 cat(6903): ->grab_header inode=3D{.i_hash=3D{.next=3D0x0, .pprev=3D= 0x0}, .i_list=3D{.next=3D0xc00000013849be28, .prev=3D0xc00000013849b448}, .= i_sb_list=3D{.next=3D0xc00000013849be38, .prev=3D0xc00000013849b458}, .i_de= ntry=3D{.next=3D0xc0000000eaacd7d8, .prev=3D0xc0000000eaacd7d8}, .i_ino=3D1= 04662, .i_count=3D{.counter=3D1}, .i_nlink=3D1, .i_uid=3D0, .i_gid=3D0, .i_= rdev=3D0, .i_version=3D0, .i_size=3D0, .i_atime=3D{.tv_sec=3D1296666942, .t= v_nsec=3D322727223}, .i_mtime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223= }, .i_ctime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223}, .i_blocks=3D0, = .i_blkbi 42 cat(6903): <-grab_header return=3D0xc000000000da7180 47 cat(6903): <-proc_sys_call_handler return=3D0x2 50 cat(6903):<-proc_sys_read return=3D0x2 0 cat(6903):->proc_sys_read filp=3D{.f_u=3D{.fu_list=3D{.next=3D0xc000= 000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D0xc000000= 136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000001392a23= 80, .dentry=3D0xc0000000eaacd768}, .f_op=3D0xc0000000005c3840, .f_lock=3D{.= raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65536, .f_m= ode=3D29, .f_pos=3D2, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}}, .pid= =3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D0xc0000= 00131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pages=3D2= , .mmap_miss=3D0,=20 22 cat(6903): ->proc_sys_call_handler filp=3D{.f_u=3D{.fu_list=3D{.next= =3D0xc000000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D= 0xc000000136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000= 001392a2380, .dentry=3D0xc0000000eaacd768}, .f_op=3D0xc0000000005c3840, .f_= lock=3D{.raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65= 536, .f_mode=3D29, .f_pos=3D2, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}= }, .pid=3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D= 0xc000000131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pa= ges=3D2, .mmap_miss=3D0,=20 41 cat(6903): ->grab_header inode=3D{.i_hash=3D{.next=3D0x0, .pprev=3D= 0x0}, .i_list=3D{.next=3D0xc00000013849be28, .prev=3D0xc00000013849b448}, .= i_sb_list=3D{.next=3D0xc00000013849be38, .prev=3D0xc00000013849b458}, .i_de= ntry=3D{.next=3D0xc0000000eaacd7d8, .prev=3D0xc0000000eaacd7d8}, .i_ino=3D1= 04662, .i_count=3D{.counter=3D1}, .i_nlink=3D1, .i_uid=3D0, .i_gid=3D0, .i_= rdev=3D0, .i_version=3D0, .i_size=3D0, .i_atime=3D{.tv_sec=3D1296666942, .t= v_nsec=3D322727223}, .i_mtime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223= }, .i_ctime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223}, .i_blocks=3D0, = .i_blkbi 48 cat(6903): <-grab_header return=3D0xc000000000da7180 55 cat(6903): <-proc_sys_call_handler return=3D0x0 59 cat(6903):<-proc_sys_read return=3D0x0 0 cat(6903):->proc_sys_read filp=3D{.f_u=3D{.fu_list=3D{.next=3D0xc000= 000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D0xc000000= 136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000001392a23= 80, .dentry=3D0xc0000000eaacff28}, .f_op=3D0xc0000000005c3840, .f_lock=3D{.= raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65536, .f_m= ode=3D29, .f_pos=3D0, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}}, .pid= =3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D0xc0000= 00131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pages=3D2= , .mmap_miss=3D0,=20 19 cat(6903): ->proc_sys_call_handler filp=3D{.f_u=3D{.fu_list=3D{.next= =3D0xc000000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D= 0xc000000136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000= 001392a2380, .dentry=3D0xc0000000eaacff28}, .f_op=3D0xc0000000005c3840, .f_= lock=3D{.raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65= 536, .f_mode=3D29, .f_pos=3D0, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}= }, .pid=3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D= 0xc000000131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pa= ges=3D2, .mmap_miss=3D0,=20 35 cat(6903): ->grab_header inode=3D{.i_hash=3D{.next=3D0x0, .pprev=3D= 0x0}, .i_list=3D{.next=3D0xc000000138497b80, .prev=3D0xc00000013849be28}, .= i_sb_list=3D{.next=3D0xc000000138497b90, .prev=3D0xc00000013849be38}, .i_de= ntry=3D{.next=3D0xc0000000eaacff98, .prev=3D0xc0000000eaacff98}, .i_ino=3D1= 04660, .i_count=3D{.counter=3D1}, .i_nlink=3D1, .i_uid=3D0, .i_gid=3D0, .i_= rdev=3D0, .i_version=3D0, .i_size=3D0, .i_atime=3D{.tv_sec=3D1296666942, .t= v_nsec=3D322727223}, .i_mtime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223= }, .i_ctime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223}, .i_blocks=3D0, = .i_blkbi 41 cat(6903): <-grab_header return=3D0xc000000000da7180 46 cat(6903): <-proc_sys_call_handler return=3D0x2 49 cat(6903):<-proc_sys_read return=3D0x2 0 cat(6903):->proc_sys_read filp=3D{.f_u=3D{.fu_list=3D{.next=3D0xc000= 000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D0xc000000= 136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000001392a23= 80, .dentry=3D0xc0000000eaacff28}, .f_op=3D0xc0000000005c3840, .f_lock=3D{.= raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65536, .f_m= ode=3D29, .f_pos=3D2, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}}, .pid= =3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D0xc0000= 00131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pages=3D2= , .mmap_miss=3D0,=20 22 cat(6903): ->proc_sys_call_handler filp=3D{.f_u=3D{.fu_list=3D{.next= =3D0xc000000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D= 0xc000000136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000= 001392a2380, .dentry=3D0xc0000000eaacff28}, .f_op=3D0xc0000000005c3840, .f_= lock=3D{.raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65= 536, .f_mode=3D29, .f_pos=3D2, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}= }, .pid=3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D= 0xc000000131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pa= ges=3D2, .mmap_miss=3D0,=20 41 cat(6903): ->grab_header inode=3D{.i_hash=3D{.next=3D0x0, .pprev=3D= 0x0}, .i_list=3D{.next=3D0xc000000138497b80, .prev=3D0xc00000013849be28}, .= i_sb_list=3D{.next=3D0xc000000138497b90, .prev=3D0xc00000013849be38}, .i_de= ntry=3D{.next=3D0xc0000000eaacff98, .prev=3D0xc0000000eaacff98}, .i_ino=3D1= 04660, .i_count=3D{.counter=3D1}, .i_nlink=3D1, .i_uid=3D0, .i_gid=3D0, .i_= rdev=3D0, .i_version=3D0, .i_size=3D0, .i_atime=3D{.tv_sec=3D1296666942, .t= v_nsec=3D322727223}, .i_mtime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223= }, .i_ctime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223}, .i_blocks=3D0, = .i_blkbi 48 cat(6903): <-grab_header return=3D0xc000000000da7180 55 cat(6903): <-proc_sys_call_handler return=3D0x0 58 cat(6903):<-proc_sys_read return=3D0x0 0 cat(6903):->proc_sys_read filp=3D{.f_u=3D{.fu_list=3D{.next=3D0xc000= 000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D0xc000000= 136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000001392a23= 80, .dentry=3D0xc0000000eaacfce8}, .f_op=3D0xc0000000005c3840, .f_lock=3D{.= raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65536, .f_m= ode=3D29, .f_pos=3D0, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}}, .pid= =3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D0xc0000= 00131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pages=3D2= , .mmap_miss=3D0,=20 19 cat(6903): ->proc_sys_call_handler filp=3D{.f_u=3D{.fu_list=3D{.next= =3D0xc000000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D= 0xc000000136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000= 001392a2380, .dentry=3D0xc0000000eaacfce8}, .f_op=3D0xc0000000005c3840, .f_= lock=3D{.raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65= 536, .f_mode=3D29, .f_pos=3D0, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}= }, .pid=3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D= 0xc000000131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pa= ges=3D2, .mmap_miss=3D0,=20 35 cat(6903): ->grab_header inode=3D{.i_hash=3D{.next=3D0x0, .pprev=3D= 0x0}, .i_list=3D{.next=3D0xc000000138497df8, .prev=3D0xc00000013849cf70}, .= i_sb_list=3D{.next=3D0xc000000138497e08, .prev=3D0xc00000013849cf80}, .i_de= ntry=3D{.next=3D0xc0000000eaacfd58, .prev=3D0xc0000000eaacfd58}, .i_ino=3D1= 04667, .i_count=3D{.counter=3D1}, .i_nlink=3D1, .i_uid=3D0, .i_gid=3D0, .i_= rdev=3D0, .i_version=3D0, .i_size=3D0, .i_atime=3D{.tv_sec=3D1296666942, .t= v_nsec=3D322727223}, .i_mtime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223= }, .i_ctime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223}, .i_blocks=3D0, = .i_blkbi 41 cat(6903): <-grab_header return=3D0xc000000000da7180 47 cat(6903): <-proc_sys_call_handler return=3D0x3 50 cat(6903):<-proc_sys_read return=3D0x3 0 cat(6903):->proc_sys_read filp=3D{.f_u=3D{.fu_list=3D{.next=3D0xc000= 000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D0xc000000= 136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000001392a23= 80, .dentry=3D0xc0000000eaacfce8}, .f_op=3D0xc0000000005c3840, .f_lock=3D{.= raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65536, .f_m= ode=3D29, .f_pos=3D3, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}}, .pid= =3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D0xc0000= 00131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pages=3D2= , .mmap_miss=3D0,=20 21 cat(6903): ->proc_sys_call_handler filp=3D{.f_u=3D{.fu_list=3D{.next= =3D0xc000000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D= 0xc000000136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000= 001392a2380, .dentry=3D0xc0000000eaacfce8}, .f_op=3D0xc0000000005c3840, .f_= lock=3D{.raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65= 536, .f_mode=3D29, .f_pos=3D3, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}= }, .pid=3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D= 0xc000000131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pa= ges=3D2, .mmap_miss=3D0,=20 41 cat(6903): ->grab_header inode=3D{.i_hash=3D{.next=3D0x0, .pprev=3D= 0x0}, .i_list=3D{.next=3D0xc000000138497df8, .prev=3D0xc00000013849cf70}, .= i_sb_list=3D{.next=3D0xc000000138497e08, .prev=3D0xc00000013849cf80}, .i_de= ntry=3D{.next=3D0xc0000000eaacfd58, .prev=3D0xc0000000eaacfd58}, .i_ino=3D1= 04667, .i_count=3D{.counter=3D1}, .i_nlink=3D1, .i_uid=3D0, .i_gid=3D0, .i_= rdev=3D0, .i_version=3D0, .i_size=3D0, .i_atime=3D{.tv_sec=3D1296666942, .t= v_nsec=3D322727223}, .i_mtime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223= }, .i_ctime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223}, .i_blocks=3D0, = .i_blkbi 48 cat(6903): <-grab_header return=3D0xc000000000da7180 55 cat(6903): <-proc_sys_call_handler return=3D0x0 69 cat(6903):<-proc_sys_read return=3D0x0 0 cat(6903):->proc_sys_read filp=3D{.f_u=3D{.fu_list=3D{.next=3D0xc000= 000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D0xc000000= 136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000001392a23= 80, .dentry=3D0xc0000000eaacd2e8}, .f_op=3D0xc0000000005c3840, .f_lock=3D{.= raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65536, .f_m= ode=3D29, .f_pos=3D0, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}}, .pid= =3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D0xc0000= 00131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pages=3D2= , .mmap_miss=3D0,=20 18 cat(6903): ->proc_sys_call_handler filp=3D{.f_u=3D{.fu_list=3D{.next= =3D0xc000000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D= 0xc000000136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000= 001392a2380, .dentry=3D0xc0000000eaacd2e8}, .f_op=3D0xc0000000005c3840, .f_= lock=3D{.raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65= 536, .f_mode=3D29, .f_pos=3D0, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}= }, .pid=3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D= 0xc000000131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pa= ges=3D2, .mmap_miss=3D0,=20 35 cat(6903): ->grab_header inode=3D{.i_hash=3D{.next=3D0x0, .pprev=3D= 0x0}, .i_list=3D{.next=3D0xc00000013849d6d8, .prev=3D0xc00000013849e330}, .= i_sb_list=3D{.next=3D0xc00000013849d6e8, .prev=3D0xc00000013849e340}, .i_de= ntry=3D{.next=3D0xc0000000eaacd358, .prev=3D0xc0000000eaacd358}, .i_ino=3D1= 04668, .i_count=3D{.counter=3D1}, .i_nlink=3D1, .i_uid=3D0, .i_gid=3D0, .i_= rdev=3D0, .i_version=3D0, .i_size=3D0, .i_atime=3D{.tv_sec=3D1296666942, .t= v_nsec=3D322727223}, .i_mtime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223= }, .i_ctime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223}, .i_blocks=3D0, = .i_blkbi 41 cat(6903): <-grab_header return=3D0xc000000000da7180 46 cat(6903): <-proc_sys_call_handler return=3D0x2 49 cat(6903):<-proc_sys_read return=3D0x2 0 cat(6903):->proc_sys_read filp=3D{.f_u=3D{.fu_list=3D{.next=3D0xc000= 000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D0xc000000= 136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000001392a23= 80, .dentry=3D0xc0000000eaacd2e8}, .f_op=3D0xc0000000005c3840, .f_lock=3D{.= raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65536, .f_m= ode=3D29, .f_pos=3D2, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}}, .pid= =3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D0xc0000= 00131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pages=3D2= , .mmap_miss=3D0,=20 23 cat(6903): ->proc_sys_call_handler filp=3D{.f_u=3D{.fu_list=3D{.next= =3D0xc000000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D= 0xc000000136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000= 001392a2380, .dentry=3D0xc0000000eaacd2e8}, .f_op=3D0xc0000000005c3840, .f_= lock=3D{.raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65= 536, .f_mode=3D29, .f_pos=3D2, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}= }, .pid=3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D= 0xc000000131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pa= ges=3D2, .mmap_miss=3D0,=20 42 cat(6903): ->grab_header inode=3D{.i_hash=3D{.next=3D0x0, .pprev=3D= 0x0}, .i_list=3D{.next=3D0xc00000013849d6d8, .prev=3D0xc00000013849e330}, .= i_sb_list=3D{.next=3D0xc00000013849d6e8, .prev=3D0xc00000013849e340}, .i_de= ntry=3D{.next=3D0xc0000000eaacd358, .prev=3D0xc0000000eaacd358}, .i_ino=3D1= 04668, .i_count=3D{.counter=3D1}, .i_nlink=3D1, .i_uid=3D0, .i_gid=3D0, .i_= rdev=3D0, .i_version=3D0, .i_size=3D0, .i_atime=3D{.tv_sec=3D1296666942, .t= v_nsec=3D322727223}, .i_mtime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223= }, .i_ctime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223}, .i_blocks=3D0, = .i_blkbi 50 cat(6903): <-grab_header return=3D0xc000000000da7180 57 cat(6903): <-proc_sys_call_handler return=3D0x0 61 cat(6903):<-proc_sys_read return=3D0x0 0 cat(6903):->proc_sys_read filp=3D{.f_u=3D{.fu_list=3D{.next=3D0xc000= 000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D0xc000000= 136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000001392a23= 80, .dentry=3D0xc0000000eaace668}, .f_op=3D0xc0000000005c3840, .f_lock=3D{.= raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65536, .f_m= ode=3D29, .f_pos=3D0, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}}, .pid= =3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D0xc0000= 00131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pages=3D2= , .mmap_miss=3D0,=20 19 cat(6903): ->proc_sys_call_handler filp=3D{.f_u=3D{.fu_list=3D{.next= =3D0xc000000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D= 0xc000000136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000= 001392a2380, .dentry=3D0xc0000000eaace668}, .f_op=3D0xc0000000005c3840, .f_= lock=3D{.raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65= 536, .f_mode=3D29, .f_pos=3D0, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}= }, .pid=3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D= 0xc000000131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pa= ges=3D2, .mmap_miss=3D0,=20 36 cat(6903): ->grab_header inode=3D{.i_hash=3D{.next=3D0x0, .pprev=3D= 0x0}, .i_list=3D{.next=3D0xc000000138030be8, .prev=3D0xc000000138496cb0}, .= i_sb_list=3D{.next=3D0xc000000138030bf8, .prev=3D0xc000000138496cc0}, .i_de= ntry=3D{.next=3D0xc0000000eaace6d8, .prev=3D0xc0000000eaace6d8}, .i_ino=3D1= 04661, .i_count=3D{.counter=3D1}, .i_nlink=3D1, .i_uid=3D0, .i_gid=3D0, .i_= rdev=3D0, .i_version=3D0, .i_size=3D0, .i_atime=3D{.tv_sec=3D1296666942, .t= v_nsec=3D322727223}, .i_mtime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223= }, .i_ctime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223}, .i_blocks=3D0, = .i_blkbi 41 cat(6903): <-grab_header return=3D0xc000000000da7180 47 cat(6903): <-proc_sys_call_handler return=3D0x2 50 cat(6903):<-proc_sys_read return=3D0x2 0 cat(6903):->proc_sys_read filp=3D{.f_u=3D{.fu_list=3D{.next=3D0xc000= 000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D0xc000000= 136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000001392a23= 80, .dentry=3D0xc0000000eaace668}, .f_op=3D0xc0000000005c3840, .f_lock=3D{.= raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65536, .f_m= ode=3D29, .f_pos=3D2, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}}, .pid= =3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D0xc0000= 00131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pages=3D2= , .mmap_miss=3D0,=20 22 cat(6903): ->proc_sys_call_handler filp=3D{.f_u=3D{.fu_list=3D{.next= =3D0xc000000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D= 0xc000000136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000= 001392a2380, .dentry=3D0xc0000000eaace668}, .f_op=3D0xc0000000005c3840, .f_= lock=3D{.raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65= 536, .f_mode=3D29, .f_pos=3D2, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}= }, .pid=3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D= 0xc000000131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pa= ges=3D2, .mmap_miss=3D0,=20 41 cat(6903): ->grab_header inode=3D{.i_hash=3D{.next=3D0x0, .pprev=3D= 0x0}, .i_list=3D{.next=3D0xc000000138030be8, .prev=3D0xc000000138496cb0}, .= i_sb_list=3D{.next=3D0xc000000138030bf8, .prev=3D0xc000000138496cc0}, .i_de= ntry=3D{.next=3D0xc0000000eaace6d8, .prev=3D0xc0000000eaace6d8}, .i_ino=3D1= 04661, .i_count=3D{.counter=3D1}, .i_nlink=3D1, .i_uid=3D0, .i_gid=3D0, .i_= rdev=3D0, .i_version=3D0, .i_size=3D0, .i_atime=3D{.tv_sec=3D1296666942, .t= v_nsec=3D322727223}, .i_mtime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223= }, .i_ctime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223}, .i_blocks=3D0, = .i_blkbi 49 cat(6903): <-grab_header return=3D0xc000000000da7180 56 cat(6903): <-proc_sys_call_handler return=3D0x0 70 cat(6903):<-proc_sys_read return=3D0x0 0 cat(6903):->proc_sys_read filp=3D{.f_u=3D{.fu_list=3D{.next=3D0xc000= 000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D0xc000000= 136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000001392a23= 80, .dentry=3D0xc0000000eaac0b68}, .f_op=3D0xc0000000005c3840, .f_lock=3D{.= raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65536, .f_m= ode=3D29, .f_pos=3D0, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}}, .pid= =3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D0xc0000= 00131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pages=3D2= , .mmap_miss=3D0,=20 18 cat(6903): ->proc_sys_call_handler filp=3D{.f_u=3D{.fu_list=3D{.next= =3D0xc000000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D= 0xc000000136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000= 001392a2380, .dentry=3D0xc0000000eaac0b68}, .f_op=3D0xc0000000005c3840, .f_= lock=3D{.raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65= 536, .f_mode=3D29, .f_pos=3D0, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}= }, .pid=3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D= 0xc000000131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pa= ges=3D2, .mmap_miss=3D0,=20 35 cat(6903): ->grab_header inode=3D{.i_hash=3D{.next=3D0x0, .pprev=3D= 0x0}, .i_list=3D{.next=3D0xc00000013849f478, .prev=3D0xc00000013849a578}, .= i_sb_list=3D{.next=3D0xc00000013849f488, .prev=3D0xc00000013849a588}, .i_de= ntry=3D{.next=3D0xc0000000eaac0bd8, .prev=3D0xc0000000eaac0bd8}, .i_ino=3D1= 04684, .i_count=3D{.counter=3D1}, .i_nlink=3D1, .i_uid=3D0, .i_gid=3D0, .i_= rdev=3D0, .i_version=3D0, .i_size=3D0, .i_atime=3D{.tv_sec=3D1296666942, .t= v_nsec=3D322727223}, .i_mtime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223= }, .i_ctime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223}, .i_blocks=3D0, = .i_blkbi 41 cat(6903): <-grab_header return=3D0xc000000000da7180 46 cat(6903): <-proc_sys_call_handler return=3D0x2 49 cat(6903):<-proc_sys_read return=3D0x2 0 cat(6903):->proc_sys_read filp=3D{.f_u=3D{.fu_list=3D{.next=3D0xc000= 000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D0xc000000= 136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000001392a23= 80, .dentry=3D0xc0000000eaac0b68}, .f_op=3D0xc0000000005c3840, .f_lock=3D{.= raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65536, .f_m= ode=3D29, .f_pos=3D2, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}}, .pid= =3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D0xc0000= 00131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pages=3D2= , .mmap_miss=3D0,=20 22 cat(6903): ->proc_sys_call_handler filp=3D{.f_u=3D{.fu_list=3D{.next= =3D0xc000000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D= 0xc000000136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000= 001392a2380, .dentry=3D0xc0000000eaac0b68}, .f_op=3D0xc0000000005c3840, .f_= lock=3D{.raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65= 536, .f_mode=3D29, .f_pos=3D2, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}= }, .pid=3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D= 0xc000000131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pa= ges=3D2, .mmap_miss=3D0,=20 42 cat(6903): ->grab_header inode=3D{.i_hash=3D{.next=3D0x0, .pprev=3D= 0x0}, .i_list=3D{.next=3D0xc00000013849f478, .prev=3D0xc00000013849a578}, .= i_sb_list=3D{.next=3D0xc00000013849f488, .prev=3D0xc00000013849a588}, .i_de= ntry=3D{.next=3D0xc0000000eaac0bd8, .prev=3D0xc0000000eaac0bd8}, .i_ino=3D1= 04684, .i_count=3D{.counter=3D1}, .i_nlink=3D1, .i_uid=3D0, .i_gid=3D0, .i_= rdev=3D0, .i_version=3D0, .i_size=3D0, .i_atime=3D{.tv_sec=3D1296666942, .t= v_nsec=3D322727223}, .i_mtime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223= }, .i_ctime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223}, .i_blocks=3D0, = .i_blkbi 49 cat(6903): <-grab_header return=3D0xc000000000da7180 56 cat(6903): <-proc_sys_call_handler return=3D0x0 70 cat(6903):<-proc_sys_read return=3D0x0 0 cat(6903):->proc_sys_read filp=3D{.f_u=3D{.fu_list=3D{.next=3D0xc000= 000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D0xc000000= 136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000001392a23= 80, .dentry=3D0xc0000000fc3c30e8}, .f_op=3D0xc0000000005c3840, .f_lock=3D{.= raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65536, .f_m= ode=3D29, .f_pos=3D0, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}}, .pid= =3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D0xc0000= 00131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pages=3D2= , .mmap_miss=3D0,=20 18 cat(6903): ->proc_sys_call_handler filp=3D{.f_u=3D{.fu_list=3D{.next= =3D0xc000000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D= 0xc000000136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000= 001392a2380, .dentry=3D0xc0000000fc3c30e8}, .f_op=3D0xc0000000005c3840, .f_= lock=3D{.raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65= 536, .f_mode=3D29, .f_pos=3D0, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}= }, .pid=3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D= 0xc000000131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pa= ges=3D2, .mmap_miss=3D0,=20 35 cat(6903): ->grab_header inode=3D{.i_hash=3D{.next=3D0x0, .pprev=3D= 0x0}, .i_list=3D{.next=3D0xc0000001384a56f8, .prev=3D0xc000000000e008d0}, .= i_sb_list=3D{.next=3D0xc0000001384a5708, .prev=3D0xc00000013a0c9e48}, .i_de= ntry=3D{.next=3D0xc0000000fc3c3158, .prev=3D0xc0000000fc3c3158}, .i_ino=3D1= 04696, .i_count=3D{.counter=3D1}, .i_nlink=3D1, .i_uid=3D0, .i_gid=3D0, .i_= rdev=3D0, .i_version=3D0, .i_size=3D0, .i_atime=3D{.tv_sec=3D1296666942, .t= v_nsec=3D322727223}, .i_mtime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223= }, .i_ctime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223}, .i_blocks=3D0, = .i_blkbi 41 cat(6903): <-grab_header return=3D0xc000000000da7180 46 cat(6903): <-proc_sys_call_handler return=3D0x2 49 cat(6903):<-proc_sys_read return=3D0x2 0 cat(6903):->proc_sys_read filp=3D{.f_u=3D{.fu_list=3D{.next=3D0xc000= 000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D0xc000000= 136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000001392a23= 80, .dentry=3D0xc0000000fc3c30e8}, .f_op=3D0xc0000000005c3840, .f_lock=3D{.= raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65536, .f_m= ode=3D29, .f_pos=3D2, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}}, .pid= =3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D0xc0000= 00131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pages=3D2= , .mmap_miss=3D0,=20 22 cat(6903): ->proc_sys_call_handler filp=3D{.f_u=3D{.fu_list=3D{.next= =3D0xc000000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D= 0xc000000136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000= 001392a2380, .dentry=3D0xc0000000fc3c30e8}, .f_op=3D0xc0000000005c3840, .f_= lock=3D{.raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65= 536, .f_mode=3D29, .f_pos=3D2, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}= }, .pid=3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D= 0xc000000131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pa= ges=3D2, .mmap_miss=3D0,=20 50 cat(6903): ->grab_header inode=3D{.i_hash=3D{.next=3D0x0, .pprev=3D= 0x0}, .i_list=3D{.next=3D0xc0000001384a56f8, .prev=3D0xc000000000e008d0}, .= i_sb_list=3D{.next=3D0xc0000001384a5708, .prev=3D0xc00000013a0c9e48}, .i_de= ntry=3D{.next=3D0xc0000000fc3c3158, .prev=3D0xc0000000fc3c3158}, .i_ino=3D1= 04696, .i_count=3D{.counter=3D1}, .i_nlink=3D1, .i_uid=3D0, .i_gid=3D0, .i_= rdev=3D0, .i_version=3D0, .i_size=3D0, .i_atime=3D{.tv_sec=3D1296666942, .t= v_nsec=3D322727223}, .i_mtime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223= }, .i_ctime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223}, .i_blocks=3D0, = .i_blkbi 56 cat(6903): <-grab_header return=3D0xc000000000da7180 61 cat(6903): <-proc_sys_call_handler return=3D0x0 64 cat(6903):<-proc_sys_read return=3D0x0 0 cat(6903):->proc_sys_read filp=3D{.f_u=3D{.fu_list=3D{.next=3D0xc000= 000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D0xc000000= 136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000001392a23= 80, .dentry=3D0xc0000000e18030e8}, .f_op=3D0xc0000000005c3840, .f_lock=3D{.= raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65536, .f_m= ode=3D29, .f_pos=3D0, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}}, .pid= =3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D0xc0000= 00131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pages=3D2= , .mmap_miss=3D0,=20 18 cat(6903): ->proc_sys_call_handler filp=3D{.f_u=3D{.fu_list=3D{.next= =3D0xc000000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D= 0xc000000136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000= 001392a2380, .dentry=3D0xc0000000e18030e8}, .f_op=3D0xc0000000005c3840, .f_= lock=3D{.raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65= 536, .f_mode=3D29, .f_pos=3D0, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}= }, .pid=3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D= 0xc000000131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pa= ges=3D2, .mmap_miss=3D0,=20 35 cat(6903): ->grab_header inode=3D{.i_hash=3D{.next=3D0x0, .pprev=3D= 0x0}, .i_list=3D{.next=3D0xc0000001384a7710, .prev=3D0xc0000001384a7498}, .= i_sb_list=3D{.next=3D0xc0000001384a7720, .prev=3D0xc0000001384a74a8}, .i_de= ntry=3D{.next=3D0xc0000000e1803158, .prev=3D0xc0000000e1803158}, .i_ino=3D1= 04693, .i_count=3D{.counter=3D1}, .i_nlink=3D1, .i_uid=3D0, .i_gid=3D0, .i_= rdev=3D0, .i_version=3D0, .i_size=3D0, .i_atime=3D{.tv_sec=3D1296666942, .t= v_nsec=3D322727223}, .i_mtime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223= }, .i_ctime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223}, .i_blocks=3D0, = .i_blkbi 41 cat(6903): <-grab_header return=3D0xc000000000da7180 46 cat(6903): <-proc_sys_call_handler return=3D0x2 49 cat(6903):<-proc_sys_read return=3D0x2 0 cat(6903):->proc_sys_read filp=3D{.f_u=3D{.fu_list=3D{.next=3D0xc000= 000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D0xc000000= 136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000001392a23= 80, .dentry=3D0xc0000000e18030e8}, .f_op=3D0xc0000000005c3840, .f_lock=3D{.= raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65536, .f_m= ode=3D29, .f_pos=3D2, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}}, .pid= =3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D0xc0000= 00131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pages=3D2= , .mmap_miss=3D0,=20 22 cat(6903): ->proc_sys_call_handler filp=3D{.f_u=3D{.fu_list=3D{.next= =3D0xc000000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D= 0xc000000136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000= 001392a2380, .dentry=3D0xc0000000e18030e8}, .f_op=3D0xc0000000005c3840, .f_= lock=3D{.raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65= 536, .f_mode=3D29, .f_pos=3D2, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}= }, .pid=3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D= 0xc000000131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pa= ges=3D2, .mmap_miss=3D0,=20 63 cat(6903): ->grab_header inode=3D{.i_hash=3D{.next=3D0x0, .pprev=3D= 0x0}, .i_list=3D{.next=3D0xc0000001384a7710, .prev=3D0xc0000001384a7498}, .= i_sb_list=3D{.next=3D0xc0000001384a7720, .prev=3D0xc0000001384a74a8}, .i_de= ntry=3D{.next=3D0xc0000000e1803158, .prev=3D0xc0000000e1803158}, .i_ino=3D1= 04693, .i_count=3D{.counter=3D1}, .i_nlink=3D1, .i_uid=3D0, .i_gid=3D0, .i_= rdev=3D0, .i_version=3D0, .i_size=3D0, .i_atime=3D{.tv_sec=3D1296666942, .t= v_nsec=3D322727223}, .i_mtime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223= }, .i_ctime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223}, .i_blocks=3D0, = .i_blkbi 69 cat(6903): <-grab_header return=3D0xc000000000da7180 75 cat(6903): <-proc_sys_call_handler return=3D0x0 78 cat(6903):<-proc_sys_read return=3D0x0 0 cat(6903):->proc_sys_read filp=3D{.f_u=3D{.fu_list=3D{.next=3D0xc000= 000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D0xc000000= 136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000001392a23= 80, .dentry=3D0xc0000000eaaca9a8}, .f_op=3D0xc0000000005c3840, .f_lock=3D{.= raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65536, .f_m= ode=3D29, .f_pos=3D0, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}}, .pid= =3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D0xc0000= 00131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pages=3D2= , .mmap_miss=3D0,=20 19 cat(6903): ->proc_sys_call_handler filp=3D{.f_u=3D{.fu_list=3D{.next= =3D0xc000000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D= 0xc000000136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000= 001392a2380, .dentry=3D0xc0000000eaaca9a8}, .f_op=3D0xc0000000005c3840, .f_= lock=3D{.raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65= 536, .f_mode=3D29, .f_pos=3D0, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}= }, .pid=3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D= 0xc000000131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pa= ges=3D2, .mmap_miss=3D0,=20 35 cat(6903): ->grab_header inode=3D{.i_hash=3D{.next=3D0x0, .pprev=3D= 0x0}, .i_list=3D{.next=3D0xc000000138498070, .prev=3D0xc00000013849a300}, .= i_sb_list=3D{.next=3D0xc000000138498080, .prev=3D0xc00000013849a310}, .i_de= ntry=3D{.next=3D0xc0000000eaacaa18, .prev=3D0xc0000000eaacaa18}, .i_ino=3D1= 04676, .i_count=3D{.counter=3D1}, .i_nlink=3D1, .i_uid=3D0, .i_gid=3D0, .i_= rdev=3D0, .i_version=3D0, .i_size=3D0, .i_atime=3D{.tv_sec=3D1296666942, .t= v_nsec=3D322727223}, .i_mtime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223= }, .i_ctime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223}, .i_blocks=3D0, = .i_blkbi 41 cat(6903): <-grab_header return=3D0xc000000000da7180 46 cat(6903): <-proc_sys_call_handler return=3D0x3 49 cat(6903):<-proc_sys_read return=3D0x3 0 cat(6903):->proc_sys_read filp=3D{.f_u=3D{.fu_list=3D{.next=3D0xc000= 000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D0xc000000= 136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000001392a23= 80, .dentry=3D0xc0000000eaaca9a8}, .f_op=3D0xc0000000005c3840, .f_lock=3D{.= raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65536, .f_m= ode=3D29, .f_pos=3D3, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}}, .pid= =3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D0xc0000= 00131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pages=3D2= , .mmap_miss=3D0,=20 21 cat(6903): ->proc_sys_call_handler filp=3D{.f_u=3D{.fu_list=3D{.next= =3D0xc000000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D= 0xc000000136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000= 001392a2380, .dentry=3D0xc0000000eaaca9a8}, .f_op=3D0xc0000000005c3840, .f_= lock=3D{.raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65= 536, .f_mode=3D29, .f_pos=3D3, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}= }, .pid=3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D= 0xc000000131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pa= ges=3D2, .mmap_miss=3D0,=20 40 cat(6903): ->grab_header inode=3D{.i_hash=3D{.next=3D0x0, .pprev=3D= 0x0}, .i_list=3D{.next=3D0xc000000138498070, .prev=3D0xc00000013849a300}, .= i_sb_list=3D{.next=3D0xc000000138498080, .prev=3D0xc00000013849a310}, .i_de= ntry=3D{.next=3D0xc0000000eaacaa18, .prev=3D0xc0000000eaacaa18}, .i_ino=3D1= 04676, .i_count=3D{.counter=3D1}, .i_nlink=3D1, .i_uid=3D0, .i_gid=3D0, .i_= rdev=3D0, .i_version=3D0, .i_size=3D0, .i_atime=3D{.tv_sec=3D1296666942, .t= v_nsec=3D322727223}, .i_mtime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223= }, .i_ctime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223}, .i_blocks=3D0, = .i_blkbi 48 cat(6903): <-grab_header return=3D0xc000000000da7180 55 cat(6903): <-proc_sys_call_handler return=3D0x0 59 cat(6903):<-proc_sys_read return=3D0x0 0 cat(6903):->proc_sys_read filp=3D{.f_u=3D{.fu_list=3D{.next=3D0xc000= 000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D0xc000000= 136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000001392a23= 80, .dentry=3D0xc0000000eaac8c68}, .f_op=3D0xc0000000005c3840, .f_lock=3D{.= raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65536, .f_m= ode=3D29, .f_pos=3D0, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}}, .pid= =3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D0xc0000= 00131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pages=3D2= , .mmap_miss=3D0,=20 19 cat(6903): ->proc_sys_call_handler filp=3D{.f_u=3D{.fu_list=3D{.next= =3D0xc000000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D= 0xc000000136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000= 001392a2380, .dentry=3D0xc0000000eaac8c68}, .f_op=3D0xc0000000005c3840, .f_= lock=3D{.raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65= 536, .f_mode=3D29, .f_pos=3D0, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}= }, .pid=3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D= 0xc000000131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pa= ges=3D2, .mmap_miss=3D0,=20 36 cat(6903): ->grab_header inode=3D{.i_hash=3D{.next=3D0x0, .pprev=3D= 0x0}, .i_list=3D{.next=3D0xc00000013849f200, .prev=3D0xc0000001384ab9b8}, .= i_sb_list=3D{.next=3D0xc00000013849f210, .prev=3D0xc0000001384ab9c8}, .i_de= ntry=3D{.next=3D0xc0000000eaac8cd8, .prev=3D0xc0000000eaac8cd8}, .i_ino=3D1= 04688, .i_count=3D{.counter=3D1}, .i_nlink=3D1, .i_uid=3D0, .i_gid=3D0, .i_= rdev=3D0, .i_version=3D0, .i_size=3D0, .i_atime=3D{.tv_sec=3D1296666942, .t= v_nsec=3D322727223}, .i_mtime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223= }, .i_ctime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223}, .i_blocks=3D0, = .i_blkbi 41 cat(6903): <-grab_header return=3D0xc000000000da7180 47 cat(6903): <-proc_sys_call_handler return=3D0x4 50 cat(6903):<-proc_sys_read return=3D0x4 0 cat(6903):->proc_sys_read filp=3D{.f_u=3D{.fu_list=3D{.next=3D0xc000= 000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D0xc000000= 136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000001392a23= 80, .dentry=3D0xc0000000eaac8c68}, .f_op=3D0xc0000000005c3840, .f_lock=3D{.= raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65536, .f_m= ode=3D29, .f_pos=3D4, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}}, .pid= =3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D0xc0000= 00131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pages=3D2= , .mmap_miss=3D0,=20 22 cat(6903): ->proc_sys_call_handler filp=3D{.f_u=3D{.fu_list=3D{.next= =3D0xc000000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D= 0xc000000136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000= 001392a2380, .dentry=3D0xc0000000eaac8c68}, .f_op=3D0xc0000000005c3840, .f_= lock=3D{.raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65= 536, .f_mode=3D29, .f_pos=3D4, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}= }, .pid=3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D= 0xc000000131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pa= ges=3D2, .mmap_miss=3D0,=20 42 cat(6903): ->grab_header inode=3D{.i_hash=3D{.next=3D0x0, .pprev=3D= 0x0}, .i_list=3D{.next=3D0xc00000013849f200, .prev=3D0xc0000001384ab9b8}, .= i_sb_list=3D{.next=3D0xc00000013849f210, .prev=3D0xc0000001384ab9c8}, .i_de= ntry=3D{.next=3D0xc0000000eaac8cd8, .prev=3D0xc0000000eaac8cd8}, .i_ino=3D1= 04688, .i_count=3D{.counter=3D1}, .i_nlink=3D1, .i_uid=3D0, .i_gid=3D0, .i_= rdev=3D0, .i_version=3D0, .i_size=3D0, .i_atime=3D{.tv_sec=3D1296666942, .t= v_nsec=3D322727223}, .i_mtime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223= }, .i_ctime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223}, .i_blocks=3D0, = .i_blkbi 49 cat(6903): <-grab_header return=3D0xc000000000da7180 56 cat(6903): <-proc_sys_call_handler return=3D0x0 60 cat(6903):<-proc_sys_read return=3D0x0 0 cat(6903):->proc_sys_read filp=3D{.f_u=3D{.fu_list=3D{.next=3D0xc000= 000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D0xc000000= 136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000001392a23= 80, .dentry=3D0xc0000000eaac66e8}, .f_op=3D0xc0000000005c3840, .f_lock=3D{.= raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65536, .f_m= ode=3D29, .f_pos=3D0, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}}, .pid= =3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D0xc0000= 00131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pages=3D2= , .mmap_miss=3D0,=20 19 cat(6903): ->proc_sys_call_handler filp=3D{.f_u=3D{.fu_list=3D{.next= =3D0xc000000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D= 0xc000000136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000= 001392a2380, .dentry=3D0xc0000000eaac66e8}, .f_op=3D0xc0000000005c3840, .f_= lock=3D{.raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65= 536, .f_mode=3D29, .f_pos=3D0, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}= }, .pid=3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D= 0xc000000131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pa= ges=3D2, .mmap_miss=3D0,=20 35 cat(6903): ->grab_header inode=3D{.i_hash=3D{.next=3D0x0, .pprev=3D= 0x0}, .i_list=3D{.next=3D0xc00000013849b6c0, .prev=3D0xc00000013849d6d8}, .= i_sb_list=3D{.next=3D0xc00000013849b6d0, .prev=3D0xc00000013849d6e8}, .i_de= ntry=3D{.next=3D0xc0000000eaac6758, .prev=3D0xc0000000eaac6758}, .i_ino=3D1= 04666, .i_count=3D{.counter=3D1}, .i_nlink=3D1, .i_uid=3D0, .i_gid=3D0, .i_= rdev=3D0, .i_version=3D0, .i_size=3D0, .i_atime=3D{.tv_sec=3D1296666942, .t= v_nsec=3D322727223}, .i_mtime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223= }, .i_ctime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223}, .i_blocks=3D0, = .i_blkbi 41 cat(6903): <-grab_header return=3D0xc000000000da7180 47 cat(6903): <-proc_sys_call_handler return=3D0x2 49 cat(6903):<-proc_sys_read return=3D0x2 0 cat(6903):->proc_sys_read filp=3D{.f_u=3D{.fu_list=3D{.next=3D0xc000= 000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D0xc000000= 136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000001392a23= 80, .dentry=3D0xc0000000eaac66e8}, .f_op=3D0xc0000000005c3840, .f_lock=3D{.= raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65536, .f_m= ode=3D29, .f_pos=3D2, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}}, .pid= =3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D0xc0000= 00131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pages=3D2= , .mmap_miss=3D0,=20 21 cat(6903): ->proc_sys_call_handler filp=3D{.f_u=3D{.fu_list=3D{.next= =3D0xc000000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D= 0xc000000136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000= 001392a2380, .dentry=3D0xc0000000eaac66e8}, .f_op=3D0xc0000000005c3840, .f_= lock=3D{.raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65= 536, .f_mode=3D29, .f_pos=3D2, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}= }, .pid=3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D= 0xc000000131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pa= ges=3D2, .mmap_miss=3D0,=20 40 cat(6903): ->grab_header inode=3D{.i_hash=3D{.next=3D0x0, .pprev=3D= 0x0}, .i_list=3D{.next=3D0xc00000013849b6c0, .prev=3D0xc00000013849d6d8}, .= i_sb_list=3D{.next=3D0xc00000013849b6d0, .prev=3D0xc00000013849d6e8}, .i_de= ntry=3D{.next=3D0xc0000000eaac6758, .prev=3D0xc0000000eaac6758}, .i_ino=3D1= 04666, .i_count=3D{.counter=3D1}, .i_nlink=3D1, .i_uid=3D0, .i_gid=3D0, .i_= rdev=3D0, .i_version=3D0, .i_size=3D0, .i_atime=3D{.tv_sec=3D1296666942, .t= v_nsec=3D322727223}, .i_mtime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223= }, .i_ctime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223}, .i_blocks=3D0, = .i_blkbi 47 cat(6903): <-grab_header return=3D0xc000000000da7180 54 cat(6903): <-proc_sys_call_handler return=3D0x0 58 cat(6903):<-proc_sys_read return=3D0x0 0 cat(6903):->proc_sys_read filp=3D{.f_u=3D{.fu_list=3D{.next=3D0xc000= 000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D0xc000000= 136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000001392a23= 80, .dentry=3D0xc0000000eaac2728}, .f_op=3D0xc0000000005c3840, .f_lock=3D{.= raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65536, .f_m= ode=3D29, .f_pos=3D0, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}}, .pid= =3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D0xc0000= 00131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pages=3D2= , .mmap_miss=3D0,=20 19 cat(6903): ->proc_sys_call_handler filp=3D{.f_u=3D{.fu_list=3D{.next= =3D0xc000000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D= 0xc000000136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000= 001392a2380, .dentry=3D0xc0000000eaac2728}, .f_op=3D0xc0000000005c3840, .f_= lock=3D{.raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65= 536, .f_mode=3D29, .f_pos=3D0, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}= }, .pid=3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D= 0xc000000131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pa= ges=3D2, .mmap_miss=3D0,=20 36 cat(6903): ->grab_header inode=3D{.i_hash=3D{.next=3D0x0, .pprev=3D= 0x0}, .i_list=3D{.next=3D0xc0000001384ab9b8, .prev=3D0xc0000001384ab740}, .= i_sb_list=3D{.next=3D0xc0000001384ab9c8, .prev=3D0xc0000001384ab750}, .i_de= ntry=3D{.next=3D0xc0000000eaac2798, .prev=3D0xc0000000eaac2798}, .i_ino=3D1= 04690, .i_count=3D{.counter=3D1}, .i_nlink=3D1, .i_uid=3D0, .i_gid=3D0, .i_= rdev=3D0, .i_version=3D0, .i_size=3D0, .i_atime=3D{.tv_sec=3D1296666942, .t= v_nsec=3D322727223}, .i_mtime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223= }, .i_ctime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223}, .i_blocks=3D0, = .i_blkbi 41 cat(6903): <-grab_header return=3D0xc000000000da7180 47 cat(6903): <-proc_sys_call_handler return=3D0x2 50 cat(6903):<-proc_sys_read return=3D0x2 0 cat(6903):->proc_sys_read filp=3D{.f_u=3D{.fu_list=3D{.next=3D0xc000= 000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D0xc000000= 136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000001392a23= 80, .dentry=3D0xc0000000eaac2728}, .f_op=3D0xc0000000005c3840, .f_lock=3D{.= raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65536, .f_m= ode=3D29, .f_pos=3D2, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}}, .pid= =3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D0xc0000= 00131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pages=3D2= , .mmap_miss=3D0,=20 21 cat(6903): ->proc_sys_call_handler filp=3D{.f_u=3D{.fu_list=3D{.next= =3D0xc000000136d7ef80, .prev=3D0xc00000013a0c9e60}, .fu_rcuhead=3D{.next=3D= 0xc000000136d7ef80, .func=3D0xc00000013a0c9e60}}, .f_path=3D{.mnt=3D0xc0000= 001392a2380, .dentry=3D0xc0000000eaac2728}, .f_op=3D0xc0000000005c3840, .f_= lock=3D{.raw_lock=3D{.slock=3D0}}, .f_count=3D{.counter=3D1}, .f_flags=3D65= 536, .f_mode=3D29, .f_pos=3D2, .f_owner=3D{.lock=3D{.raw_lock=3D{.lock=3D0}= }, .pid=3D0x0, .pid_type=3D0, .uid=3D0, .euid=3D0, .signum=3D0}, .f_cred=3D= 0xc000000131982d80, .f_ra=3D{.start=3D0, .size=3D0, .async_size=3D0, .ra_pa= ges=3D2, .mmap_miss=3D0,=20 41 cat(6903): ->grab_header inode=3D{.i_hash=3D{.next=3D0x0, .pprev=3D= 0x0}, .i_list=3D{.next=3D0xc0000001384ab9b8, .prev=3D0xc0000001384ab740}, .= i_sb_list=3D{.next=3D0xc0000001384ab9c8, .prev=3D0xc0000001384ab750}, .i_de= ntry=3D{.next=3D0xc0000000eaac2798, .prev=3D0xc0000000eaac2798}, .i_ino=3D1= 04690, .i_count=3D{.counter=3D1}, .i_nlink=3D1, .i_uid=3D0, .i_gid=3D0, .i_= rdev=3D0, .i_version=3D0, .i_size=3D0, .i_atime=3D{.tv_sec=3D1296666942, .t= v_nsec=3D322727223}, .i_mtime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223= }, .i_ctime=3D{.tv_sec=3D1296666942, .tv_nsec=3D322727223}, .i_blocks=3D0, = .i_blkbi 48 cat(6903): <-grab_header return=3D0xc000000000da7180 55 cat(6903): <-proc_sys_call_handler return=3D0x0 59 cat(6903):<-proc_sys_read return=3D0x0 WARNING: Number of errors: 0, skipped probes: 154 RC 0 PASS: systemtap.examples/general/para-callgraph-verbose run meta taglines '' tag 'test_support' value '' meta taglines 'test_check: stap -p4 para-callgraph.stp 'kernel.function("*@= fs/proc*.c")' 'kernel.function("vfs_read")'' tag 'test_check' value 'stap -= p4 para-callgraph.stp 'kernel.function("*@fs/proc*.c")' 'kernel.function("v= fs_read")'' attempting command stap -p4 para-callgraph.stp 'kernel.function("*@fs/proc*= .c")' 'kernel.function("vfs_read")' OUT /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/ae/stap_aedee0= 0556ba1cb8fe3053ac2b614422_125139.ko RC 0 PASS: systemtap.examples/general/para-callgraph build meta taglines 'test_installcheck: stap para-callgraph.stp 'kernel.function(= "*@fs/proc*.c")' 'kernel.function("vfs_read")' -c "cat /proc/sys/vm/*"' tag= 'test_installcheck' value 'stap para-callgraph.stp 'kernel.function("*@fs/= proc*.c")' 'kernel.function("vfs_read")' -c "cat /proc/sys/vm/*"' attempting command stap para-callgraph.stp 'kernel.function("*@fs/proc*.c")= ' 'kernel.function("vfs_read")' -c "cat /proc/sys/vm/*" OUT 0 cat: /proc/sys/vm/compact_memory: Permission denied 0 10 0 3000 20 500 0 500 0 0 0 0 256 32 65530 9097 5 1 4096 0 0 0 default 0 0 0 50 3 0 0 0 1 60 100 0 0 0 cat(7130):->proc_sys_read filp=3D0xc0000000fd1c5d80 buf=3D0x1002b950= 000 count=3D0x10000 ppos=3D0xc0000000031f3df8 6 cat(7130): ->proc_sys_call_handler filp=3D0xc0000000fd1c5d80 buf=3D0= x1002b950000 count=3D0x10000 ppos=3D0xc0000000031f3df8 write=3D0x0 11 cat(7130): ->grab_header inode=3D0xc00000013849f1f0 14 cat(7130): <-grab_header return=3D0xc000000000da7180 28 cat(7130): <-proc_sys_call_handler return=3D0x2 31 cat(7130):<-proc_sys_read return=3D0x2 0 cat(7130):->proc_sys_read filp=3D0xc0000000fd1c5d80 buf=3D0x1002b950= 000 count=3D0x10000 ppos=3D0xc0000000031f3df8 7 cat(7130): ->proc_sys_call_handler filp=3D0xc0000000fd1c5d80 buf=3D0= x1002b950000 count=3D0x10000 ppos=3D0xc0000000031f3df8 write=3D0x0 11 cat(7130): ->grab_header inode=3D0xc00000013849f1f0 15 cat(7130): <-grab_header return=3D0xc000000000da7180 22 cat(7130): <-proc_sys_call_handler return=3D0x0 25 cat(7130):<-proc_sys_read return=3D0x0 0 cat(7130):->proc_sys_read filp=3D0xc000000136d7ee80 buf=3D0x1002b950= 000 count=3D0x10000 ppos=3D0xc0000000031f3df8 6 cat(7130): ->proc_sys_call_handler filp=3D0xc000000136d7ee80 buf=3D0= x1002b950000 count=3D0x10000 ppos=3D0xc0000000031f3df8 write=3D0x0 10 cat(7130): ->grab_header inode=3D0xc00000013849ed00 13 cat(7130): <-grab_header return=3D0xc000000000da7180 19 cat(7130): <-proc_sys_call_handler return=3D0x2 22 cat(7130):<-proc_sys_read return=3D0x2 0 cat(7130):->proc_sys_read filp=3D0xc000000136d7ee80 buf=3D0x1002b950= 000 count=3D0x10000 ppos=3D0xc0000000031f3df8 7 cat(7130): ->proc_sys_call_handler filp=3D0xc000000136d7ee80 buf=3D0= x1002b950000 count=3D0x10000 ppos=3D0xc0000000031f3df8 write=3D0x0 13 cat(7130): ->grab_header inode=3D0xc00000013849ed00 18 cat(7130): <-grab_header return=3D0xc000000000da7180 25 cat(7130): <-proc_sys_call_handler return=3D0x0 29 cat(7130):<-proc_sys_read return=3D0x0 0 cat(7130):->proc_sys_read filp=3D0xc0000000f221e880 buf=3D0x1002b950= 000 count=3D0x10000 ppos=3D0xc0000000031f3df8 6 cat(7130): ->proc_sys_call_handler filp=3D0xc0000000f221e880 buf=3D0= x1002b950000 count=3D0x10000 ppos=3D0xc0000000031f3df8 write=3D0x0 10 cat(7130): ->grab_header inode=3D0xc00000013849e320 13 cat(7130): <-grab_header return=3D0xc000000000da7180 19 cat(7130): <-proc_sys_call_handler return=3D0x3 22 cat(7130):<-proc_sys_read return=3D0x3 0 cat(7130):->proc_sys_read filp=3D0xc0000000f221e880 buf=3D0x1002b950= 000 count=3D0x10000 ppos=3D0xc0000000031f3df8 7 cat(7130): ->proc_sys_call_handler filp=3D0xc0000000f221e880 buf=3D0= x1002b950000 count=3D0x10000 ppos=3D0xc0000000031f3df8 write=3D0x0 22 cat(7130): ->grab_header inode=3D0xc00000013849e320 26 cat(7130): <-grab_header return=3D0xc000000000da7180 32 cat(7130): <-proc_sys_call_handler return=3D0x0 34 cat(7130):<-proc_sys_read return=3D0x0 0 cat(7130):->proc_sys_read filp=3D0xc0000000f2218680 buf=3D0x1002b950= 000 count=3D0x10000 ppos=3D0xc0000000031f3df8 5 cat(7130): ->proc_sys_call_handler filp=3D0xc0000000f2218680 buf=3D0= x1002b950000 count=3D0x10000 ppos=3D0xc0000000031f3df8 write=3D0x0 9 cat(7130): ->grab_header inode=3D0xc00000013849bba0 13 cat(7130): <-grab_header return=3D0xc000000000da7180 18 cat(7130): <-proc_sys_call_handler return=3D0x2 21 cat(7130):<-proc_sys_read return=3D0x2 0 cat(7130):->proc_sys_read filp=3D0xc0000000f2218680 buf=3D0x1002b950= 000 count=3D0x10000 ppos=3D0xc0000000031f3df8 7 cat(7130): ->proc_sys_call_handler filp=3D0xc0000000f2218680 buf=3D0= x1002b950000 count=3D0x10000 ppos=3D0xc0000000031f3df8 write=3D0x0 13 cat(7130): ->grab_header inode=3D0xc00000013849bba0 18 cat(7130): <-grab_header return=3D0xc000000000da7180 35 cat(7130): <-proc_sys_call_handler return=3D0x0 38 cat(7130):<-proc_sys_read return=3D0x0 0 cat(7130):->proc_sys_read filp=3D0xc0000000f2217c80 buf=3D0x1002b950= 000 count=3D0x10000 ppos=3D0xc0000000031f3df8 5 cat(7130): ->proc_sys_call_handler filp=3D0xc0000000f2217c80 buf=3D0= x1002b950000 count=3D0x10000 ppos=3D0xc0000000031f3df8 write=3D0x0 9 cat(7130): ->grab_header inode=3D0xc000000138499b88 13 cat(7130): <-grab_header return=3D0xc000000000da7180 18 cat(7130): <-proc_sys_call_handler return=3D0x5 21 cat(7130):<-proc_sys_read return=3D0x5 0 cat(7130):->proc_sys_read filp=3D0xc0000000f2217c80 buf=3D0x1002b950= 000 count=3D0x10000 ppos=3D0xc0000000031f3df8 8 cat(7130): ->proc_sys_call_handler filp=3D0xc0000000f2217c80 buf=3D0= x1002b950000 count=3D0x10000 ppos=3D0xc0000000031f3df8 write=3D0x0 13 cat(7130): ->grab_header inode=3D0xc000000138499b88 18 cat(7130): <-grab_header return=3D0xc000000000da7180 25 cat(7130): <-proc_sys_call_handler return=3D0x0 29 cat(7130):<-proc_sys_read return=3D0x0 0 cat(7130):->proc_sys_read filp=3D0xc0000000f2212780 buf=3D0x1002b950= 000 count=3D0x10000 ppos=3D0xc0000000031f3df8 6 cat(7130): ->proc_sys_call_handler filp=3D0xc0000000f2212780 buf=3D0= x1002b950000 count=3D0x10000 ppos=3D0xc0000000031f3df8 write=3D0x0 10 cat(7130): ->grab_header inode=3D0xc00000013849c308 13 cat(7130): <-grab_header return=3D0xc000000000da7180 19 cat(7130): <-proc_sys_call_handler return=3D0x3 22 cat(7130):<-proc_sys_read return=3D0x3 0 cat(7130):->proc_sys_read filp=3D0xc0000000f2212780 buf=3D0x1002b950= 000 count=3D0x10000 ppos=3D0xc0000000031f3df8 7 cat(7130): ->proc_sys_call_handler filp=3D0xc0000000f2212780 buf=3D0= x1002b950000 count=3D0x10000 ppos=3D0xc0000000031f3df8 write=3D0x0 22 cat(7130): ->grab_header inode=3D0xc00000013849c308 26 cat(7130): <-grab_header return=3D0xc000000000da7180 32 cat(7130): <-proc_sys_call_handler return=3D0x0 35 cat(7130):<-proc_sys_read return=3D0x0 0 cat(7130):->proc_sys_read filp=3D0xc0000000f2215180 buf=3D0x1002b950= 000 count=3D0x10000 ppos=3D0xc0000000031f3df8 6 cat(7130): ->proc_sys_call_handler filp=3D0xc0000000f2215180 buf=3D0= x1002b950000 count=3D0x10000 ppos=3D0xc0000000031f3df8 write=3D0x0 10 cat(7130): ->grab_header inode=3D0xc000000138499e00 13 cat(7130): <-grab_header return=3D0xc000000000da7180 20 cat(7130): <-proc_sys_call_handler return=3D0x4 23 cat(7130):<-proc_sys_read return=3D0x4 0 cat(7130):->proc_sys_read filp=3D0xc0000000f2215180 buf=3D0x1002b950= 000 count=3D0x10000 ppos=3D0xc0000000031f3df8 7 cat(7130): ->proc_sys_call_handler filp=3D0xc0000000f2215180 buf=3D0= x1002b950000 count=3D0x10000 ppos=3D0xc0000000031f3df8 write=3D0x0 12 cat(7130): ->grab_header inode=3D0xc000000138499e00 17 cat(7130): <-grab_header return=3D0xc000000000da7180 25 cat(7130): <-proc_sys_call_handler return=3D0x0 28 cat(7130):<-proc_sys_read return=3D0x0 0 cat(7130):->proc_sys_read filp=3D0xc0000000f2213c80 buf=3D0x1002b950= 000 count=3D0x10000 ppos=3D0xc0000000031f3df8 6 cat(7130): ->proc_sys_call_handler filp=3D0xc0000000f2213c80 buf=3D0= x1002b950000 count=3D0x10000 ppos=3D0xc0000000031f3df8 write=3D0x0 10 cat(7130): ->grab_header inode=3D0xc00000013849b928 14 cat(7130): <-grab_header return=3D0xc000000000da7180 20 cat(7130): <-proc_sys_call_handler return=3D0x2 22 cat(7130):<-proc_sys_read return=3D0x2 0 cat(7130):->proc_sys_read filp=3D0xc0000000f2213c80 buf=3D0x1002b950= 000 count=3D0x10000 ppos=3D0xc0000000031f3df8 8 cat(7130): ->proc_sys_call_handler filp=3D0xc0000000f2213c80 buf=3D0= x1002b950000 count=3D0x10000 ppos=3D0xc0000000031f3df8 write=3D0x0 13 cat(7130): ->grab_header inode=3D0xc00000013849b928 18 cat(7130): <-grab_header return=3D0xc000000000da7180 25 cat(7130): <-proc_sys_call_handler return=3D0x0 29 cat(7130):<-proc_sys_read return=3D0x0 0 cat(7130):->proc_sys_read filp=3D0xc0000000f2216e80 buf=3D0x1002b950= 000 count=3D0x10000 ppos=3D0xc0000000031f3df8 6 cat(7130): ->proc_sys_call_handler filp=3D0xc0000000f2216e80 buf=3D0= x1002b950000 count=3D0x10000 ppos=3D0xc0000000031f3df8 write=3D0x0 10 cat(7130): ->grab_header inode=3D0xc00000013849ca70 13 cat(7130): <-grab_header return=3D0xc000000000da7180 19 cat(7130): <-proc_sys_call_handler return=3D0x4 22 cat(7130):<-proc_sys_read return=3D0x4 0 cat(7130):->proc_sys_read filp=3D0xc0000000f2216e80 buf=3D0x1002b950= 000 count=3D0x10000 ppos=3D0xc0000000031f3df8 7 cat(7130): ->proc_sys_call_handler filp=3D0xc0000000f2216e80 buf=3D0= x1002b950000 count=3D0x10000 ppos=3D0xc0000000031f3df8 write=3D0x0 23 cat(7130): ->grab_header inode=3D0xc00000013849ca70 27 cat(7130): <-grab_header return=3D0xc000000000da7180 32 cat(7130): <-proc_sys_call_handler return=3D0x0 35 cat(7130):<-proc_sys_read return=3D0x0 0 cat(7130):->proc_sys_read filp=3D0xc0000000f2214b80 buf=3D0x1002b950= 000 count=3D0x10000 ppos=3D0xc0000000031f3df8 6 cat(7130): ->proc_sys_call_handler filp=3D0xc0000000f2214b80 buf=3D0= x1002b950000 count=3D0x10000 ppos=3D0xc0000000031f3df8 write=3D0x0 10 cat(7130): ->grab_header inode=3D0xc00000013849a7e0 14 cat(7130): <-grab_header return=3D0xc000000000da7180 19 cat(7130): <-proc_sys_call_handler return=3D0x2 22 cat(7130):<-proc_sys_read return=3D0x2 0 cat(7130):->proc_sys_read filp=3D0xc0000000f2214b80 buf=3D0x1002b950= 000 count=3D0x10000 ppos=3D0xc0000000031f3df8 7 cat(7130): ->proc_sys_call_handler filp=3D0xc0000000f2214b80 buf=3D0= x1002b950000 count=3D0x10000 ppos=3D0xc0000000031f3df8 write=3D0x0 13 cat(7130): ->grab_header inode=3D0xc00000013849a7e0 18 cat(7130): <-grab_header return=3D0xc000000000da7180 25 cat(7130): <-proc_sys_call_handler return=3D0x0 29 cat(7130):<-proc_sys_read return=3D0x0 0 cat(7130):->proc_sys_read filp=3D0xc0000000f2213580 buf=3D0x1002b950= 000 count=3D0x10000 ppos=3D0xc0000000031f3df8 6 cat(7130): ->proc_sys_call_handler filp=3D0xc0000000f2213580 buf=3D0= x1002b950000 count=3D0x10000 ppos=3D0xc0000000031f3df8 write=3D0x0 10 cat(7130): ->grab_header inode=3D0xc000000138490c58 14 cat(7130): <-grab_header return=3D0xc000000000da7180 19 cat(7130): <-proc_sys_call_handler return=3D0x2 22 cat(7130):<-proc_sys_read return=3D0x2 0 cat(7130):->proc_sys_read filp=3D0xc0000000f2213580 buf=3D0x1002b950= 000 count=3D0x10000 ppos=3D0xc0000000031f3df8 7 cat(7130): ->proc_sys_call_handler filp=3D0xc0000000f2213580 buf=3D0= x1002b950000 count=3D0x10000 ppos=3D0xc0000000031f3df8 write=3D0x0 13 cat(7130): ->grab_header inode=3D0xc000000138490c58 18 cat(7130): <-grab_header return=3D0xc000000000da7180 25 cat(7130): <-proc_sys_call_handler return=3D0x0 29 cat(7130):<-proc_sys_read return=3D0x0 0 cat(7130):->proc_sys_read filp=3D0xc0000000f2212e80 buf=3D0x1002b950= 000 count=3D0x10000 ppos=3D0xc0000000031f3df8 5 cat(7130): ->proc_sys_call_handler filp=3D0xc0000000f2212e80 buf=3D0= x1002b950000 count=3D0x10000 ppos=3D0xc0000000031f3df8 write=3D0x0 10 cat(7130): ->grab_header inode=3D0xc000000138498550 13 cat(7130): <-grab_header return=3D0xc000000000da7180 19 cat(7130): <-proc_sys_call_handler return=3D0x2 22 cat(7130):<-proc_sys_read return=3D0x2 0 cat(7130):->proc_sys_read filp=3D0xc0000000f2212e80 buf=3D0x1002b950= 000 count=3D0x10000 ppos=3D0xc0000000031f3df8 8 cat(7130): ->proc_sys_call_handler filp=3D0xc0000000f2212e80 buf=3D0= x1002b950000 count=3D0x10000 ppos=3D0xc0000000031f3df8 write=3D0x0 13 cat(7130): ->grab_header inode=3D0xc000000138498550 18 cat(7130): <-grab_header return=3D0xc000000000da7180 25 cat(7130): <-proc_sys_call_handler return=3D0x0 29 cat(7130):<-proc_sys_read return=3D0x0 0 cat(7130):->proc_sys_read filp=3D0xc0000000f221cd80 buf=3D0x1002b950= 000 count=3D0x10000 ppos=3D0xc0000000031f3df8 6 cat(7130): ->proc_sys_call_handler filp=3D0xc0000000f221cd80 buf=3D0= x1002b950000 count=3D0x10000 ppos=3D0xc0000000031f3df8 write=3D0x0 10 cat(7130): ->grab_header inode=3D0xc0000001384ab9a8 14 cat(7130): <-grab_header return=3D0xc000000000da7180 19 cat(7130): <-proc_sys_call_handler return=3D0x2 22 cat(7130):<-proc_sys_read return=3D0x2 0 cat(7130):->proc_sys_read filp=3D0xc0000000f221cd80 buf=3D0x1002b950= 000 count=3D0x10000 ppos=3D0xc0000000031f3df8 7 cat(7130): ->proc_sys_call_handler filp=3D0xc0000000f221cd80 buf=3D0= x1002b950000 count=3D0x10000 ppos=3D0xc0000000031f3df8 write=3D0x0 12 cat(7130): ->grab_header inode=3D0xc0000001384ab9a8 18 cat(7130): <-grab_header return=3D0xc000000000da7180 25 cat(7130): <-proc_sys_call_handler return=3D0x0 28 cat(7130):<-proc_sys_read return=3D0x0 0 cat(7130):->proc_sys_read filp=3D0xc0000000f221f380 buf=3D0x1002b950= 000 count=3D0x10000 ppos=3D0xc0000000031f3df8 6 cat(7130): ->proc_sys_call_handler filp=3D0xc0000000f221f380 buf=3D0= x1002b950000 count=3D0x10000 ppos=3D0xc0000000031f3df8 write=3D0x0 10 cat(7130): ->grab_header inode=3D0xc000000138499910 14 cat(7130): <-grab_header return=3D0xc000000000da7180 21 cat(7130): <-proc_sys_call_handler return=3D0x7 24 cat(7130):<-proc_sys_read return=3D0x7 0 cat(7130):->proc_sys_read filp=3D0xc0000000f221f380 buf=3D0x1002b950= 000 count=3D0x10000 ppos=3D0xc0000000031f3df8 7 cat(7130): ->proc_sys_call_handler filp=3D0xc0000000f221f380 buf=3D0= x1002b950000 count=3D0x10000 ppos=3D0xc0000000031f3df8 write=3D0x0 12 cat(7130): ->grab_header inode=3D0xc000000138499910 17 cat(7130): <-grab_header return=3D0xc000000000da7180 25 cat(7130): <-proc_sys_call_handler return=3D0x0 28 cat(7130):<-proc_sys_read return=3D0x0 0 cat(7130):->proc_sys_read filp=3D0xc0000000f221ba80 buf=3D0x1002b950= 000 count=3D0x10000 ppos=3D0xc0000000031f3df8 6 cat(7130): ->proc_sys_call_handler filp=3D0xc0000000f221ba80 buf=3D0= x1002b950000 count=3D0x10000 ppos=3D0xc0000000031f3df8 write=3D0x0 10 cat(7130): ->grab_header inode=3D0xc00000013849a568 14 cat(7130): <-grab_header return=3D0xc000000000da7180 19 cat(7130): <-proc_sys_call_handler return=3D0x6 22 cat(7130):<-proc_sys_read return=3D0x6 0 cat(7130):->proc_sys_read filp=3D0xc0000000f221ba80 buf=3D0x1002b950= 000 count=3D0x10000 ppos=3D0xc0000000031f3df8 7 cat(7130): ->proc_sys_call_handler filp=3D0xc0000000f221ba80 buf=3D0= x1002b950000 count=3D0x10000 ppos=3D0xc0000000031f3df8 write=3D0x0 13 cat(7130): ->grab_header inode=3D0xc00000013849a568 18 cat(7130): <-grab_header return=3D0xc000000000da7180 25 cat(7130): <-proc_sys_call_handler return=3D0x0 28 cat(7130):<-proc_sys_read return=3D0x0 0 cat(7130):->proc_sys_read filp=3D0xc0000000f2218180 buf=3D0x1002b950= 000 count=3D0x10000 ppos=3D0xc0000000031f3df8 5 cat(7130): ->proc_sys_call_handler filp=3D0xc0000000f2218180 buf=3D0= x1002b950000 count=3D0x10000 ppos=3D0xc0000000031f3df8 write=3D0x0 10 cat(7130): ->grab_header inode=3D0xc00000013849f468 13 cat(7130): <-grab_header return=3D0xc000000000da7180 19 cat(7130): <-proc_sys_call_handler return=3D0x5 22 cat(7130):<-proc_sys_read return=3D0x5 0 cat(7130):->proc_sys_read filp=3D0xc0000000f2218180 buf=3D0x1002b950= 000 count=3D0x10000 ppos=3D0xc0000000031f3df8 7 cat(7130): ->proc_sys_call_handler filp=3D0xc0000000f2218180 buf=3D0= x1002b950000 count=3D0x10000 ppos=3D0xc0000000031f3df8 write=3D0x0 12 cat(7130): ->grab_header inode=3D0xc00000013849f468 17 cat(7130): <-grab_header return=3D0xc000000000da7180 24 cat(7130): <-proc_sys_call_handler return=3D0x0 30 cat(7130):<-proc_sys_read return=3D0x0 0 cat(7130):->proc_sys_read filp=3D0xc0000000f2211b80 buf=3D0x1002b950= 000 count=3D0x10000 ppos=3D0xc0000000031f3df8 6 cat(7130): ->proc_sys_call_handler filp=3D0xc0000000f2211b80 buf=3D0= x1002b950000 count=3D0x10000 ppos=3D0xc0000000031f3df8 write=3D0x0 10 cat(7130): ->grab_header inode=3D0xc0000001384a7700 14 cat(7130): <-grab_header return=3D0xc000000000da7180 19 cat(7130): <-proc_sys_call_handler return=3D0x2 22 cat(7130):<-proc_sys_read return=3D0x2 0 cat(7130):->proc_sys_read filp=3D0xc0000000f2211b80 buf=3D0x1002b950= 000 count=3D0x10000 ppos=3D0xc0000000031f3df8 7 cat(7130): ->proc_sys_call_handler filp=3D0xc0000000f2211b80 buf=3D0= x1002b950000 count=3D0x10000 ppos=3D0xc0000000031f3df8 write=3D0x0 13 cat(7130): ->grab_header inode=3D0xc0000001384a7700 17 cat(7130): <-grab_header return=3D0xc000000000da7180 25 cat(7130): <-proc_sys_call_handler return=3D0x0 28 cat(7130):<-proc_sys_read return=3D0x0 0 cat(7130):->proc_sys_read filp=3D0xc0000000f2218a80 buf=3D0x1002b950= 000 count=3D0x10000 ppos=3D0xc0000000031f3df8 6 cat(7130): ->proc_sys_call_handler filp=3D0xc0000000f2218a80 buf=3D0= x1002b950000 count=3D0x10000 ppos=3D0xc0000000031f3df8 write=3D0x0 10 cat(7130): ->grab_header inode=3D0xc0000001384ab730 13 cat(7130): <-grab_header return=3D0xc000000000da7180 19 cat(7130): <-proc_sys_call_handler return=3D0x2 22 cat(7130):<-proc_sys_read return=3D0x2 0 cat(7130):->proc_sys_read filp=3D0xc0000000f2218a80 buf=3D0x1002b950= 000 count=3D0x10000 ppos=3D0xc0000000031f3df8 8 cat(7130): ->proc_sys_call_handler filp=3D0xc0000000f2218a80 buf=3D0= x1002b950000 count=3D0x10000 ppos=3D0xc0000000031f3df8 write=3D0x0 13 cat(7130): ->grab_header inode=3D0xc0000001384ab730 18 cat(7130): <-grab_header return=3D0xc000000000da7180 26 cat(7130): <-proc_sys_call_handler return=3D0x0 30 cat(7130):<-proc_sys_read return=3D0x0 0 cat(7130):->proc_sys_read filp=3D0xc0000000fd1cd180 buf=3D0x1002b950= 000 count=3D0x10000 ppos=3D0xc0000000031f3df8 6 cat(7130): ->proc_sys_call_handler filp=3D0xc0000000fd1cd180 buf=3D0= x1002b950000 count=3D0x10000 ppos=3D0xc0000000031f3df8 write=3D0x0 10 cat(7130): ->grab_header inode=3D0xc0000001384a7488 14 cat(7130): <-grab_header return=3D0xc000000000da7180 19 cat(7130): <-proc_sys_call_handler return=3D0x5 22 cat(7130):<-proc_sys_read return=3D0x5 0 cat(7130):->proc_sys_read filp=3D0xc0000000fd1cd180 buf=3D0x1002b950= 000 count=3D0x10000 ppos=3D0xc0000000031f3df8 7 cat(7130): ->proc_sys_call_handler filp=3D0xc0000000fd1cd180 buf=3D0= x1002b950000 count=3D0x10000 ppos=3D0xc0000000031f3df8 write=3D0x0 13 cat(7130): ->grab_header inode=3D0xc0000001384a7488 18 cat(7130): <-grab_header return=3D0xc000000000da7180 25 cat(7130): <-proc_sys_call_handler return=3D0x0 29 cat(7130):<-proc_sys_read return=3D0x0 0 cat(7130):->proc_sys_read filp=3D0xc0000000fd1cf480 buf=3D0x1002b950= 000 count=3D0x10000 ppos=3D0xc0000000031f3df8 6 cat(7130): ->proc_sys_call_handler filp=3D0xc0000000fd1cf480 buf=3D0= x1002b950000 count=3D0x10000 ppos=3D0xc0000000031f3df8 write=3D0x0 10 cat(7130): ->grab_header inode=3D0xc00000013849a2f0 14 cat(7130): <-grab_header return=3D0xc000000000da7180 19 cat(7130): <-proc_sys_call_handler return=3D0x2 22 cat(7130):<-proc_sys_read return=3D0x2 0 cat(7130):->proc_sys_read filp=3D0xc0000000fd1cf480 buf=3D0x1002b950= 000 count=3D0x10000 ppos=3D0xc0000000031f3df8 7 cat(7130): ->proc_sys_call_handler filp=3D0xc0000000fd1cf480 buf=3D0= x1002b950000 count=3D0x10000 ppos=3D0xc0000000031f3df8 write=3D0x0 12 cat(7130): ->grab_header inode=3D0xc00000013849a2f0 17 cat(7130): <-grab_header return=3D0xc000000000da7180 25 cat(7130): <-proc_sys_call_handler return=3D0x0 28 cat(7130):<-proc_sys_read return=3D0x0 0 cat(7130):->proc_sys_read filp=3D0xc0000000fd1ce780 buf=3D0x1002b950= 000 count=3D0x10000 ppos=3D0xc0000000031f3df8 5 cat(7130): ->proc_sys_call_handler filp=3D0xc0000000fd1ce780 buf=3D0= x1002b950000 count=3D0x10000 ppos=3D0xc0000000031f3df8 write=3D0x0 10 cat(7130): ->grab_header inode=3D0xc00000013849acd0 13 cat(7130): <-grab_header return=3D0xc000000000da7180 19 cat(7130): <-proc_sys_call_handler return=3D0x2 22 cat(7130):<-proc_sys_read return=3D0x2 0 cat(7130):->proc_sys_read filp=3D0xc0000000fd1ce780 buf=3D0x1002b950= 000 count=3D0x10000 ppos=3D0xc0000000031f3df8 8 cat(7130): ->proc_sys_call_handler filp=3D0xc0000000fd1ce780 buf=3D0= x1002b950000 count=3D0x10000 ppos=3D0xc0000000031f3df8 write=3D0x0 13 cat(7130): ->grab_header inode=3D0xc00000013849acd0 18 cat(7130): <-grab_header return=3D0xc000000000da7180 36 cat(7130): <-proc_sys_call_handler return=3D0x0 39 cat(7130):<-proc_sys_read return=3D0x0 0 cat(7130):->proc_sys_read filp=3D0xc0000000fd1ceb80 buf=3D0x1002b950= 000 count=3D0x10000 ppos=3D0xc0000000031f3df8 6 cat(7130): ->proc_sys_call_handler filp=3D0xc0000000fd1ceb80 buf=3D0= x1002b950000 count=3D0x10000 ppos=3D0xc0000000031f3df8 write=3D0x0 10 cat(7130): ->grab_header inode=3D0xc000000138498060 14 cat(7130): <-grab_header return=3D0xc000000000da7180 19 cat(7130): <-proc_sys_call_handler return=3D0x2 22 cat(7130):<-proc_sys_read return=3D0x2 0 cat(7130):->proc_sys_read filp=3D0xc0000000fd1ceb80 buf=3D0x1002b950= 000 count=3D0x10000 ppos=3D0xc0000000031f3df8 7 cat(7130): ->proc_sys_call_handler filp=3D0xc0000000fd1ceb80 buf=3D0= x1002b950000 count=3D0x10000 ppos=3D0xc0000000031f3df8 write=3D0x0 13 cat(7130): ->grab_header inode=3D0xc000000138498060 18 cat(7130): <-grab_header return=3D0xc000000000da7180 25 cat(7130): <-proc_sys_call_handler return=3D0x0 29 cat(7130):<-proc_sys_read return=3D0x0 0 cat(7130):->proc_sys_read filp=3D0xc0000000fd1cf580 buf=3D0x1002b950= 000 count=3D0x10000 ppos=3D0xc0000000031f3df8 6 cat(7130): ->proc_sys_call_handler filp=3D0xc0000000fd1cf580 buf=3D0= x1002b950000 count=3D0x10000 ppos=3D0xc0000000031f3df8 write=3D0x0 10 cat(7130): ->grab_header inode=3D0xc0000001384a56e8 14 cat(7130): <-grab_header return=3D0xc000000000da7180 19 cat(7130): <-proc_sys_call_handler return=3D0x8 22 cat(7130):<-proc_sys_read return=3D0x8 0 cat(7130):->proc_sys_read filp=3D0xc0000000fd1cf580 buf=3D0x1002b950= 000 count=3D0x10000 ppos=3D0xc0000000031f3df8 7 cat(7130): ->proc_sys_call_handler filp=3D0xc0000000fd1cf580 buf=3D0= x1002b950000 count=3D0x10000 ppos=3D0xc0000000031f3df8 write=3D0x0 12 cat(7130): ->grab_header inode=3D0xc0000001384a56e8 18 cat(7130): <-grab_header return=3D0xc000000000da7180 25 cat(7130): <-proc_sys_call_handler return=3D0x0 29 cat(7130):<-proc_sys_read return=3D0x0 0 cat(7130):->proc_sys_read filp=3D0xc0000000fd1ca380 buf=3D0x1002b950= 000 count=3D0x10000 ppos=3D0xc0000000031f3df8 5 cat(7130): ->proc_sys_call_handler filp=3D0xc0000000fd1ca380 buf=3D0= x1002b950000 count=3D0x10000 ppos=3D0xc0000000031f3df8 write=3D0x0 10 cat(7130): ->grab_header inode=3D0xc00000013849b6b0 13 cat(7130): <-grab_header return=3D0xc000000000da7180 19 cat(7130): <-proc_sys_call_handler return=3D0x2 22 cat(7130):<-proc_sys_read return=3D0x2 0 cat(7130):->proc_sys_read filp=3D0xc0000000fd1ca380 buf=3D0x1002b950= 000 count=3D0x10000 ppos=3D0xc0000000031f3df8 7 cat(7130): ->proc_sys_call_handler filp=3D0xc0000000fd1ca380 buf=3D0= x1002b950000 count=3D0x10000 ppos=3D0xc0000000031f3df8 write=3D0x0 12 cat(7130): ->grab_header inode=3D0xc00000013849b6b0 17 cat(7130): <-grab_header return=3D0xc000000000da7180 24 cat(7130): <-proc_sys_call_handler return=3D0x0 28 cat(7130):<-proc_sys_read return=3D0x0 0 cat(7130):->proc_sys_read filp=3D0xc0000000fd1c0b80 buf=3D0x1002b950= 000 count=3D0x10000 ppos=3D0xc0000000031f3df8 6 cat(7130): ->proc_sys_call_handler filp=3D0xc0000000fd1c0b80 buf=3D0= x1002b950000 count=3D0x10000 ppos=3D0xc0000000031f3df8 write=3D0x0 10 cat(7130): ->grab_header inode=3D0xc000000138496ca0 14 cat(7130): <-grab_header return=3D0xc000000000da7180 19 cat(7130): <-proc_sys_call_handler return=3D0x2 22 cat(7130):<-proc_sys_read return=3D0x2 0 cat(7130):->proc_sys_read filp=3D0xc0000000fd1c0b80 buf=3D0x1002b950= 000 count=3D0x10000 ppos=3D0xc0000000031f3df8 7 cat(7130): ->proc_sys_call_handler filp=3D0xc0000000fd1c0b80 buf=3D0= x1002b950000 count=3D0x10000 ppos=3D0xc0000000031f3df8 write=3D0x0 12 cat(7130): ->grab_header inode=3D0xc000000138496ca0 17 cat(7130): <-grab_header return=3D0xc000000000da7180 25 cat(7130): <-proc_sys_call_handler return=3D0x0 28 cat(7130):<-proc_sys_read return=3D0x0 0 cat(7130):->proc_sys_read filp=3D0xc0000000fd1c3c80 buf=3D0x1002b950= 000 count=3D0x10000 ppos=3D0xc0000000031f3df8 6 cat(7130): ->proc_sys_call_handler filp=3D0xc0000000fd1c3c80 buf=3D0= x1002b950000 count=3D0x10000 ppos=3D0xc0000000031f3df8 write=3D0x0 10 cat(7130): ->grab_header inode=3D0xc000000138030bd8 14 cat(7130): <-grab_header return=3D0xc000000000da7180 19 cat(7130): <-proc_sys_call_handler return=3D0x2 22 cat(7130):<-proc_sys_read return=3D0x2 0 cat(7130):->proc_sys_read filp=3D0xc0000000fd1c3c80 buf=3D0x1002b950= 000 count=3D0x10000 ppos=3D0xc0000000031f3df8 7 cat(7130): ->proc_sys_call_handler filp=3D0xc0000000fd1c3c80 buf=3D0= x1002b950000 count=3D0x10000 ppos=3D0xc0000000031f3df8 write=3D0x0 13 cat(7130): ->grab_header inode=3D0xc000000138030bd8 18 cat(7130): <-grab_header return=3D0xc000000000da7180 25 cat(7130): <-proc_sys_call_handler return=3D0x0 28 cat(7130):<-proc_sys_read return=3D0x0 0 cat(7130):->proc_sys_read filp=3D0xc0000000fd1c3d80 buf=3D0x1002b950= 000 count=3D0x10000 ppos=3D0xc0000000031f3df8 6 cat(7130): ->proc_sys_call_handler filp=3D0xc0000000fd1c3d80 buf=3D0= x1002b950000 count=3D0x10000 ppos=3D0xc0000000031f3df8 write=3D0x0 10 cat(7130): ->grab_header inode=3D0xc00000013849d6c8 13 cat(7130): <-grab_header return=3D0xc000000000da7180 19 cat(7130): <-proc_sys_call_handler return=3D0x3 22 cat(7130):<-proc_sys_read return=3D0x3 0 cat(7130):->proc_sys_read filp=3D0xc0000000fd1c3d80 buf=3D0x1002b950= 000 count=3D0x10000 ppos=3D0xc0000000031f3df8 7 cat(7130): ->proc_sys_call_handler filp=3D0xc0000000fd1c3d80 buf=3D0= x1002b950000 count=3D0x10000 ppos=3D0xc0000000031f3df8 write=3D0x0 12 cat(7130): ->grab_header inode=3D0xc00000013849d6c8 18 cat(7130): <-grab_header return=3D0xc000000000da7180 25 cat(7130): <-proc_sys_call_handler return=3D0x0 29 cat(7130):<-proc_sys_read return=3D0x0 0 cat(7130):->proc_sys_read filp=3D0xc0000000fd1c1b80 buf=3D0x1002b950= 000 count=3D0x10000 ppos=3D0xc0000000031f3df8 5 cat(7130): ->proc_sys_call_handler filp=3D0xc0000000fd1c1b80 buf=3D0= x1002b950000 count=3D0x10000 ppos=3D0xc0000000031f3df8 write=3D0x0 10 cat(7130): ->grab_header inode=3D0xc00000013849cf60 13 cat(7130): <-grab_header return=3D0xc000000000da7180 18 cat(7130): <-proc_sys_call_handler return=3D0x2 21 cat(7130):<-proc_sys_read return=3D0x2 0 cat(7130):->proc_sys_read filp=3D0xc0000000fd1c1b80 buf=3D0x1002b950= 000 count=3D0x10000 ppos=3D0xc0000000031f3df8 7 cat(7130): ->proc_sys_call_handler filp=3D0xc0000000fd1c1b80 buf=3D0= x1002b950000 count=3D0x10000 ppos=3D0xc0000000031f3df8 write=3D0x0 13 cat(7130): ->grab_header inode=3D0xc00000013849cf60 18 cat(7130): <-grab_header return=3D0xc000000000da7180 25 cat(7130): <-proc_sys_call_handler return=3D0x0 29 cat(7130):<-proc_sys_read return=3D0x0 0 cat(7130):->proc_sys_read filp=3D0xc0000000fd1ce680 buf=3D0x1002b950= 000 count=3D0x10000 ppos=3D0xc0000000031f3df8 6 cat(7130): ->proc_sys_call_handler filp=3D0xc0000000fd1ce680 buf=3D0= x1002b950000 count=3D0x10000 ppos=3D0xc0000000031f3df8 write=3D0x0 10 cat(7130): ->grab_header inode=3D0xc00000013849be18 14 cat(7130): <-grab_header return=3D0xc000000000da7180 19 cat(7130): <-proc_sys_call_handler return=3D0x2 22 cat(7130):<-proc_sys_read return=3D0x2 0 cat(7130):->proc_sys_read filp=3D0xc0000000fd1ce680 buf=3D0x1002b950= 000 count=3D0x10000 ppos=3D0xc0000000031f3df8 7 cat(7130): ->proc_sys_call_handler filp=3D0xc0000000fd1ce680 buf=3D0= x1002b950000 count=3D0x10000 ppos=3D0xc0000000031f3df8 write=3D0x0 13 cat(7130): ->grab_header inode=3D0xc00000013849be18 18 cat(7130): <-grab_header return=3D0xc000000000da7180 25 cat(7130): <-proc_sys_call_handler return=3D0x0 29 cat(7130):<-proc_sys_read return=3D0x0 0 cat(7130):->proc_sys_read filp=3D0xc0000000fd1cf680 buf=3D0x1002b950= 000 count=3D0x10000 ppos=3D0xc0000000031f3df8 5 cat(7130): ->proc_sys_call_handler filp=3D0xc0000000fd1cf680 buf=3D0= x1002b950000 count=3D0x10000 ppos=3D0xc0000000031f3df8 write=3D0x0 10 cat(7130): ->grab_header inode=3D0xc00000013849cce8 13 cat(7130): <-grab_header return=3D0xc000000000da7180 19 cat(7130): <-proc_sys_call_handler return=3D0x2 21 cat(7130):<-proc_sys_read return=3D0x2 0 cat(7130):->proc_sys_read filp=3D0xc0000000fd1cf680 buf=3D0x1002b950= 000 count=3D0x10000 ppos=3D0xc0000000031f3df8 7 cat(7130): ->proc_sys_call_handler filp=3D0xc0000000fd1cf680 buf=3D0= x1002b950000 count=3D0x10000 ppos=3D0xc0000000031f3df8 write=3D0x0 13 cat(7130): ->grab_header inode=3D0xc00000013849cce8 18 cat(7130): <-grab_header return=3D0xc000000000da7180 25 cat(7130): <-proc_sys_call_handler return=3D0x0 29 cat(7130):<-proc_sys_read return=3D0x0 0 cat(7130):->proc_sys_read filp=3D0xc0000000fd1c4380 buf=3D0x1002b950= 000 count=3D0x10000 ppos=3D0xc0000000031f3df8 6 cat(7130): ->proc_sys_call_handler filp=3D0xc0000000fd1c4380 buf=3D0= x1002b950000 count=3D0x10000 ppos=3D0xc0000000031f3df8 write=3D0x0 10 cat(7130): ->grab_header inode=3D0xc0000001384a6340 13 cat(7130): <-grab_header return=3D0xc000000000da7180 19 cat(7130): <-proc_sys_call_handler return=3D0x2 22 cat(7130):<-proc_sys_read return=3D0x2 0 cat(7130):->proc_sys_read filp=3D0xc0000000fd1c4380 buf=3D0x1002b950= 000 count=3D0x10000 ppos=3D0xc0000000031f3df8 7 cat(7130): ->proc_sys_call_handler filp=3D0xc0000000fd1c4380 buf=3D0= x1002b950000 count=3D0x10000 ppos=3D0xc0000000031f3df8 write=3D0x0 12 cat(7130): ->grab_header inode=3D0xc0000001384a6340 17 cat(7130): <-grab_header return=3D0xc000000000da7180 24 cat(7130): <-proc_sys_call_handler return=3D0x0 28 cat(7130):<-proc_sys_read return=3D0x0 0 cat(7130):->proc_sys_read filp=3D0xc0000000fd1c5680 buf=3D0x1002b950= 000 count=3D0x10000 ppos=3D0xc0000000031f3df8 6 cat(7130): ->proc_sys_call_handler filp=3D0xc0000000fd1c5680 buf=3D0= x1002b950000 count=3D0x10000 ppos=3D0xc0000000031f3df8 write=3D0x0 10 cat(7130): ->grab_header inode=3D0xc0000001384a7978 13 cat(7130): <-grab_header return=3D0xc000000000da7180 19 cat(7130): <-proc_sys_call_handler return=3D0x2 22 cat(7130):<-proc_sys_read return=3D0x2 0 cat(7130):->proc_sys_read filp=3D0xc0000000fd1c5680 buf=3D0x1002b950= 000 count=3D0x10000 ppos=3D0xc0000000031f3df8 7 cat(7130): ->proc_sys_call_handler filp=3D0xc0000000fd1c5680 buf=3D0= x1002b950000 count=3D0x10000 ppos=3D0xc0000000031f3df8 write=3D0x0 12 cat(7130): ->grab_header inode=3D0xc0000001384a7978 17 cat(7130): <-grab_header return=3D0xc000000000da7180 24 cat(7130): <-proc_sys_call_handler return=3D0x0 28 cat(7130):<-proc_sys_read return=3D0x0 0 cat(7130):->proc_sys_read filp=3D0xc0000000fd1cb780 buf=3D0x1002b950= 000 count=3D0x10000 ppos=3D0xc0000000031f3df8 6 cat(7130): ->proc_sys_call_handler filp=3D0xc0000000fd1cb780 buf=3D0= x1002b950000 count=3D0x10000 ppos=3D0xc0000000031f3df8 write=3D0x0 10 cat(7130): ->grab_header inode=3D0xc0000001384991a8 13 cat(7130): <-grab_header return=3D0xc000000000da7180 19 cat(7130): <-proc_sys_call_handler return=3D0x3 22 cat(7130):<-proc_sys_read return=3D0x3 0 cat(7130):->proc_sys_read filp=3D0xc0000000fd1cb780 buf=3D0x1002b950= 000 count=3D0x10000 ppos=3D0xc0000000031f3df8 7 cat(7130): ->proc_sys_call_handler filp=3D0xc0000000fd1cb780 buf=3D0= x1002b950000 count=3D0x10000 ppos=3D0xc0000000031f3df8 write=3D0x0 12 cat(7130): ->grab_header inode=3D0xc0000001384991a8 17 cat(7130): <-grab_header return=3D0xc000000000da7180 24 cat(7130): <-proc_sys_call_handler return=3D0x0 28 cat(7130):<-proc_sys_read return=3D0x0 0 cat(7130):->proc_sys_read filp=3D0xc0000000fd1c3580 buf=3D0x1002b950= 000 count=3D0x10000 ppos=3D0xc0000000031f3df8 6 cat(7130): ->proc_sys_call_handler filp=3D0xc0000000fd1c3580 buf=3D0= x1002b950000 count=3D0x10000 ppos=3D0xc0000000031f3df8 write=3D0x0 10 cat(7130): ->grab_header inode=3D0xc0000001384ab240 14 cat(7130): <-grab_header return=3D0xc000000000da7180 19 cat(7130): <-proc_sys_call_handler return=3D0x4 22 cat(7130):<-proc_sys_read return=3D0x4 0 cat(7130):->proc_sys_read filp=3D0xc0000000fd1c3580 buf=3D0x1002b950= 000 count=3D0x10000 ppos=3D0xc0000000031f3df8 7 cat(7130): ->proc_sys_call_handler filp=3D0xc0000000fd1c3580 buf=3D0= x1002b950000 count=3D0x10000 ppos=3D0xc0000000031f3df8 write=3D0x0 13 cat(7130): ->grab_header inode=3D0xc0000001384ab240 18 cat(7130): <-grab_header return=3D0xc000000000da7180 25 cat(7130): <-proc_sys_call_handler return=3D0x0 28 cat(7130):<-proc_sys_read return=3D0x0 0 cat(7130):->proc_sys_read filp=3D0xc0000000fd1c4e80 buf=3D0x1002b950= 000 count=3D0x10000 ppos=3D0xc0000000031f3df8 6 cat(7130): ->proc_sys_call_handler filp=3D0xc0000000fd1c4e80 buf=3D0= x1002b950000 count=3D0x10000 ppos=3D0xc0000000031f3df8 write=3D0x0 10 cat(7130): ->grab_header inode=3D0xc000000138497de8 13 cat(7130): <-grab_header return=3D0xc000000000da7180 19 cat(7130): <-proc_sys_call_handler return=3D0x2 21 cat(7130):<-proc_sys_read return=3D0x2 0 cat(7130):->proc_sys_read filp=3D0xc0000000fd1c4e80 buf=3D0x1002b950= 000 count=3D0x10000 ppos=3D0xc0000000031f3df8 7 cat(7130): ->proc_sys_call_handler filp=3D0xc0000000fd1c4e80 buf=3D0= x1002b950000 count=3D0x10000 ppos=3D0xc0000000031f3df8 write=3D0x0 23 cat(7130): ->grab_header inode=3D0xc000000138497de8 27 cat(7130): <-grab_header return=3D0xc000000000da7180 32 cat(7130): <-proc_sys_call_handler return=3D0x0 35 cat(7130):<-proc_sys_read return=3D0x0 0 cat(7130):->proc_sys_read filp=3D0xc0000000fd1ccf80 buf=3D0x1002b950= 000 count=3D0x10000 ppos=3D0xc0000000031f3df8 5 cat(7130): ->proc_sys_call_handler filp=3D0xc0000000fd1ccf80 buf=3D0= x1002b950000 count=3D0x10000 ppos=3D0xc0000000031f3df8 write=3D0x0 10 cat(7130): ->grab_header inode=3D0xc0000001384abc20 13 cat(7130): <-grab_header return=3D0xc000000000da7180 19 cat(7130): <-proc_sys_call_handler return=3D0x2 21 cat(7130):<-proc_sys_read return=3D0x2 0 cat(7130):->proc_sys_read filp=3D0xc0000000fd1ccf80 buf=3D0x1002b950= 000 count=3D0x10000 ppos=3D0xc0000000031f3df8 8 cat(7130): ->proc_sys_call_handler filp=3D0xc0000000fd1ccf80 buf=3D0= x1002b950000 count=3D0x10000 ppos=3D0xc0000000031f3df8 write=3D0x0 13 cat(7130): ->grab_header inode=3D0xc0000001384abc20 18 cat(7130): <-grab_header return=3D0xc000000000da7180 25 cat(7130): <-proc_sys_call_handler return=3D0x0 29 cat(7130):<-proc_sys_read return=3D0x0 RC 0 PASS: systemtap.examples/general/para-callgraph run meta taglines '' tag 'test_support' value '' meta taglines 'test_check: stap -p4 sizeof.stp task_struct 'kernel:'' tag 'test_check' value 'stap -p4 sizeof.stp task_struct '= kernel:'' attempting command stap -p4 sizeof.stp task_struct 'kernel:' OUT /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/21/stap_216ebf= aba43fbd5b1d45ce2fce1d79e1_1287.ko RC 0 PASS: systemtap.examples/general/sizeof build meta taglines 'test_installcheck: stap sizeof.stp FILE ''' tag 'test_installcheck' value 'stap sizeof.stp FILE ''' attempting command stap sizeof.stp FILE '' OUT type FILE in byte-size: 216 RC 0 PASS: systemtap.examples/general/sizeof run meta taglines '' tag 'test_support' value '' meta taglines 'test_check: stap -wp4 varwatch.stp 'kernel.statement("do_sys= _open@fs/open.c:*")' '$$vars'' tag 'test_check' value 'stap -wp4 varwatch.s= tp 'kernel.statement("do_sys_open@fs/open.c:*")' '$$vars'' attempting command stap -wp4 varwatch.stp 'kernel.statement("do_sys_open@fs= /open.c:*")' '$$vars' OUT /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/24/stap_24b162= 1baf7bf18e61dbfec38f90d619_13418.ko RC 0 PASS: systemtap.examples/general/varwatch build meta taglines 'test_installcheck: stap -w varwatch.stp 'kernel.statement("d= o_sys_open@fs/open.c:*")' '$$vars' -c "sleep 0.2"' tag 'test_installcheck' = value 'stap -w varwatch.stp 'kernel.statement("do_sys_open@fs/open.c:*")' '= $$vars' -c "sleep 0.2"' attempting command stap -w varwatch.stp 'kernel.statement("do_sys_open@fs/o= pen.c:*")' '$$vars' -c "sleep 0.2" OUT kernel.statement("do_sys_open@fs/open.c:1036") $$vars changed in thread= 7804 from to dfd=3D0xffffffffffffff9c filename=3D0xfffcb9e1ce0 flags=3D0x= 10000 mode=3D0xb8f2a30 tmp=3D? fd=3D? kernel.statement("do_sys_open@fs/open.c:1040") $$vars changed in thread 780= 4 from dfd=3D0xffffffffffffff9c filename=3D0xfffcb9e1ce0 flags=3D0x10000 mo= de=3D0xb8f2a30 tmp=3D? fd=3D? to dfd=3D? filename=3D0xfffcb9e1ce0 flags=3D0= x10000 mode=3D0xb8f2a30 tmp=3D? fd=3D? kernel.statement("do_sys_open@fs/open.c:1038") $$vars changed in thread 780= 4 from dfd=3D? filename=3D0xfffcb9e1ce0 flags=3D0x10000 mode=3D0xb8f2a30 tm= p=3D? fd=3D? to dfd=3D? filename=3D? flags=3D? mode=3D? tmp=3D0xc0000000cad= 8a500 fd=3D0xffffffffcad8a500 kernel.statement("do_sys_open@fs/open.c:1043") $$vars changed in thread 780= 4 from dfd=3D? filename=3D? flags=3D? mode=3D? tmp=3D0xc0000000cad8a500 fd= =3D0xffffffffcad8a500 to f=3D? dfd=3D? filename=3D? flags=3D? mode=3D? tmp= =3D0xc0000000cad8a500 fd=3D0x3 kernel.statement("do_sys_open@fs/open.c:1045") $$vars changed in thread 780= 4 from f=3D? dfd=3D? filename=3D? flags=3D? mode=3D? tmp=3D0xc0000000cad8a5= 00 fd=3D0x3 to f=3D0xfffffffffffffffe dfd=3D? filename=3D? flags=3D? mode= =3D? tmp=3D0xc0000000cad8a500 fd=3D0x3 kernel.statement("do_sys_open@fs/open.c:1052") $$vars changed in thread 780= 4 from f=3D0xfffffffffffffffe dfd=3D? filename=3D? flags=3D? mode=3D? tmp= =3D0xc0000000cad8a500 fd=3D0x3 to dfd=3D? filename=3D? flags=3D? mode=3D? t= mp=3D0xc0000000cad8a500 fd=3D0xfffffffffffffffe kernel.statement("do_sys_open@fs/open.c:1036") $$vars changed in thread 780= 4 from dfd=3D? filename=3D? flags=3D? mode=3D? tmp=3D0xc0000000cad8a500 fd= =3D0xfffffffffffffffe to dfd=3D0xffffffffffffff9c filename=3D0xfffcb9e1ce0 = flags=3D0x10000 mode=3D0xb8f2a30 tmp=3D? fd=3D? kernel.statement("do_sys_open@fs/open.c:1040") $$vars changed in thread 780= 4 from dfd=3D0xffffffffffffff9c filename=3D0xfffcb9e1ce0 flags=3D0x10000 mo= de=3D0xb8f2a30 tmp=3D? fd=3D? to dfd=3D? filename=3D0xfffcb9e1ce0 flags=3D0= x10000 mode=3D0xb8f2a30 tmp=3D? fd=3D? kernel.statement("do_sys_open@fs/open.c:1038") $$vars changed in thread 780= 4 from dfd=3D? filename=3D0xfffcb9e1ce0 flags=3D0x10000 mode=3D0xb8f2a30 tm= p=3D? fd=3D? to dfd=3D? filename=3D? flags=3D? mode=3D? tmp=3D0xc0000000cad= 8a500 fd=3D0xffffffffcad8a500 kernel.statement("do_sys_open@fs/open.c:1043") $$vars changed in thread 780= 4 from dfd=3D? filename=3D? flags=3D? mode=3D? tmp=3D0xc0000000cad8a500 fd= =3D0xffffffffcad8a500 to f=3D? dfd=3D? filename=3D? flags=3D? mode=3D? tmp= =3D0xc0000000cad8a500 fd=3D0x3 kernel.statement("do_sys_open@fs/open.c:1045") $$vars changed in thread 780= 4 from f=3D? dfd=3D? filename=3D? flags=3D? mode=3D? tmp=3D0xc0000000cad8a5= 00 fd=3D0x3 to f=3D0xfffffffffffffffe dfd=3D? filename=3D? flags=3D? mode= =3D? tmp=3D0xc0000000cad8a500 fd=3D0x3 kernel.statement("do_sys_open@fs/open.c:1052") $$vars changed in thread 780= 4 from f=3D0xfffffffffffffffe dfd=3D? filename=3D? flags=3D? mode=3D? tmp= =3D0xc0000000cad8a500 fd=3D0x3 to dfd=3D? filename=3D? flags=3D? mode=3D? t= mp=3D0xc0000000cad8a500 fd=3D0xfffffffffffffffe kernel.statement("do_sys_open@fs/open.c:1036") $$vars changed in thread 780= 4 from dfd=3D? filename=3D? flags=3D? mode=3D? tmp=3D0xc0000000cad8a500 fd= =3D0xfffffffffffffffe to dfd=3D0xffffffffffffff9c filename=3D0xfffcb9e1ce0 = flags=3D0x10000 mode=3D0xb8f2a30 tmp=3D? fd=3D? kernel.statement("do_sys_open@fs/open.c:1040") $$vars changed in thread 780= 4 from dfd=3D0xffffffffffffff9c filename=3D0xfffcb9e1ce0 flags=3D0x10000 mo= de=3D0xb8f2a30 tmp=3D? fd=3D? to dfd=3D? filename=3D0xfffcb9e1ce0 flags=3D0= x10000 mode=3D0xb8f2a30 tmp=3D? fd=3D? kernel.statement("do_sys_open@fs/open.c:1038") $$vars changed in thread 780= 4 from dfd=3D? filename=3D0xfffcb9e1ce0 flags=3D0x10000 mode=3D0xb8f2a30 tm= p=3D? fd=3D? to dfd=3D? filename=3D? flags=3D? mode=3D? tmp=3D0xc0000000cad= 8a500 fd=3D0xffffffffcad8a500 kernel.statement("do_sys_open@fs/open.c:1043") $$vars changed in thread 780= 4 from dfd=3D? filename=3D? flags=3D? mode=3D? tmp=3D0xc0000000cad8a500 fd= =3D0xffffffffcad8a500 to f=3D? dfd=3D? filename=3D? flags=3D? mode=3D? tmp= =3D0xc0000000cad8a500 fd=3D0x3 kernel.statement("do_sys_open@fs/open.c:1045") $$vars changed in thread 780= 4 from f=3D? dfd=3D? filename=3D? flags=3D? mode=3D? tmp=3D0xc0000000cad8a5= 00 fd=3D0x3 to f=3D0xfffffffffffffffe dfd=3D? filename=3D? flags=3D? mode= =3D? tmp=3D0xc0000000cad8a500 fd=3D0x3 kernel.statement("do_sys_open@fs/open.c:1052") $$vars changed in thread 780= 4 from f=3D0xfffffffffffffffe dfd=3D? filename=3D? flags=3D? mode=3D? tmp= =3D0xc0000000cad8a500 fd=3D0x3 to dfd=3D? filename=3D? flags=3D? mode=3D? t= mp=3D0xc0000000cad8a500 fd=3D0xfffffffffffffffe kernel.statement("do_sys_open@fs/open.c:1036") $$vars changed in thread 780= 4 from dfd=3D? filename=3D? flags=3D? mode=3D? tmp=3D0xc0000000cad8a500 fd= =3D0xfffffffffffffffe to dfd=3D0xffffffffffffff9c filename=3D0xfffcb9e1ce0 = flags=3D0x10000 mode=3D0xb8f2a30 tmp=3D? fd=3D? kernel.statement("do_sys_open@fs/open.c:1040") $$vars changed in thread 780= 4 from dfd=3D0xffffffffffffff9c filename=3D0xfffcb9e1ce0 flags=3D0x10000 mo= de=3D0xb8f2a30 tmp=3D? fd=3D? to dfd=3D? filename=3D0xfffcb9e1ce0 flags=3D0= x10000 mode=3D0xb8f2a30 tmp=3D? fd=3D? kernel.statement("do_sys_open@fs/open.c:1038") $$vars changed in thread 780= 4 from dfd=3D? filename=3D0xfffcb9e1ce0 flags=3D0x10000 mode=3D0xb8f2a30 tm= p=3D? fd=3D? to dfd=3D? filename=3D? flags=3D? mode=3D? tmp=3D0xc0000000cad= 8a500 fd=3D0xffffffffcad8a500 kernel.statement("do_sys_open@fs/open.c:1043") $$vars changed in thread 780= 4 from dfd=3D? filename=3D? flags=3D? mode=3D? tmp=3D0xc0000000cad8a500 fd= =3D0xffffffffcad8a500 to f=3D? dfd=3D? filename=3D? flags=3D? mode=3D? tmp= =3D0xc0000000cad8a500 fd=3D0x3 kernel.statement("do_sys_open@fs/open.c:1045") $$vars changed in thread 780= 4 from f=3D? dfd=3D? filename=3D? flags=3D? mode=3D? tmp=3D0xc0000000cad8a5= 00 fd=3D0x3 to f=3D0xfffffffffffffffe dfd=3D? filename=3D? flags=3D? mode= =3D? tmp=3D0xc0000000cad8a500 fd=3D0x3 kernel.statement("do_sys_open@fs/open.c:1052") $$vars changed in thread 780= 4 from f=3D0xfffffffffffffffe dfd=3D? filename=3D? flags=3D? mode=3D? tmp= =3D0xc0000000cad8a500 fd=3D0x3 to dfd=3D? filename=3D? flags=3D? mode=3D? t= mp=3D0xc0000000cad8a500 fd=3D0xfffffffffffffffe kernel.statement("do_sys_open@fs/open.c:1036") $$vars changed in thread 780= 4 from dfd=3D? filename=3D? flags=3D? mode=3D? tmp=3D0xc0000000cad8a500 fd= =3D0xfffffffffffffffe to dfd=3D0xffffffffffffff9c filename=3D0xfffcb9e1ce0 = flags=3D0x10000 mode=3D0xb8f2a30 tmp=3D? fd=3D? kernel.statement("do_sys_open@fs/open.c:1040") $$vars changed in thread 780= 4 from dfd=3D0xffffffffffffff9c filename=3D0xfffcb9e1ce0 flags=3D0x10000 mo= de=3D0xb8f2a30 tmp=3D? fd=3D? to dfd=3D? filename=3D0xfffcb9e1ce0 flags=3D0= x10000 mode=3D0xb8f2a30 tmp=3D? fd=3D? kernel.statement("do_sys_open@fs/open.c:1038") $$vars changed in thread 780= 4 from dfd=3D? filename=3D0xfffcb9e1ce0 flags=3D0x10000 mode=3D0xb8f2a30 tm= p=3D? fd=3D? to dfd=3D? filename=3D? flags=3D? mode=3D? tmp=3D0xc0000000cad= 8a500 fd=3D0xffffffffcad8a500 kernel.statement("do_sys_open@fs/open.c:1043") $$vars changed in thread 780= 4 from dfd=3D? filename=3D? flags=3D? mode=3D? tmp=3D0xc0000000cad8a500 fd= =3D0xffffffffcad8a500 to f=3D? dfd=3D? filename=3D? flags=3D? mode=3D? tmp= =3D0xc0000000cad8a500 fd=3D0x3 kernel.statement("do_sys_open@fs/open.c:1045") $$vars changed in thread 780= 4 from f=3D? dfd=3D? filename=3D? flags=3D? mode=3D? tmp=3D0xc0000000cad8a5= 00 fd=3D0x3 to f=3D0xfffffffffffffffe dfd=3D? filename=3D? flags=3D? mode= =3D? tmp=3D0xc0000000cad8a500 fd=3D0x3 kernel.statement("do_sys_open@fs/open.c:1052") $$vars changed in thread 780= 4 from f=3D0xfffffffffffffffe dfd=3D? filename=3D? flags=3D? mode=3D? tmp= =3D0xc0000000cad8a500 fd=3D0x3 to dfd=3D? filename=3D? flags=3D? mode=3D? t= mp=3D0xc0000000cad8a500 fd=3D0xfffffffffffffffe kernel.statement("do_sys_open@fs/open.c:1036") $$vars changed in thread 780= 4 from dfd=3D? filename=3D? flags=3D? mode=3D? tmp=3D0xc0000000cad8a500 fd= =3D0xfffffffffffffffe to dfd=3D0xffffffffffffff9c filename=3D0xfffcb9e1ce0 = flags=3D0x10000 mode=3D0xb8f2a30 tmp=3D? fd=3D? kernel.statement("do_sys_open@fs/open.c:1040") $$vars changed in thread 780= 4 from dfd=3D0xffffffffffffff9c filename=3D0xfffcb9e1ce0 flags=3D0x10000 mo= de=3D0xb8f2a30 tmp=3D? fd=3D? to dfd=3D? filename=3D0xfffcb9e1ce0 flags=3D0= x10000 mode=3D0xb8f2a30 tmp=3D? fd=3D? kernel.statement("do_sys_open@fs/open.c:1038") $$vars changed in thread 780= 4 from dfd=3D? filename=3D0xfffcb9e1ce0 flags=3D0x10000 mode=3D0xb8f2a30 tm= p=3D? fd=3D? to dfd=3D? filename=3D? flags=3D? mode=3D? tmp=3D0xc0000000cad= 8a500 fd=3D0xffffffffcad8a500 kernel.statement("do_sys_open@fs/open.c:1043") $$vars changed in thread 780= 4 from dfd=3D? filename=3D? flags=3D? mode=3D? tmp=3D0xc0000000cad8a500 fd= =3D0xffffffffcad8a500 to f=3D? dfd=3D? filename=3D? flags=3D? mode=3D? tmp= =3D0xc0000000cad8a500 fd=3D0x3 kernel.statement("do_sys_open@fs/open.c:1045") $$vars changed in thread 780= 4 from f=3D? dfd=3D? filename=3D? flags=3D? mode=3D? tmp=3D0xc0000000cad8a5= 00 fd=3D0x3 to f=3D0xfffffffffffffffe dfd=3D? filename=3D? flags=3D? mode= =3D? tmp=3D0xc0000000cad8a500 fd=3D0x3 kernel.statement("do_sys_open@fs/open.c:1052") $$vars changed in thread 780= 4 from f=3D0xfffffffffffffffe dfd=3D? filename=3D? flags=3D? mode=3D? tmp= =3D0xc0000000cad8a500 fd=3D0x3 to dfd=3D? filename=3D? flags=3D? mode=3D? t= mp=3D0xc0000000cad8a500 fd=3D0xfffffffffffffffe kernel.statement("do_sys_open@fs/open.c:1036") $$vars changed in thread 780= 4 from dfd=3D? filename=3D? flags=3D? mode=3D? tmp=3D0xc0000000cad8a500 fd= =3D0xfffffffffffffffe to dfd=3D0xffffffffffffff9c filename=3D0xfffcb9e1ce0 = flags=3D0x10000 mode=3D0xb8f2a30 tmp=3D? fd=3D? kernel.statement("do_sys_open@fs/open.c:1040") $$vars changed in thread 780= 4 from dfd=3D0xffffffffffffff9c filename=3D0xfffcb9e1ce0 flags=3D0x10000 mo= de=3D0xb8f2a30 tmp=3D? fd=3D? to dfd=3D? filename=3D0xfffcb9e1ce0 flags=3D0= x10000 mode=3D0xb8f2a30 tmp=3D? fd=3D? kernel.statement("do_sys_open@fs/open.c:1038") $$vars changed in thread 780= 4 from dfd=3D? filename=3D0xfffcb9e1ce0 flags=3D0x10000 mode=3D0xb8f2a30 tm= p=3D? fd=3D? to dfd=3D? filename=3D? flags=3D? mode=3D? tmp=3D0xc0000000cad= 8a500 fd=3D0xffffffffcad8a500 kernel.statement("do_sys_open@fs/open.c:1043") $$vars changed in thread 780= 4 from dfd=3D? filename=3D? flags=3D? mode=3D? tmp=3D0xc0000000cad8a500 fd= =3D0xffffffffcad8a500 to f=3D? dfd=3D? filename=3D? flags=3D? mode=3D? tmp= =3D0xc0000000cad8a500 fd=3D0x3 kernel.statement("do_sys_open@fs/open.c:1045") $$vars changed in thread 780= 4 from f=3D? dfd=3D? filename=3D? flags=3D? mode=3D? tmp=3D0xc0000000cad8a5= 00 fd=3D0x3 to f=3D0xfffffffffffffffe dfd=3D? filename=3D? flags=3D? mode= =3D? tmp=3D0xc0000000cad8a500 fd=3D0x3 kernel.statement("do_sys_open@fs/open.c:1052") $$vars changed in thread 780= 4 from f=3D0xfffffffffffffffe dfd=3D? filename=3D? flags=3D? mode=3D? tmp= =3D0xc0000000cad8a500 fd=3D0x3 to dfd=3D? filename=3D? flags=3D? mode=3D? t= mp=3D0xc0000000cad8a500 fd=3D0xfffffffffffffffe kernel.statement("do_sys_open@fs/open.c:1036") $$vars changed in thread 780= 4 from dfd=3D? filename=3D? flags=3D? mode=3D? tmp=3D0xc0000000cad8a500 fd= =3D0xfffffffffffffffe to dfd=3D0xffffffffffffff9c filename=3D0xfffcb9e1ce0 = flags=3D0x10000 mode=3D0xb8f2a30 tmp=3D? fd=3D? kernel.statement("do_sys_open@fs/open.c:1040") $$vars changed in thread 780= 4 from dfd=3D0xffffffffffffff9c filename=3D0xfffcb9e1ce0 flags=3D0x10000 mo= de=3D0xb8f2a30 tmp=3D? fd=3D? to dfd=3D? filename=3D0xfffcb9e1ce0 flags=3D0= x10000 mode=3D0xb8f2a30 tmp=3D? fd=3D? kernel.statement("do_sys_open@fs/open.c:1038") $$vars changed in thread 780= 4 from dfd=3D? filename=3D0xfffcb9e1ce0 flags=3D0x10000 mode=3D0xb8f2a30 tm= p=3D? fd=3D? to dfd=3D? filename=3D? flags=3D? mode=3D? tmp=3D0xc0000000cad= 8a500 fd=3D0xffffffffcad8a500 kernel.statement("do_sys_open@fs/open.c:1043") $$vars changed in thread 780= 4 from dfd=3D? filename=3D? flags=3D? mode=3D? tmp=3D0xc0000000cad8a500 fd= =3D0xffffffffcad8a500 to f=3D? dfd=3D? filename=3D? flags=3D? mode=3D? tmp= =3D0xc0000000cad8a500 fd=3D0x3 kernel.statement("do_sys_open@fs/open.c:1045") $$vars changed in thread 780= 4 from f=3D? dfd=3D? filename=3D? flags=3D? mode=3D? tmp=3D0xc0000000cad8a5= 00 fd=3D0x3 to f=3D0xfffffffffffffffe dfd=3D? filename=3D? flags=3D? mode= =3D? tmp=3D0xc0000000cad8a500 fd=3D0x3 kernel.statement("do_sys_open@fs/open.c:1052") $$vars changed in thread 780= 4 from f=3D0xfffffffffffffffe dfd=3D? filename=3D? flags=3D? mode=3D? tmp= =3D0xc0000000cad8a500 fd=3D0x3 to dfd=3D? filename=3D? flags=3D? mode=3D? t= mp=3D0xc0000000cad8a500 fd=3D0xfffffffffffffffe kernel.statement("do_sys_open@fs/open.c:1036") $$vars changed in thread 780= 4 from dfd=3D? filename=3D? flags=3D? mode=3D? tmp=3D0xc0000000cad8a500 fd= =3D0xfffffffffffffffe to dfd=3D0xffffffffffffff9c filename=3D0xfffcb9e1ce0 = flags=3D0x10000 mode=3D0xb8f2a30 tmp=3D? fd=3D? kernel.statement("do_sys_open@fs/open.c:1040") $$vars changed in thread 780= 4 from dfd=3D0xffffffffffffff9c filename=3D0xfffcb9e1ce0 flags=3D0x10000 mo= de=3D0xb8f2a30 tmp=3D? fd=3D? to dfd=3D? filename=3D0xfffcb9e1ce0 flags=3D0= x10000 mode=3D0xb8f2a30 tmp=3D? fd=3D? kernel.statement("do_sys_open@fs/open.c:1038") $$vars changed in thread 780= 4 from dfd=3D? filename=3D0xfffcb9e1ce0 flags=3D0x10000 mode=3D0xb8f2a30 tm= p=3D? fd=3D? to dfd=3D? filename=3D? flags=3D? mode=3D? tmp=3D0xc0000000cad= 8a500 fd=3D0xffffffffcad8a500 kernel.statement("do_sys_open@fs/open.c:1043") $$vars changed in thread 780= 4 from dfd=3D? filename=3D? flags=3D? mode=3D? tmp=3D0xc0000000cad8a500 fd= =3D0xffffffffcad8a500 to f=3D? dfd=3D? filename=3D? flags=3D? mode=3D? tmp= =3D0xc0000000cad8a500 fd=3D0x3 kernel.statement("do_sys_open@fs/open.c:1045") $$vars changed in thread 780= 4 from f=3D? dfd=3D? filename=3D? flags=3D? mode=3D? tmp=3D0xc0000000cad8a5= 00 fd=3D0x3 to f=3D0xfffffffffffffffe dfd=3D? filename=3D? flags=3D? mode= =3D? tmp=3D0xc0000000cad8a500 fd=3D0x3 kernel.statement("do_sys_open@fs/open.c:1052") $$vars changed in thread 780= 4 from f=3D0xfffffffffffffffe dfd=3D? filename=3D? flags=3D? mode=3D? tmp= =3D0xc0000000cad8a500 fd=3D0x3 to dfd=3D? filename=3D? flags=3D? mode=3D? t= mp=3D0xc0000000cad8a500 fd=3D0xfffffffffffffffe kernel.statement("do_sys_open@fs/open.c:1036") $$vars changed in thread 780= 4 from dfd=3D? filename=3D? flags=3D? mode=3D? tmp=3D0xc0000000cad8a500 fd= =3D0xfffffffffffffffe to dfd=3D0xffffffffffffff9c filename=3D0xfffcb9e1ce0 = flags=3D0x10000 mode=3D0xb8f2a30 tmp=3D? fd=3D? kernel.statement("do_sys_open@fs/open.c:1040") $$vars changed in thread 780= 4 from dfd=3D0xffffffffffffff9c filename=3D0xfffcb9e1ce0 flags=3D0x10000 mo= de=3D0xb8f2a30 tmp=3D? fd=3D? to dfd=3D? filename=3D0xfffcb9e1ce0 flags=3D0= x10000 mode=3D0xb8f2a30 tmp=3D? fd=3D? kernel.statement("do_sys_open@fs/open.c:1038") $$vars changed in thread 780= 4 from dfd=3D? filename=3D0xfffcb9e1ce0 flags=3D0x10000 mode=3D0xb8f2a30 tm= p=3D? fd=3D? to dfd=3D? filename=3D? flags=3D? mode=3D? tmp=3D0xc0000000cad= 8a500 fd=3D0xffffffffcad8a500 kernel.statement("do_sys_open@fs/open.c:1043") $$vars changed in thread 780= 4 from dfd=3D? filename=3D? flags=3D? mode=3D? tmp=3D0xc0000000cad8a500 fd= =3D0xffffffffcad8a500 to f=3D? dfd=3D? filename=3D? flags=3D? mode=3D? tmp= =3D0xc0000000cad8a500 fd=3D0x3 kernel.statement("do_sys_open@fs/open.c:1045") $$vars changed in thread 780= 4 from f=3D? dfd=3D? filename=3D? flags=3D? mode=3D? tmp=3D0xc0000000cad8a5= 00 fd=3D0x3 to f=3D0xfffffffffffffffe dfd=3D? filename=3D? flags=3D? mode= =3D? tmp=3D0xc0000000cad8a500 fd=3D0x3 kernel.statement("do_sys_open@fs/open.c:1052") $$vars changed in thread 780= 4 from f=3D0xfffffffffffffffe dfd=3D? filename=3D? flags=3D? mode=3D? tmp= =3D0xc0000000cad8a500 fd=3D0x3 to dfd=3D? filename=3D? flags=3D? mode=3D? t= mp=3D0xc0000000cad8a500 fd=3D0xfffffffffffffffe kernel.statement("do_sys_open@fs/open.c:1036") $$vars changed in thread 780= 4 from dfd=3D? filename=3D? flags=3D? mode=3D? tmp=3D0xc0000000cad8a500 fd= =3D0xfffffffffffffffe to dfd=3D0xffffffffffffff9c filename=3D0xfffcb9e1ce0 = flags=3D0x10000 mode=3D0xb8f2a30 tmp=3D? fd=3D? kernel.statement("do_sys_open@fs/open.c:1040") $$vars changed in thread 780= 4 from dfd=3D0xffffffffffffff9c filename=3D0xfffcb9e1ce0 flags=3D0x10000 mo= de=3D0xb8f2a30 tmp=3D? fd=3D? to dfd=3D? filename=3D0xfffcb9e1ce0 flags=3D0= x10000 mode=3D0xb8f2a30 tmp=3D? fd=3D? kernel.statement("do_sys_open@fs/open.c:1038") $$vars changed in thread 780= 4 from dfd=3D? filename=3D0xfffcb9e1ce0 flags=3D0x10000 mode=3D0xb8f2a30 tm= p=3D? fd=3D? to dfd=3D? filename=3D? flags=3D? mode=3D? tmp=3D0xc0000000cad= 8a500 fd=3D0xffffffffcad8a500 kernel.statement("do_sys_open@fs/open.c:1043") $$vars changed in thread 780= 4 from dfd=3D? filename=3D? flags=3D? mode=3D? tmp=3D0xc0000000cad8a500 fd= =3D0xffffffffcad8a500 to f=3D? dfd=3D? filename=3D? flags=3D? mode=3D? tmp= =3D0xc0000000cad8a500 fd=3D0x3 kernel.statement("do_sys_open@fs/open.c:1045") $$vars changed in thread 780= 4 from f=3D? dfd=3D? filename=3D? flags=3D? mode=3D? tmp=3D0xc0000000cad8a5= 00 fd=3D0x3 to f=3D0xfffffffffffffffe dfd=3D? filename=3D? flags=3D? mode= =3D? tmp=3D0xc0000000cad8a500 fd=3D0x3 kernel.statement("do_sys_open@fs/open.c:1052") $$vars changed in thread 780= 4 from f=3D0xfffffffffffffffe dfd=3D? filename=3D? flags=3D? mode=3D? tmp= =3D0xc0000000cad8a500 fd=3D0x3 to dfd=3D? filename=3D? flags=3D? mode=3D? t= mp=3D0xc0000000cad8a500 fd=3D0xfffffffffffffffe kernel.statement("do_sys_open@fs/open.c:1036") $$vars changed in thread 780= 4 from dfd=3D? filename=3D? flags=3D? mode=3D? tmp=3D0xc0000000cad8a500 fd= =3D0xfffffffffffffffe to dfd=3D0xffffffffffffff9c filename=3D0xfffcb9e1ce0 = flags=3D0x10000 mode=3D0xb8f2a30 tmp=3D? fd=3D? kernel.statement("do_sys_open@fs/open.c:1040") $$vars changed in thread 780= 4 from dfd=3D0xffffffffffffff9c filename=3D0xfffcb9e1ce0 flags=3D0x10000 mo= de=3D0xb8f2a30 tmp=3D? fd=3D? to dfd=3D? filename=3D0xfffcb9e1ce0 flags=3D0= x10000 mode=3D0xb8f2a30 tmp=3D? fd=3D? kernel.statement("do_sys_open@fs/open.c:1038") $$vars changed in thread 780= 4 from dfd=3D? filename=3D0xfffcb9e1ce0 flags=3D0x10000 mode=3D0xb8f2a30 tm= p=3D? fd=3D? to dfd=3D? filename=3D? flags=3D? mode=3D? tmp=3D0xc0000000cad= 8a500 fd=3D0xffffffffcad8a500 kernel.statement("do_sys_open@fs/open.c:1043") $$vars changed in thread 780= 4 from dfd=3D? filename=3D? flags=3D? mode=3D? tmp=3D0xc0000000cad8a500 fd= =3D0xffffffffcad8a500 to f=3D? dfd=3D? filename=3D? flags=3D? mode=3D? tmp= =3D0xc0000000cad8a500 fd=3D0x3 kernel.statement("do_sys_open@fs/open.c:1045") $$vars changed in thread 780= 4 from f=3D? dfd=3D? filename=3D? flags=3D? mode=3D? tmp=3D0xc0000000cad8a5= 00 fd=3D0x3 to f=3D0xfffffffffffffffe dfd=3D? filename=3D? flags=3D? mode= =3D? tmp=3D0xc0000000cad8a500 fd=3D0x3 kernel.statement("do_sys_open@fs/open.c:1052") $$vars changed in thread 780= 4 from f=3D0xfffffffffffffffe dfd=3D? filename=3D? flags=3D? mode=3D? tmp= =3D0xc0000000cad8a500 fd=3D0x3 to dfd=3D? filename=3D? flags=3D? mode=3D? t= mp=3D0xc0000000cad8a500 fd=3D0xfffffffffffffffe kernel.statement("do_sys_open@fs/open.c:1036") $$vars changed in thread 780= 4 from dfd=3D? filename=3D? flags=3D? mode=3D? tmp=3D0xc0000000cad8a500 fd= =3D0xfffffffffffffffe to dfd=3D0xffffffffffffff9c filename=3D0xfffcb9e1ce0 = flags=3D0x10000 mode=3D0xb8f2a30 tmp=3D? fd=3D? kernel.statement("do_sys_open@fs/open.c:1040") $$vars changed in thread 780= 4 from dfd=3D0xffffffffffffff9c filename=3D0xfffcb9e1ce0 flags=3D0x10000 mo= de=3D0xb8f2a30 tmp=3D? fd=3D? to dfd=3D? filename=3D0xfffcb9e1ce0 flags=3D0= x10000 mode=3D0xb8f2a30 tmp=3D? fd=3D? kernel.statement("do_sys_open@fs/open.c:1038") $$vars changed in thread 780= 4 from dfd=3D? filename=3D0xfffcb9e1ce0 flags=3D0x10000 mode=3D0xb8f2a30 tm= p=3D? fd=3D? to dfd=3D? filename=3D? flags=3D? mode=3D? tmp=3D0xc0000000cad= 8a500 fd=3D0xffffffffcad8a500 kernel.statement("do_sys_open@fs/open.c:1043") $$vars changed in thread 780= 4 from dfd=3D? filename=3D? flags=3D? mode=3D? tmp=3D0xc0000000cad8a500 fd= =3D0xffffffffcad8a500 to f=3D? dfd=3D? filename=3D? flags=3D? mode=3D? tmp= =3D0xc0000000cad8a500 fd=3D0x3 kernel.statement("do_sys_open@fs/open.c:1045") $$vars changed in thread 780= 4 from f=3D? dfd=3D? filename=3D? flags=3D? mode=3D? tmp=3D0xc0000000cad8a5= 00 fd=3D0x3 to f=3D0xfffffffffffffffe dfd=3D? filename=3D? flags=3D? mode= =3D? tmp=3D0xc0000000cad8a500 fd=3D0x3 kernel.statement("do_sys_open@fs/open.c:1052") $$vars changed in thread 780= 4 from f=3D0xfffffffffffffffe dfd=3D? filename=3D? flags=3D? mode=3D? tmp= =3D0xc0000000cad8a500 fd=3D0x3 to dfd=3D? filename=3D? flags=3D? mode=3D? t= mp=3D0xc0000000cad8a500 fd=3D0xfffffffffffffffe kernel.statement("do_sys_open@fs/open.c:1036") $$vars changed in thread 780= 4 from dfd=3D? filename=3D? flags=3D? mode=3D? tmp=3D0xc0000000cad8a500 fd= =3D0xfffffffffffffffe to dfd=3D0xffffffffffffff9c filename=3D0xfffcb9e1ce0 = flags=3D0x10000 mode=3D0xb8f2a30 tmp=3D? fd=3D? kernel.statement("do_sys_open@fs/open.c:1040") $$vars changed in thread 780= 4 from dfd=3D0xffffffffffffff9c filename=3D0xfffcb9e1ce0 flags=3D0x10000 mo= de=3D0xb8f2a30 tmp=3D? fd=3D? to dfd=3D? filename=3D0xfffcb9e1ce0 flags=3D0= x10000 mode=3D0xb8f2a30 tmp=3D? fd=3D? kernel.statement("do_sys_open@fs/open.c:1038") $$vars changed in thread 780= 4 from dfd=3D? filename=3D0xfffcb9e1ce0 flags=3D0x10000 mode=3D0xb8f2a30 tm= p=3D? fd=3D? to dfd=3D? filename=3D? flags=3D? mode=3D? tmp=3D0xc0000000cad= 8a500 fd=3D0xffffffffcad8a500 kernel.statement("do_sys_open@fs/open.c:1043") $$vars changed in thread 780= 4 from dfd=3D? filename=3D? flags=3D? mode=3D? tmp=3D0xc0000000cad8a500 fd= =3D0xffffffffcad8a500 to f=3D? dfd=3D? filename=3D? flags=3D? mode=3D? tmp= =3D0xc0000000cad8a500 fd=3D0x3 kernel.statement("do_sys_open@fs/open.c:1045") $$vars changed in thread 780= 4 from f=3D? dfd=3D? filename=3D? flags=3D? mode=3D? tmp=3D0xc0000000cad8a5= 00 fd=3D0x3 to f=3D0xfffffffffffffffe dfd=3D? filename=3D? flags=3D? mode= =3D? tmp=3D0xc0000000cad8a500 fd=3D0x3 kernel.statement("do_sys_open@fs/open.c:1052") $$vars changed in thread 780= 4 from f=3D0xfffffffffffffffe dfd=3D? filename=3D? flags=3D? mode=3D? tmp= =3D0xc0000000cad8a500 fd=3D0x3 to dfd=3D? filename=3D? flags=3D? mode=3D? t= mp=3D0xc0000000cad8a500 fd=3D0xfffffffffffffffe kernel.statement("do_sys_open@fs/open.c:1036") $$vars changed in thread 780= 4 from dfd=3D? filename=3D? flags=3D? mode=3D? tmp=3D0xc0000000cad8a500 fd= =3D0xfffffffffffffffe to dfd=3D0xffffffffffffff9c filename=3D0xfffcb9e1ce0 = flags=3D0x10000 mode=3D0xb8f2a30 tmp=3D? fd=3D? kernel.statement("do_sys_open@fs/open.c:1040") $$vars changed in thread 780= 4 from dfd=3D0xffffffffffffff9c filename=3D0xfffcb9e1ce0 flags=3D0x10000 mo= de=3D0xb8f2a30 tmp=3D? fd=3D? to dfd=3D? filename=3D0xfffcb9e1ce0 flags=3D0= x10000 mode=3D0xb8f2a30 tmp=3D? fd=3D? kernel.statement("do_sys_open@fs/open.c:1038") $$vars changed in thread 780= 4 from dfd=3D? filename=3D0xfffcb9e1ce0 flags=3D0x10000 mode=3D0xb8f2a30 tm= p=3D? fd=3D? to dfd=3D? filename=3D? flags=3D? mode=3D? tmp=3D0xc0000000cad= 8a500 fd=3D0xffffffffcad8a500 kernel.statement("do_sys_open@fs/open.c:1043") $$vars changed in thread 780= 4 from dfd=3D? filename=3D? flags=3D? mode=3D? tmp=3D0xc0000000cad8a500 fd= =3D0xffffffffcad8a500 to f=3D? dfd=3D? filename=3D? flags=3D? mode=3D? tmp= =3D0xc0000000cad8a500 fd=3D0x3 kernel.statement("do_sys_open@fs/open.c:1045") $$vars changed in thread 780= 4 from f=3D? dfd=3D? filename=3D? flags=3D? mode=3D? tmp=3D0xc0000000cad8a5= 00 fd=3D0x3 to f=3D0xfffffffffffffffe dfd=3D? filename=3D? flags=3D? mode= =3D? tmp=3D0xc0000000cad8a500 fd=3D0x3 kernel.statement("do_sys_open@fs/open.c:1052") $$vars changed in thread 780= 4 from f=3D0xfffffffffffffffe dfd=3D? filename=3D? flags=3D? mode=3D? tmp= =3D0xc0000000cad8a500 fd=3D0x3 to dfd=3D? filename=3D? flags=3D? mode=3D? t= mp=3D0xc0000000cad8a500 fd=3D0xfffffffffffffffe kernel.statement("do_sys_open@fs/open.c:1036") $$vars changed in thread 780= 4 from dfd=3D? filename=3D? flags=3D? mode=3D? tmp=3D0xc0000000cad8a500 fd= =3D0xfffffffffffffffe to dfd=3D0xffffffffffffff9c filename=3D0xfffcb9e1ce0 = flags=3D0x10000 mode=3D0xb8f2a30 tmp=3D? fd=3D? kernel.statement("do_sys_open@fs/open.c:1040") $$vars changed in thread 780= 4 from dfd=3D0xffffffffffffff9c filename=3D0xfffcb9e1ce0 flags=3D0x10000 mo= de=3D0xb8f2a30 tmp=3D? fd=3D? to dfd=3D? filename=3D0xfffcb9e1ce0 flags=3D0= x10000 mode=3D0xb8f2a30 tmp=3D? fd=3D? kernel.statement("do_sys_open@fs/open.c:1038") $$vars changed in thread 780= 4 from dfd=3D? filename=3D0xfffcb9e1ce0 flags=3D0x10000 mode=3D0xb8f2a30 tm= p=3D? fd=3D? to dfd=3D? filename=3D? flags=3D? mode=3D? tmp=3D0xc0000000cad= 8a500 fd=3D0xffffffffcad8a500 kernel.statement("do_sys_open@fs/open.c:1043") $$vars changed in thread 780= 4 from dfd=3D? filename=3D? flags=3D? mode=3D? tmp=3D0xc0000000cad8a500 fd= =3D0xffffffffcad8a500 to f=3D? dfd=3D? filename=3D? flags=3D? mode=3D? tmp= =3D0xc0000000cad8a500 fd=3D0x3 kernel.statement("do_sys_open@fs/open.c:1045") $$vars changed in thread 780= 4 from f=3D? dfd=3D? filename=3D? flags=3D? mode=3D? tmp=3D0xc0000000cad8a5= 00 fd=3D0x3 to f=3D0xfffffffffffffffe dfd=3D? filename=3D? flags=3D? mode= =3D? tmp=3D0xc0000000cad8a500 fd=3D0x3 kernel.statement("do_sys_open@fs/open.c:1052") $$vars changed in thread 780= 4 from f=3D0xfffffffffffffffe dfd=3D? filename=3D? flags=3D? mode=3D? tmp= =3D0xc0000000cad8a500 fd=3D0x3 to dfd=3D? filename=3D? flags=3D? mode=3D? t= mp=3D0xc0000000cad8a500 fd=3D0xfffffffffffffffe kernel.statement("do_sys_open@fs/open.c:1036") $$vars changed in thread 780= 4 from dfd=3D? filename=3D? flags=3D? mode=3D? tmp=3D0xc0000000cad8a500 fd= =3D0xfffffffffffffffe to dfd=3D0xffffffffffffff9c filename=3D0x800b8d6888 f= lags=3D0x10000 mode=3D0x1 tmp=3D? fd=3D? kernel.statement("do_sys_open@fs/open.c:1040") $$vars changed in thread 780= 4 from dfd=3D0xffffffffffffff9c filename=3D0x800b8d6888 flags=3D0x10000 mod= e=3D0x1 tmp=3D? fd=3D? to dfd=3D? filename=3D0x800b8d6888 flags=3D0x10000 m= ode=3D0x1 tmp=3D? fd=3D? kernel.statement("do_sys_open@fs/open.c:1038") $$vars changed in thread 780= 4 from dfd=3D? filename=3D0x800b8d6888 flags=3D0x10000 mode=3D0x1 tmp=3D? f= d=3D? to dfd=3D? filename=3D? flags=3D? mode=3D? tmp=3D0xc0000000cad8a500 f= d=3D0xffffffffcad8a500 kernel.statement("do_sys_open@fs/open.c:1043") $$vars changed in thread 780= 4 from dfd=3D? filename=3D? flags=3D? mode=3D? tmp=3D0xc0000000cad8a500 fd= =3D0xffffffffcad8a500 to f=3D? dfd=3D? filename=3D? flags=3D? mode=3D? tmp= =3D0xc0000000cad8a500 fd=3D0x3 kernel.statement("do_sys_open@fs/open.c:1048") $$vars changed in thread 780= 4 from f=3D? dfd=3D? filename=3D? flags=3D? mode=3D? tmp=3D0xc0000000cad8a5= 00 fd=3D0x3 to f=3D0xc0000000faae9380 dfd=3D? filename=3D? flags=3D? mode= =3D? tmp=3D0xc0000000cad8a500 fd=3D0x3 kernel.statement("do_sys_open@fs/open.c:1052") $$vars changed in thread 780= 4 from f=3D0xc0000000faae9380 dfd=3D? filename=3D? flags=3D? mode=3D? tmp= =3D0xc0000000cad8a500 fd=3D0x3 to dfd=3D? filename=3D? flags=3D? mode=3D? t= mp=3D0xc0000000cad8a500 fd=3D0x3 kernel.statement("do_sys_open@fs/open.c:1036") $$vars changed in thread 780= 4 from dfd=3D? filename=3D? flags=3D? mode=3D? tmp=3D0xc0000000cad8a500 fd= =3D0x3 to dfd=3D0xffffffffffffff9c filename=3D0xfff9f17b182 flags=3D0x10000= mode=3D0xb8f2a30 tmp=3D? fd=3D? kernel.statement("do_sys_open@fs/open.c:1040") $$vars changed in thread 780= 4 from dfd=3D0xffffffffffffff9c filename=3D0xfff9f17b182 flags=3D0x10000 mo= de=3D0xb8f2a30 tmp=3D? fd=3D? to dfd=3D? filename=3D0xfff9f17b182 flags=3D0= x10000 mode=3D0xb8f2a30 tmp=3D? fd=3D? kernel.statement("do_sys_open@fs/open.c:1038") $$vars changed in thread 780= 4 from dfd=3D? filename=3D0xfff9f17b182 flags=3D0x10000 mode=3D0xb8f2a30 tm= p=3D? fd=3D? to dfd=3D? filename=3D? flags=3D? mode=3D? tmp=3D0xc0000000cad= 8a500 fd=3D0xffffffffcad8a500 kernel.statement("do_sys_open@fs/open.c:1043") $$vars changed in thread 780= 4 from dfd=3D? filename=3D? flags=3D? mode=3D? tmp=3D0xc0000000cad8a500 fd= =3D0xffffffffcad8a500 to f=3D? dfd=3D? filename=3D? flags=3D? mode=3D? tmp= =3D0xc0000000cad8a500 fd=3D0x3 kernel.statement("do_sys_open@fs/open.c:1048") $$vars changed in thread 780= 4 from f=3D? dfd=3D? filename=3D? flags=3D? mode=3D? tmp=3D0xc0000000cad8a5= 00 fd=3D0x3 to f=3D0xc0000001300ea680 dfd=3D? filename=3D? flags=3D? mode= =3D? tmp=3D0xc0000000cad8a500 fd=3D0x3 kernel.statement("do_sys_open@fs/open.c:1052") $$vars changed in thread 780= 4 from f=3D0xc0000001300ea680 dfd=3D? filename=3D? flags=3D? mode=3D? tmp= =3D0xc0000000cad8a500 fd=3D0x3 to dfd=3D? filename=3D? flags=3D? mode=3D? t= mp=3D0xc0000000cad8a500 fd=3D0x3 kernel.statement("do_sys_open@fs/open.c:1036") $$vars changed in thread 780= 4 from dfd=3D? filename=3D? flags=3D? mode=3D? tmp=3D0xc0000000cad8a500 fd= =3D0x3 to dfd=3D0xffffffffffffff9c filename=3D0x800ba93d38 flags=3D0x10000 = mode=3D0x494e004b tmp=3D? fd=3D? kernel.statement("do_sys_open@fs/open.c:1040") $$vars changed in thread 780= 4 from dfd=3D0xffffffffffffff9c filename=3D0x800ba93d38 flags=3D0x10000 mod= e=3D0x494e004b tmp=3D? fd=3D? to dfd=3D? filename=3D0x800ba93d38 flags=3D0x= 10000 mode=3D0x494e004b tmp=3D? fd=3D? kernel.statement("do_sys_open@fs/open.c:1038") $$vars changed in thread 780= 4 from dfd=3D? filename=3D0x800ba93d38 flags=3D0x10000 mode=3D0x494e004b tm= p=3D? fd=3D? to dfd=3D? filename=3D? flags=3D? mode=3D? tmp=3D0xc0000000cad= 8a500 fd=3D0xffffffffcad8a500 kernel.statement("do_sys_open@fs/open.c:1043") $$vars changed in thread 780= 4 from dfd=3D? filename=3D? flags=3D? mode=3D? tmp=3D0xc0000000cad8a500 fd= =3D0xffffffffcad8a500 to f=3D? dfd=3D? filename=3D? flags=3D? mode=3D? tmp= =3D0xc0000000cad8a500 fd=3D0x3 kernel.statement("do_sys_open@fs/open.c:1048") $$vars changed in thread 780= 4 from f=3D? dfd=3D? filename=3D? flags=3D? mode=3D? tmp=3D0xc0000000cad8a5= 00 fd=3D0x3 to f=3D0xc0000000f2354480 dfd=3D? filename=3D? flags=3D? mode= =3D? tmp=3D0xc0000000cad8a500 fd=3D0x3 kernel.statement("do_sys_open@fs/open.c:1052") $$vars changed in thread 780= 4 from f=3D0xc0000000f2354480 dfd=3D? filename=3D? flags=3D? mode=3D? tmp= =3D0xc0000000cad8a500 fd=3D0x3 to dfd=3D? filename=3D? flags=3D? mode=3D? t= mp=3D0xc0000000cad8a500 fd=3D0x3 RC 0 PASS: systemtap.examples/general/varwatch run meta taglines 'test_support: stap -l 'kernel.trace("irq_handler_entry")'' t= ag 'test_support' value 'stap -l 'kernel.trace("irq_handler_entry")'' attempting command stap -l 'kernel.trace("irq_handler_entry")' OUT kernel.trace("irq_handler_entry") RC 0 PASS: systemtap.examples/interrupt/interrupts-by-dev support meta taglines 'test_check: stap -p4 interrupts-by-dev.stp' tag 'test_check'= value 'stap -p4 interrupts-by-dev.stp' attempting command stap -p4 interrupts-by-dev.stp OUT /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/82/stap_82e7c1= 056c228c56039620ab766767e7_14343.ko RC 0 PASS: systemtap.examples/interrupt/interrupts-by-dev build meta taglines 'test_installcheck: stap interrupts-by-dev.stp -c "sleep 0.2"= ' tag 'test_installcheck' value 'stap interrupts-by-dev.stp -c "sleep 0.2"' attempting command stap interrupts-by-dev.stp -c "sleep 0.2" OUT DEVICE NUMBER OF INTERRUPTS=20 IPI : 3 DEVICE NUMBER OF INTERRUPTS=20 RC 0 PASS: systemtap.examples/interrupt/interrupts-by-dev run meta taglines '' tag 'test_support' value '' meta taglines 'test_check: stap -p4 scf.stp' tag 'test_check' value 'stap -= p4 scf.stp' attempting command stap -p4 scf.stp OUT /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/8c/stap_8ca684= d2ec9d34c2b595249a5fbbb061_3156.ko RC 0 PASS: systemtap.examples/interrupt/scf build meta taglines 'test_installcheck: stap scf.stp -c "sleep 0.2"' tag 'test_in= stallcheck' value 'stap scf.stp -c "sleep 0.2"' attempting command stap scf.stp -c "sleep 0.2" OUT Starting probe, type control-c to stop. RC 0 PASS: systemtap.examples/interrupt/scf run meta taglines '' tag 'test_support' value '' meta taglines 'test_check: stap -p4 deviceseeks.stp' tag 'test_check' value= 'stap -p4 deviceseeks.stp' attempting command stap -p4 deviceseeks.stp OUT /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/25/stap_2578be= 99a053c4a835e767fffd7d8cf2_8649.ko RC 0 PASS: systemtap.examples/io/deviceseeks build meta taglines 'test_installcheck: stap deviceseeks.stp -c "sleep 0.2"' tag = 'test_installcheck' value 'stap deviceseeks.stp -c "sleep 0.2"' attempting command stap deviceseeks.stp -c "sleep 0.2" OUT=20 RC 0 PASS: systemtap.examples/io/deviceseeks run meta taglines '' tag 'test_support' value '' meta taglines 'test_check: stap -p4 disktop.stp' tag 'test_check' value 'st= ap -p4 disktop.stp' attempting command stap -p4 disktop.stp OUT /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/e2/stap_e266e8= b34eafac70135c2d6012f34815_25766.ko RC 0 PASS: systemtap.examples/io/disktop build meta taglines 'test_installcheck: stap disktop.stp -c "sleep 0.2"' tag 'tes= t_installcheck' value 'stap disktop.stp -c "sleep 0.2"' attempting command stap disktop.stp -c "sleep 0.2" OUT=20 RC 0 PASS: systemtap.examples/io/disktop run meta taglines '' tag 'test_support' value '' meta taglines 'test_check: stap -p4 inodewatch.stp 0x08 0x01 100' tag 'test= _check' value 'stap -p4 inodewatch.stp 0x08 0x01 100' attempting command stap -p4 inodewatch.stp 0x08 0x01 100 OUT /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/23/stap_23f1b0= 35fe94be128a9c54f88859d6cb_14121.ko RC 0 PASS: systemtap.examples/io/inodewatch build meta taglines 'test_installcheck: stap inodewatch.stp 0x08 0x01 100 -c "sle= ep 0.2"' tag 'test_installcheck' value 'stap inodewatch.stp 0x08 0x01 100 -= c "sleep 0.2"' attempting command stap inodewatch.stp 0x08 0x01 100 -c "sleep 0.2" OUT=20 RC 0 PASS: systemtap.examples/io/inodewatch run meta taglines '' tag 'test_support' value '' meta taglines 'test_check: stap -p4 inodewatch2.stp 0x08 0x01 100' tag 'tes= t_check' value 'stap -p4 inodewatch2.stp 0x08 0x01 100' attempting command stap -p4 inodewatch2.stp 0x08 0x01 100 OUT /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/4e/stap_4eb9c5= ba1c229ba6ea7341c872799c4a_6082.ko RC 0 PASS: systemtap.examples/io/inodewatch2 build meta taglines 'test_installcheck: stap inodewatch2.stp 0x08 0x01 100 -c "sl= eep 0.2"' tag 'test_installcheck' value 'stap inodewatch2.stp 0x08 0x01 100= -c "sleep 0.2"' attempting command stap inodewatch2.stp 0x08 0x01 100 -c "sleep 0.2" OUT=20 RC 0 PASS: systemtap.examples/io/inodewatch2 run meta taglines '' tag 'test_support' value '' meta taglines 'test_check: stap -p4 io_submit.stp' tag 'test_check' value '= stap -p4 io_submit.stp' attempting command stap -p4 io_submit.stp OUT /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/1b/stap_1b1cc6= 2a5767bb874e568d3825ae6207_8291.ko RC 0 PASS: systemtap.examples/io/io_submit build meta taglines 'test_installcheck: stap io_submit.stp -c "sleep 0.2"' tag 't= est_installcheck' value 'stap io_submit.stp -c "sleep 0.2"' attempting command stap io_submit.stp -c "sleep 0.2" OUT=20 RC 0 PASS: systemtap.examples/io/io_submit run meta taglines '' tag 'test_support' value '' meta taglines 'test_check: stap -p4 ioblktime.stp' tag 'test_check' value '= stap -p4 ioblktime.stp' attempting command stap -p4 ioblktime.stp OUT /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/c1/stap_c1a27b= 2bf0e19e5b819e573de8952340_10161.ko RC 0 PASS: systemtap.examples/io/ioblktime build meta taglines 'test_installcheck: stap ioblktime.stp -c "sleep 0.2"' tag 't= est_installcheck' value 'stap ioblktime.stp -c "sleep 0.2"' attempting command stap ioblktime.stp -c "sleep 0.2" OUT =1B[1;1H=1B[J device rw total (us) count avg (us) RC 0 PASS: systemtap.examples/io/ioblktime run meta taglines '' tag 'test_support' value '' meta taglines 'test_check: stap -p4 iodevstats.stp' tag 'test_check' value = 'stap -p4 iodevstats.stp' attempting command stap -p4 iodevstats.stp OUT /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/c6/stap_c66149= f1d65c1459c9a1391a51030b8e_21396.ko RC 0 PASS: systemtap.examples/io/iodevstats build meta taglines 'test_installcheck: stap iodevstats.stp -c "sleep 0.2"' tag '= test_installcheck' value 'stap iodevstats.stp -c "sleep 0.2"' attempting command stap iodevstats.stp -c "sleep 0.2" OUT starting probe read read write w= rite name device read KB tot B avg write KB tot B= avg sleep 253, 0 2 1 612 0 0 = 0 stapio 253, 0 4 0 194 0 0 = 0 stapio 0, 7 3 0 9 0 0 = 0 stapio 0, 8 0 0 0 1 0 = 15 RC 0 PASS: systemtap.examples/io/iodevstats run meta taglines 'test_support: stap -l 'module("st").function("st_do_scsi")!,= kernel.function("st_do_scsi")'' tag 'test_support' value 'stap -l 'module("= st").function("st_do_scsi")!,kernel.function("st_do_scsi")'' attempting command stap -l 'module("st").function("st_do_scsi")!,kernel.fun= ction("st_do_scsi")' OUT module("st").function("st_do_scsi@drivers/scsi/st.c:521")! RC 0 PASS: systemtap.examples/io/iostat-scsi support meta taglines 'test_check: stap -g -p4 iostat-scsi.stp 1' tag 'test_check' = value 'stap -g -p4 iostat-scsi.stp 1' attempting command stap -g -p4 iostat-scsi.stp 1 OUT /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/53/stap_538331= bb4a612600681a55ee8c49bf2c_7796.ko RC 0 PASS: systemtap.examples/io/iostat-scsi build meta taglines 'test_installcheck: stap -g iostat-scsi.stp 1 -c "sleep 0.2"'= tag 'test_installcheck' value 'stap -g iostat-scsi.stp 1 -c "sleep 0.2"' attempting command stap -g iostat-scsi.stp 1 -c "sleep 0.2" OUT=20 RC 0 PASS: systemtap.examples/io/iostat-scsi run meta taglines '' tag 'test_support' value '' meta taglines 'test_check: stap -p4 iostats.stp' tag 'test_check' value 'st= ap -p4 iostats.stp' attempting command stap -p4 iostats.stp OUT /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/cd/stap_cd9313= fa2ced87e254d898e22d80b2ba_15528.ko RC 0 PASS: systemtap.examples/io/iostats build meta taglines 'test_installcheck: stap iostats.stp -c "sleep 0.2"' tag 'tes= t_installcheck' value 'stap iostats.stp -c "sleep 0.2"' attempting command stap iostats.stp -c "sleep 0.2" OUT starting probe read read write w= rite name open read KB tot B avg write KB tot B= avg sleep 19 1 0 832 0 0 = 0 stapio 0 3 0 9 1 0 = 15 RC 0 PASS: systemtap.examples/io/iostats run meta taglines '' tag 'test_support' value '' meta taglines 'test_check: stap -p4 iotime.stp' tag 'test_check' value 'sta= p -p4 iotime.stp' attempting command stap -p4 iotime.stp OUT /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/9e/stap_9e9a1d= df9214b9178f70f4367ed886f8_14552.ko RC 0 PASS: systemtap.examples/io/iotime build meta taglines 'test_installcheck: stap iotime.stp -c "sleep 0.2"' tag 'test= _installcheck' value 'stap iotime.stp -c "sleep 0.2"' attempting command stap iotime.stp -c "sleep 0.2" OUT 481 10944 (sleep) access /etc/ld.so.cache read: 0 write: 0 535 10944 (sleep) access /lib64/power6/libc.so.6 read: 832 write: 0 538 10944 (sleep) iotime /lib64/power6/libc.so.6 time: 2 602 10944 (sleep) access /usr/lib/locale/locale-archive read: 0 write: 0 RC 0 PASS: systemtap.examples/io/iotime run meta taglines '' tag 'test_support' value '' meta taglines 'test_check: stap -p4 iotop.stp' tag 'test_check' value 'stap= -p4 iotop.stp' attempting command stap -p4 iotop.stp OUT /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/73/stap_73766d= c8ae0ae01937f9d337777931ff_20844.ko RC 0 PASS: systemtap.examples/io/iotop build meta taglines 'test_installcheck: stap iotop.stp -c "sleep 0.2"' tag 'test_= installcheck' value 'stap iotop.stp -c "sleep 0.2"' attempting command stap iotop.stp -c "sleep 0.2" OUT=20 RC 0 PASS: systemtap.examples/io/iotop run meta taglines '' tag 'test_support' value '' meta taglines 'test_check: stap -p4 mbrwatch.stp' tag 'test_check' value 's= tap -p4 mbrwatch.stp' attempting command stap -p4 mbrwatch.stp OUT /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/07/stap_07241e= d5b953b843952ac4ec127eef2f_12451.ko RC 0 PASS: systemtap.examples/io/mbrwatch build meta taglines 'test_installcheck: stap mbrwatch.stp -c "dd of=3D/dev/null c= ount=3D1 if=3D/dev/`grep -v major /proc/partitions | grep . | awk '{print $= 4}' | head -1`"' tag 'test_installcheck' value 'stap mbrwatch.stp -c "dd of= =3D/dev/null count=3D1 if=3D/dev/`grep -v major /proc/partitions | grep . |= awk '{print $4}' | head -1`"' attempting command stap mbrwatch.stp -c "dd of=3D/dev/null count=3D1 if=3D/= dev/`grep -v major /proc/partitions | grep . | awk '{print $4}' | head -1`" OUT 1+0 records in 1+0 records out 512 bytes (512 B) copied, 3.0459e-05 s, 16.8 MB/s RC 0 PASS: systemtap.examples/io/mbrwatch run meta taglines '' tag 'test_support' value '' meta taglines 'test_check: stap -p4 nfs_func_users.stp' tag 'test_check' va= lue 'stap -p4 nfs_func_users.stp' attempting command stap -p4 nfs_func_users.stp OUT /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/f8/stap_f8f71a= a62e1ee8b6da3ac4a2918cfccf_67899.ko RC 0 PASS: systemtap.examples/io/nfs_func_users build meta taglines 'test_installcheck: stap nfs_func_users.stp -c "sleep 0.2"' t= ag 'test_installcheck' value 'stap nfs_func_users.stp -c "sleep 0.2"' attempting command stap nfs_func_users.stp -c "sleep 0.2" OUT Collecting top NFSD procs... name(pid) nfs ops RC 0 PASS: systemtap.examples/io/nfs_func_users run meta taglines '' tag 'test_support' value '' meta taglines 'test_check: stap -p4 traceio.stp' tag 'test_check' value 'st= ap -p4 traceio.stp' attempting command stap -p4 traceio.stp OUT /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/a3/stap_a34ee6= 4788ad4f0cacede24457c383a7_21006.ko RC 0 PASS: systemtap.examples/io/traceio build meta taglines 'test_installcheck: stap traceio.stp -c "sleep 0.2"' tag 'tes= t_installcheck' value 'stap traceio.stp -c "sleep 0.2"' attempting command stap traceio.stp -c "sleep 0.2" OUT=20 RC 0 PASS: systemtap.examples/io/traceio run meta taglines '' tag 'test_support' value '' meta taglines 'test_check: stap -p4 traceio2.stp 0x0801' tag 'test_check' v= alue 'stap -p4 traceio2.stp 0x0801' attempting command stap -p4 traceio2.stp 0x0801 OUT /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/ae/stap_aebfd2= 6980070102e036534130a5b552_13559.ko RC 0 PASS: systemtap.examples/io/traceio2 build meta taglines 'test_installcheck: stap traceio2.stp 0x0801 -c "sleep 0.2"' = tag 'test_installcheck' value 'stap traceio2.stp 0x0801 -c "sleep 0.2"' attempting command stap traceio2.stp 0x0801 -c "sleep 0.2" OUT=20 RC 0 PASS: systemtap.examples/io/traceio2 run meta taglines 'test_support: stap -l 'kernel.function("tty_audit_add_data")= '' tag 'test_support' value 'stap -l 'kernel.function("tty_audit_add_data")= '' attempting command stap -l 'kernel.function("tty_audit_add_data")' OUT kernel.function("tty_audit_add_data@drivers/char/tty_audit.c:266") RC 0 PASS: systemtap.examples/io/ttyspy support meta taglines 'test_check: stap -gp4 ttyspy.stp' tag 'test_check' value 'st= ap -gp4 ttyspy.stp' attempting command stap -gp4 ttyspy.stp OUT /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/d6/stap_d65cfe= 99d5c5e2aea3800f6f70a6dd7d_8440.ko RC 0 PASS: systemtap.examples/io/ttyspy build meta taglines 'test_installcheck: stap --skip-badvars -g ttyspy.stp -c "sle= ep 1"' tag 'test_installcheck' value 'stap --skip-badvars -g ttyspy.stp -c = "sleep 1"' attempting command stap --skip-badvars -g ttyspy.stp -c "sleep 1" OUT=20 RC 0 PASS: systemtap.examples/io/ttyspy run meta taglines 'test_support: stap -l 'kernel.function("lock_kernel").return= '' tag 'test_support' value 'stap -l 'kernel.function("lock_kernel").return= '' attempting command stap -l 'kernel.function("lock_kernel").return' OUT kernel.function("lock_kernel@lib/kernel_lock.c:116").return RC 0 PASS: systemtap.examples/locks/bkl support meta taglines 'test_check: stap -p4 bkl.stp 1' tag 'test_check' value 'stap= -p4 bkl.stp 1' attempting command stap -p4 bkl.stp 1 OUT /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/10/stap_108492= 5f1bd9a22c425b5e2db2089ee7_7266.ko RC 0 PASS: systemtap.examples/locks/bkl build meta taglines 'test_installcheck: stap bkl.stp -c "sleep 0.2" 1' tag 'test_= installcheck' value 'stap bkl.stp -c "sleep 0.2" 1' attempting command stap bkl.stp -c "sleep 0.2" 1 OUT stap ready stap exiting RC 0 PASS: systemtap.examples/locks/bkl run meta taglines 'test_support: stap -l 'kernel.function("lock_kernel").return= '' tag 'test_support' value 'stap -l 'kernel.function("lock_kernel").return= '' attempting command stap -l 'kernel.function("lock_kernel").return' OUT kernel.function("lock_kernel@lib/kernel_lock.c:116").return RC 0 PASS: systemtap.examples/locks/bkl_stats support meta taglines 'test_check: stap -p4 bkl_stats.stp' tag 'test_check' value '= stap -p4 bkl_stats.stp' attempting command stap -p4 bkl_stats.stp OUT /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/f8/stap_f84dc7= ae1250447d6f9a3ee62ee9d593_4667.ko RC 0 PASS: systemtap.examples/locks/bkl_stats build meta taglines 'test_installcheck: stap bkl_stats.stp -c "sleep 0.2"' tag 't= est_installcheck' value 'stap bkl_stats.stp -c "sleep 0.2"' attempting command stap bkl_stats.stp -c "sleep 0.2" OUT biglock_stats running big kernel lock waiting statistics name tid count min avg max big kernel lock holder statistics name tid count min avg max RC 0 PASS: systemtap.examples/locks/bkl_stats run meta taglines '' tag 'test_support' value '' meta taglines 'test_check: ./kmalloc-top -o "-p4" -c "sleep 0"' tag 'test_c= heck' value './kmalloc-top -o "-p4" -c "sleep 0"' attempting command ./kmalloc-top -o "-p4" -c "sleep 0" OUT Press Ctrl-C to stop. Will print stacks with counts >=3D 1. Num stacks before filtering: 0 Num stacks after filtering: 0 Total kmallocs (before filtering): 0 Total kmallocs (after filtering): 0 The filter stacks have 0 of the total kmallocs RC 0 PASS: systemtap.examples/memory/kmalloc-top build meta taglines 'test_installcheck: ./kmalloc-top -c "sleep 0.2"' tag 'test_i= nstallcheck' value './kmalloc-top -c "sleep 0.2"' attempting command ./kmalloc-top -c "sleep 0.2" OUT Press Ctrl-C to stop. Will print stacks with counts >=3D 1. This path seen 5 times: 0xc00000000019e0e0 : .__kmalloc+0x0/0x260 [kernel] 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 This path seen 3 times: 0xc00000000019e0e0 : .__kmalloc+0x0/0x260 [kernel] 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0xe 0xc00 0xa 0x800b9e8618 This path seen 1 times: 0xc00000000019e0e0 : .__kmalloc+0x0/0x260 [kernel] 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0xe 0xc00 0xa 0x80 Num stacks before filtering: 3 Num stacks after filtering: 3 Total kmallocs (before filtering): 9 Total kmallocs (after filtering): 9 The filter stacks have 100 of the total kmallocs RC 0 PASS: systemtap.examples/memory/kmalloc-top run meta taglines 'test_support: stap -l 'kernel.trace("mm_page_allocation")' &= & stap -l 'kernel.trace("mm_page_free")' && stap -l 'kernel.trace("mm_anon_= fault")' && stap -l 'kernel.trace("mm_anon_pgin")' && stap -l 'kernel.trace= ("mm_anon_cow")' && stap -l 'kernel.trace("mm_anon_unmap")' && stap -l 'ker= nel.trace("mm_anon_userfree")'' tag 'test_support' value 'stap -l 'kernel.t= race("mm_page_allocation")' && stap -l 'kernel.trace("mm_page_free")' && st= ap -l 'kernel.trace("mm_anon_fault")' && stap -l 'kernel.trace("mm_anon_pgi= n")' && stap -l 'kernel.trace("mm_anon_cow")' && stap -l 'kernel.trace("mm_= anon_unmap")' && stap -l 'kernel.trace("mm_anon_userfree")'' attempting command stap -l 'kernel.trace("mm_page_allocation")' && stap -l = 'kernel.trace("mm_page_free")' && stap -l 'kernel.trace("mm_anon_fault")' &= & stap -l 'kernel.trace("mm_anon_pgin")' && stap -l 'kernel.trace("mm_anon_= cow")' && stap -l 'kernel.trace("mm_anon_unmap")' && stap -l 'kernel.trace(= "mm_anon_userfree")' OUT child process exited abnormally RC 1 UNTESTED: systemtap.examples/memory/mmanonpage build meta taglines 'test_installcheck: stap mmanonpage.stp -c "sleep 0.2"' tag '= test_installcheck' value 'stap mmanonpage.stp -c "sleep 0.2"' UNTESTED: systemtap.examples/memory/mmanonpage run meta taglines 'test_support: stap -l 'kernel.trace("mm_page_allocation")' &= & stap -l 'kernel.trace("mm_page_free")' && stap -l 'kernel.trace("mm_filem= ap_fault")' && stap -l 'kernel.trace("mm_filemap_cow")' && stap -l 'kernel.= trace("mm_filemap_unmap")' && stap -l 'kernel.trace("mm_filemap_userunmap")= '' tag 'test_support' value 'stap -l 'kernel.trace("mm_page_allocation")' &= & stap -l 'kernel.trace("mm_page_free")' && stap -l 'kernel.trace("mm_filem= ap_fault")' && stap -l 'kernel.trace("mm_filemap_cow")' && stap -l 'kernel.= trace("mm_filemap_unmap")' && stap -l 'kernel.trace("mm_filemap_userunmap")= '' attempting command stap -l 'kernel.trace("mm_page_allocation")' && stap -l = 'kernel.trace("mm_page_free")' && stap -l 'kernel.trace("mm_filemap_fault")= ' && stap -l 'kernel.trace("mm_filemap_cow")' && stap -l 'kernel.trace("mm_= filemap_unmap")' && stap -l 'kernel.trace("mm_filemap_userunmap")' OUT child process exited abnormally RC 1 UNTESTED: systemtap.examples/memory/mmfilepage build meta taglines 'test_installcheck: stap mmfilepage.stp -c "sleep 0.2"' tag '= test_installcheck' value 'stap mmfilepage.stp -c "sleep 0.2"' UNTESTED: systemtap.examples/memory/mmfilepage run meta taglines 'test_support: stap -l 'kernel.trace("mm_directreclaim_reclai= mall")' && stap -l 'kernel.trace("mm_pagereclaim_shrinkinactive")' && stap = -l 'kernel.trace("mm_pagereclaim_free")' && stap -l 'kernel.trace("mm_pager= eclaim_pgout")' && stap -l 'kernel.trace("mm_pagereclaim_shrinkactive_a2a")= ' && stap -l 'kernel.trace("mm_pagereclaim_shrinkinactive_i2a")' && stap -l= 'kernel.trace("mm_pagereclaim_shrinkactive_a2i")' && stap -l 'kernel.trace= ("mm_pagereclaim_shrinkinactive_i2i")'' tag 'test_support' value 'stap -l '= kernel.trace("mm_directreclaim_reclaimall")' && stap -l 'kernel.trace("mm_p= agereclaim_shrinkinactive")' && stap -l 'kernel.trace("mm_pagereclaim_free"= )' && stap -l 'kernel.trace("mm_pagereclaim_pgout")' && stap -l 'kernel.tra= ce("mm_pagereclaim_shrinkactive_a2a")' && stap -l 'kernel.trace("mm_pagerec= laim_shrinkinactive_i2a")' && stap -l 'kernel.trace("mm_pagereclaim_shrinka= ctive_a2i")' && stap -l 'kernel.trace("mm_pagereclaim_shrinkinactive_i2i")'' attempting command stap -l 'kernel.trace("mm_directreclaim_reclaimall")' &&= stap -l 'kernel.trace("mm_pagereclaim_shrinkinactive")' && stap -l 'kernel= .trace("mm_pagereclaim_free")' && stap -l 'kernel.trace("mm_pagereclaim_pgo= ut")' && stap -l 'kernel.trace("mm_pagereclaim_shrinkactive_a2a")' && stap = -l 'kernel.trace("mm_pagereclaim_shrinkinactive_i2a")' && stap -l 'kernel.t= race("mm_pagereclaim_shrinkactive_a2i")' && stap -l 'kernel.trace("mm_pager= eclaim_shrinkinactive_i2i")' OUT kernel.trace("mm_directreclaim_reclaimall") kernel.trace("mm_pagereclaim_shrinkinactive") kernel.trace("mm_pagereclaim_free") kernel.trace("mm_pagereclaim_pgout") child process exited abnormally RC 1 UNTESTED: systemtap.examples/memory/mmreclaim build meta taglines 'test_installcheck: stap mmreclaim.stp -c "sleep 0.2"' tag 't= est_installcheck' value 'stap mmreclaim.stp -c "sleep 0.2"' UNTESTED: systemtap.examples/memory/mmreclaim run meta taglines 'test_support: stap -l 'kernel.trace("mm_pdflush_bgwriteout")= ' && stap -l 'kernel.trace("mm_pdflush_kupdate")' && stap -l 'kernel.trace(= "mm_pagereclaim_pgout")'' tag 'test_support' value 'stap -l 'kernel.trace("= mm_pdflush_bgwriteout")' && stap -l 'kernel.trace("mm_pdflush_kupdate")' &&= stap -l 'kernel.trace("mm_pagereclaim_pgout")'' attempting command stap -l 'kernel.trace("mm_pdflush_bgwriteout")' && stap = -l 'kernel.trace("mm_pdflush_kupdate")' && stap -l 'kernel.trace("mm_pagere= claim_pgout")' OUT child process exited abnormally RC 1 UNTESTED: systemtap.examples/memory/mmwriteback build meta taglines 'test_installcheck: stap mmwriteback.stp -c "sleep 0.2"' tag = 'test_installcheck' value 'stap mmwriteback.stp -c "sleep 0.2"' UNTESTED: systemtap.examples/memory/mmwriteback run meta taglines '' tag 'test_support' value '' meta taglines 'test_check: stap -p4 numa_faults.stp' tag 'test_check' value= 'stap -p4 numa_faults.stp' attempting command stap -p4 numa_faults.stp OUT /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/1d/stap_1d034f= c93dce49bfc9043a288d4d3d52_4267.ko RC 0 PASS: systemtap.examples/memory/numa_faults build meta taglines 'test_installcheck: stap numa_faults.stp -c "sleep 0.2"' tag = 'test_installcheck' value 'stap numa_faults.stp -c "sleep 0.2"' attempting command stap numa_faults.stp -c "sleep 0.2" OUT Starting pagefault counters=20 Printing counters:=20 Execname PID RD Faults WR Faults Node:Faults=20=20=20=20=20=20= =20=20=20 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D sleep 21706 34 8 0:42=20 expect 4833 0 1 0:1=20 Done RC 0 PASS: systemtap.examples/memory/numa_faults run meta taglines '' tag 'test_support' value '' meta taglines 'test_check: stap -p4 overcommit.stp' tag 'test_check' value = 'stap -p4 overcommit.stp' attempting command stap -p4 overcommit.stp OUT /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/34/stap_349e0d= 1615e2c2a5a0ade96c24e88da1_3629.ko RC 0 PASS: systemtap.examples/memory/overcommit build meta taglines 'test_installcheck: stap overcommit.stp -c "sleep 0.2"' tag '= test_installcheck' value 'stap overcommit.stp -c "sleep 0.2"' attempting command stap overcommit.stp -c "sleep 0.2" OUT=20 RC 0 PASS: systemtap.examples/memory/overcommit run meta taglines '' tag 'test_support' value '' meta taglines 'test_check: stap -p4 pfaults.stp' tag 'test_check' value 'st= ap -p4 pfaults.stp' attempting command stap -p4 pfaults.stp OUT /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/80/stap_8080e9= 5a951d6ad7c4705df83f2fe9ab_5549.ko RC 0 PASS: systemtap.examples/memory/pfaults build meta taglines 'test_installcheck: stap pfaults.stp -c "sleep 0.2"' tag 'tes= t_installcheck' value 'stap pfaults.stp -c "sleep 0.2"' attempting command stap pfaults.stp -c "sleep 0.2" OUT 39:22160:0xfff9bc00418:r:minor:8 160:22160:0xfffffffffed:w:minor:12 331:22160:0xfff8d420038:r:minor:5 521:22160:0x800bae3830:w:minor:5 627:22160:0x100213f0008:w:minor:9 RC 0 PASS: systemtap.examples/memory/pfaults run meta taglines '' tag 'test_support' value '' meta taglines 'test_check: stap -p4 vm.tracepoints.stp' tag 'test_check' va= lue 'stap -p4 vm.tracepoints.stp' attempting command stap -p4 vm.tracepoints.stp OUT /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/58/stap_58ce97= 5122ab032b9fe8832743281a37_6014.ko RC 0 PASS: systemtap.examples/memory/vm.tracepoints build meta taglines 'test_installcheck: stap vm.tracepoints.stp -c "sleep 10"' ta= g 'test_installcheck' value 'stap vm.tracepoints.stp -c "sleep 10"' attempting command stap vm.tracepoints.stp -c "sleep 10" OUT=20 Process:jbd2/dm-2-8 Slab_size:24 Count:10 Process:jbd2/dm-0-8 Slab_size:24 Count:14 Process:stapio Slab_size:1024 Count:1 Process:kblockd/0 Slab_size:256 Count:3 Process:kdmflush Slab_size:128 Count:2 Process:flush-253:2 Slab_size:4096 Count:2 Process:swapper Slab_size:128 Count:2 Process:flush-253:2 Slab_size:512 Count:1 Process:sleep Slab_size:32768 Count:2 Process:kdmflush Slab_size:256 Count:10 Process:kblockd/0 Slab_size:128 Count:2 Process:stapio Slab_size:32768 Count:1 Process:swapper Slab_size:256 Count:2 Process:stapio Slab_size:160 Count:1 Process:kblockd/0 Slab_size:4096 Count:1 Process:flush-253:2 Slab_size:256 Count:941 Process:sleep Slab_size:48 Count:7 Process:stapio Slab_size:200 Count:1 Process:jbd2/dm-2-8 Slab_size:352 Count:10 Process:jbd2/dm-0-8 Slab_size:352 Count:2 Process:sleep Slab_size:40 Count:5 Process:stapio Slab_size:328 Count:1 Process:flush-253:2 Slab_size:128 Count:4 Process:swapper Slab_size:512 Count:1 Process:jbd2/dm-2-8 Slab_size:40 Count:10 Process:jbd2/dm-0-8 Slab_size:40 Count:14 Process:stapio Slab_size:40 Count:1 Process:sleep Slab_size:200 Count:17 Process:stapio Slab_size:48 Count:1 Process:flush-253:2 Slab_size:144 Count:14 Process:jbd2/dm-2-8 Slab_size:104 Count:9 Process:jbd2/dm-0-8 Slab_size:104 Count:12 Process:kdmflush Slab_size:352 Count:6 Process:sleep Slab_size:4096 Count:36 Process:flush-253:2 Slab_size:24 Count:482 Process:kdmflush Slab_size:40 Count:6 Process:swapper Slab_size:2048 Count:1 Process:kdmflush Slab_size:24 Count:6 Process:flush-253:2 Slab_size:40 Count:468 Process:jbd2/dm-2-8 Slab_size:128 Count:10 Process:jbd2/dm-0-8 Slab_size:128 Count:1 Process:sleep Slab_size:256 Count:20 Process:swapper Slab_size:304 Count:1 Process:jbd2/dm-2-8 Slab_size:256 Count:41 Process:jbd2/dm-0-8 Slab_size:256 Count:31 Process:stapio Slab_size:256 Count:11 Slab_size:544 Count:1 Process:jbd2/dm-2-8 Slab_size:112 Count:11 Process:jbd2/dm-0-8 Slab_size:112 Count:15 Process:flush-253:2 Slab_size:352 Count:7 Process:stapio Slab_size:4096 Count:5 ------------------------------------------------------- RC 0 PASS: systemtap.examples/memory/vm.tracepoints run meta taglines 'test_support: stap -l 'module("autofs4").function("autofs4_l= ookup")' && stap -l 'module("autofs4").function("autofs4_follow_link")' && = stap -l 'module("autofs4").function("autofs4_expire_indirect").return' && s= tap -l 'module("autofs4").function("autofs4_wait").return'' tag 'test_suppo= rt' value 'stap -l 'module("autofs4").function("autofs4_lookup")' && stap -= l 'module("autofs4").function("autofs4_follow_link")' && stap -l 'module("a= utofs4").function("autofs4_expire_indirect").return' && stap -l 'module("au= tofs4").function("autofs4_wait").return'' attempting command stap -l 'module("autofs4").function("autofs4_lookup")' &= & stap -l 'module("autofs4").function("autofs4_follow_link")' && stap -l 'm= odule("autofs4").function("autofs4_expire_indirect").return' && stap -l 'mo= dule("autofs4").function("autofs4_wait").return' OUT module("autofs4").function("autofs4_lookup@fs/autofs4/root.c:467") module("autofs4").function("autofs4_follow_link@fs/autofs4/root.c:171") module("autofs4").function("autofs4_follow_link@fs/autofs4/symlink.c:15") module("autofs4").function("autofs4_expire_indirect@fs/autofs4/expire.c:298= ").return module("autofs4").function("autofs4_wait@fs/autofs4/waitq.c:313").return RC 0 PASS: systemtap.examples/network/autofs4 support meta taglines 'test_check: stap -p4 autofs4.stp' tag 'test_check' value 'st= ap -p4 autofs4.stp' attempting command stap -p4 autofs4.stp OUT /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/b9/stap_b98d75= 11888447d73e09a945b49717ab_21243.ko RC 0 PASS: systemtap.examples/network/autofs4 build meta taglines 'test_installcheck: stap autofs4.stp -c "sleep 1"' tag 'test_= installcheck' value 'stap autofs4.stp -c "sleep 1"' attempting command stap autofs4.stp -c "sleep 1" OUT=20 RC 0 PASS: systemtap.examples/network/autofs4 run meta taglines 'test_support: stap -l 'kernel.trace("kfree_skb")'' tag 'test= _support' value 'stap -l 'kernel.trace("kfree_skb")'' attempting command stap -l 'kernel.trace("kfree_skb")' OUT kernel.trace("kfree_skb") RC 0 PASS: systemtap.examples/network/dropwatch support meta taglines 'test_check: stap -p4 dropwatch.stp' tag 'test_check' value '= stap -p4 dropwatch.stp' attempting command stap -p4 dropwatch.stp OUT /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/c6/stap_c6e2b5= 46659d487d5f1aa35d38f503b6_1323.ko RC 0 PASS: systemtap.examples/network/dropwatch build meta taglines 'test_installcheck: stap dropwatch.stp -c "sleep 0.2"' tag 't= est_installcheck' value 'stap dropwatch.stp -c "sleep 0.2"' attempting command stap dropwatch.stp -c "sleep 0.2" OUT Monitoring for dropped packets Stopping dropped packet monitor RC 0 PASS: systemtap.examples/network/dropwatch run meta taglines '' tag 'test_support' value '' meta taglines 'test_check: stap -p4 netdev.stp' tag 'test_check' value 'sta= p -p4 netdev.stp' attempting command stap -p4 netdev.stp OUT semantic error: not accessible at this address (0xc0000000004ac678, die= offset: 0x2d16322): identifier '$dev' at /usr/local/share/systemtap/tapset/= networking.stp:159:29 source: dev_name =3D get_netdev_name($dev) ^ semantic error: not accessible at this address (0xc0000000004ac678, dieoffs= et: 0x2d16319): identifier '$flags' at :160:10 source: flags =3D $flags ^ Pass 2: analysis failed. Try again with another '--vp 01' option. child process exited abnormally RC 1 FAIL: systemtap.examples/network/netdev build meta taglines 'test_installcheck: stap netdev.stp -c "sleep 0.2"' tag 'test= _installcheck' value 'stap netdev.stp -c "sleep 0.2"' attempting command stap netdev.stp -c "sleep 0.2" OUT semantic error: not accessible at this address (0xc0000000004ac678, die= offset: 0x2d16322): identifier '$dev' at /usr/local/share/systemtap/tapset/= networking.stp:159:29 source: dev_name =3D get_netdev_name($dev) ^ semantic error: not accessible at this address (0xc0000000004ac678, dieoffs= et: 0x2d16319): identifier '$flags' at :160:10 source: flags =3D $flags ^ Pass 2: analysis failed. Try again with another '--vp 01' option. child process exited abnormally RC 1 FAIL: systemtap.examples/network/netdev run meta taglines '' tag 'test_support' value '' meta taglines 'test_check: stap -p4 nettop.stp' tag 'test_check' value 'sta= p -p4 nettop.stp' attempting command stap -p4 nettop.stp OUT /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/a9/stap_a9c901= e3d7e60d8258a788f0d9db6c16_5657.ko RC 0 PASS: systemtap.examples/network/nettop build meta taglines 'test_installcheck: stap nettop.stp -c "sleep 0.2"' tag 'test= _installcheck' value 'stap nettop.stp -c "sleep 0.2"' attempting command stap nettop.stp -c "sleep 0.2" OUT PID UID DEV XMIT_PK RECV_PK XMIT_KB RECV_KB COMMAND=20=20=20=20= =20=20=20=20 RC 0 PASS: systemtap.examples/network/nettop run meta taglines '' tag 'test_support' value '' meta taglines 'test_check: stap -p4 sk_stream_wait_memory.stp' tag 'test_ch= eck' value 'stap -p4 sk_stream_wait_memory.stp' attempting command stap -p4 sk_stream_wait_memory.stp OUT /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/45/stap_45cad4= 30b8b854f1eb494c44b7086b01_2673.ko RC 0 PASS: systemtap.examples/network/sk_stream_wait_memory build meta taglines 'test_installcheck: stap sk_stream_wait_memory.stp -c "sleep = 0.2"' tag 'test_installcheck' value 'stap sk_stream_wait_memory.stp -c "sle= ep 0.2"' attempting command stap sk_stream_wait_memory.stp -c "sleep 0.2" OUT=20 RC 0 PASS: systemtap.examples/network/sk_stream_wait_memory run meta taglines '' tag 'test_support' value '' meta taglines 'test_check: stap -p4 socket-trace.stp' tag 'test_check' valu= e 'stap -p4 socket-trace.stp' attempting command stap -p4 socket-trace.stp OUT /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/52/stap_520ba9= b5cbdbd192ca1e073601592b24_33246.ko RC 0 PASS: systemtap.examples/network/socket-trace build meta taglines 'test_installcheck: stap socket-trace.stp -c "sleep 0.2"' tag= 'test_installcheck' value 'stap socket-trace.stp -c "sleep 0.2"' attempting command stap socket-trace.stp -c "sleep 0.2" OUT=20 RC 0 PASS: systemtap.examples/network/socket-trace run meta taglines '' tag 'test_support' value '' meta taglines 'test_check: ./socktop -m socktop' tag 'test_check' value './= socktop -m socktop' attempting command ./socktop -m socktop OUT socktop.ko RC 0 PASS: systemtap.examples/network/socktop build meta taglines 'test_installcheck: ./socktop -c 1' tag 'test_installcheck' v= alue './socktop -c 1' attempting command ./socktop -c 1 OUT =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D W= ed Feb 2 22:51:20 2011 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D ------------------------------- PROCESSES ------------------------------- PID UID #SEND #RECV SEND_KB RECV_KB PROT FAMILY COMMAND=20=20=20= =20=20=20=20=20 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RC 0 PASS: systemtap.examples/network/socktop run meta taglines '' tag 'test_support' value '' meta taglines 'test_check: stap -p4 tcp_connections.stp' tag 'test_check' v= alue 'stap -p4 tcp_connections.stp' attempting command stap -p4 tcp_connections.stp OUT /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/04/stap_0464bb= e1ce400d9725e9611123db98af_4672.ko RC 0 PASS: systemtap.examples/network/tcp_connections build meta taglines 'test_installcheck: stap tcp_connections.stp -c "sleep 0.2"' = tag 'test_installcheck' value 'stap tcp_connections.stp -c "sleep 0.2"' attempting command stap tcp_connections.stp -c "sleep 0.2" OUT UID CMD PID PORT IP_SOURCE RC 0 PASS: systemtap.examples/network/tcp_connections run meta taglines '' tag 'test_support' value '' meta taglines 'test_check: stap -p4 tcp_trace.stp' tag 'test_check' value '= stap -p4 tcp_trace.stp' attempting command stap -p4 tcp_trace.stp OUT /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/1d/stap_1d6cba= fa4dcf0b9f950c00e3af0d2d13_32660.ko RC 0 PASS: systemtap.examples/network/tcp_trace build meta taglines 'test_installcheck: stap tcp_trace.stp 127.0.0.1:*-127.0.0.1:= * timeout=3D1' tag 'test_installcheck' value 'stap tcp_trace.stp 127.0.0.1:= *-127.0.0.1:* timeout=3D1' attempting command stap tcp_trace.stp 127.0.0.1:*-127.0.0.1:* timeout=3D1 OUT Start TCP Probing..... Source Address Dest Address State Timer Tx-Q = Rx-Q PMTU SndCwnd SndWnd RcvWnd SSRT Ssthreshold Rexmit Length RC 0 PASS: systemtap.examples/network/tcp_trace run meta taglines '' tag 'test_support' value '' meta taglines 'test_check: stap -p4 tcpdumplike.stp' tag 'test_check' value= 'stap -p4 tcpdumplike.stp' attempting command stap -p4 tcpdumplike.stp OUT /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/e2/stap_e23134= 6e66b0bf5f8a977c953907e171_10593.ko RC 0 PASS: systemtap.examples/network/tcpdumplike build meta taglines 'test_installcheck: stap tcpdumplike.stp -c "sleep 0.2"' tag = 'test_installcheck' value 'stap tcpdumplike.stp -c "sleep 0.2"' attempting command stap tcpdumplike.stp -c "sleep 0.2" OUT ----------------------------------------------------------------- Source IP Dest IP SPort DPort U A P R S F=20 ----------------------------------------------------------------- RC 0 PASS: systemtap.examples/network/tcpdumplike run meta taglines 'test_support: stap -l 'tcpmib.InSegs'' tag 'test_support' va= lue 'stap -l 'tcpmib.InSegs'' attempting command stap -l 'tcpmib.InSegs' OUT tcpmib.InSegs RC 0 PASS: systemtap.examples/network/tcpipstat support meta taglines 'test_check: stap -p4 tcpipstat.stp' tag 'test_check' value '= stap -p4 tcpipstat.stp' attempting command stap -p4 tcpipstat.stp OUT /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/67/stap_67a54b= c1314f1a5eac17957867037f78_47640.ko RC 0 PASS: systemtap.examples/network/tcpipstat build meta taglines 'test_installcheck: stap tcpipstat.stp timeout=3D1' tag 'test= _installcheck' value 'stap tcpipstat.stp timeout=3D1' attempting command stap tcpipstat.stp timeout=3D1 OUT Indexing collected stats using tuple values Processed filter #1 =3D 0.0.0.0[0x0]:65535 --> 0.0.0.0[0x0]:65535=20 No packets were accepted by the filters. RC 0 PASS: systemtap.examples/network/tcpipstat run meta taglines '' tag 'test_support' value '' meta taglines 'test_check: stap -p4 chng_cpu.stp bash' tag 'test_check' val= ue 'stap -p4 chng_cpu.stp bash' attempting command stap -p4 chng_cpu.stp bash OUT /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/65/stap_656ef6= 3cbc92e86570990bd69f117e7a_3757.ko RC 0 PASS: systemtap.examples/process/chng_cpu build meta taglines 'test_installcheck: stap chng_cpu.stp -c "sleep 0.2" bash' ta= g 'test_installcheck' value 'stap chng_cpu.stp -c "sleep 0.2" bash' attempting command stap chng_cpu.stp -c "sleep 0.2" bash OUT=20 RC 0 PASS: systemtap.examples/process/chng_cpu run meta taglines 'test_support: stap -l 'kernel.trace("sched_switch")' && stap= -l 'kernel.trace("irq_handler_entry")!, kernel.trace("irq_entry")' && stap= -l 'kernel.trace("irq_handler_exit")!, kernel.trace("irq_exit")'' tag 'tes= t_support' value 'stap -l 'kernel.trace("sched_switch")' && stap -l 'kernel= .trace("irq_handler_entry")!, kernel.trace("irq_entry")' && stap -l 'kernel= .trace("irq_handler_exit")!, kernel.trace("irq_exit")'' attempting command stap -l 'kernel.trace("sched_switch")' && stap -l 'kerne= l.trace("irq_handler_entry")!, kernel.trace("irq_entry")' && stap -l 'kerne= l.trace("irq_handler_exit")!, kernel.trace("irq_exit")' OUT kernel.trace("sched_switch") kernel.trace("irq_handler_entry")! kernel.trace("irq_handler_exit")! RC 0 PASS: systemtap.examples/process/cycle_thief support meta taglines 'test_check: stap -p4 cycle_thief.stp' tag 'test_check' value= 'stap -p4 cycle_thief.stp' attempting command stap -p4 cycle_thief.stp OUT /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/28/stap_28f610= a406a0a5daeddc975d1b6b31bd_5236.ko RC 0 PASS: systemtap.examples/process/cycle_thief build meta taglines 'test_installcheck: stap cycle_thief.stp -c "sleep 0.2"' tag = 'test_installcheck' value 'stap cycle_thief.stp -c "sleep 0.2"' attempting command stap cycle_thief.stp -c "sleep 0.2" OUT=20 task 26007 migrated: 2 task 26007 on processor (us): value |-------------------------------------------------- count 8 | 0 16 | 0 32 |@ 1 64 |@ 1 128 | 0 256 |@ 1 512 | 0 1024 | 0 task 26007 off processor (us) value |-------------------------------------------------- count 2 | 0 4 | 0 8 |@ 1 16 | 0 32 | 0 ~ 32768 | 0 65536 | 0 131072 |@ 1 262144 | 0 524288 | 0 other pids taking processor from task 26007 0 3 1054 1 22593 1 26009 1 26006 1 6 1 irq taking processor from task 26007 irq count min(us) avg(us) max(us) RC 0 PASS: systemtap.examples/process/cycle_thief run meta taglines '' tag 'test_support' value '' meta taglines 'test_check: stap -p4 dumpstack.stp' tag 'test_check' value '= stap -p4 dumpstack.stp' attempting command stap -p4 dumpstack.stp OUT /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/cd/stap_cdec74= c1e5b53d385ebdddd4c57a00c5_3754.ko RC 0 PASS: systemtap.examples/process/dumpstack build meta taglines 'test_installcheck: stap dumpstack.stp -x $$' tag 'test_insta= llcheck' value 'stap dumpstack.stp -x $$' attempting command stap dumpstack.stp -x $$ OUT=20 RC 0 PASS: systemtap.examples/process/dumpstack run meta taglines '' tag 'test_support' value '' meta taglines 'test_check: stap -p4 errsnoop.stp' tag 'test_check' value 's= tap -p4 errsnoop.stp' attempting command stap -p4 errsnoop.stp OUT /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/a8/stap_a8b1ed= a1f6c0e5b12d2f73d9c20e4582_400818.ko RC 0 PASS: systemtap.examples/process/errsnoop build meta taglines 'test_installcheck: stap errsnoop.stp 1 10 -c "sleep 1"' tag = 'test_installcheck' value 'stap errsnoop.stp 1 10 -c "sleep 1"' attempting command stap errsnoop.stp 1 10 -c "sleep 1" OUT =1B[1;1H=1B[J SYSCALL PROCESS PID HITS ERRSTR = ARGSTR read stapio 26674 4 11 (EAGAIN) 3, 0xfffedc1fd6c,= 8196 execve stapio 26675 2 2 (ENOENT) /usr/local/bin/sl= eep "1" open sleep 26675 1 3 (ESRCH) "/lib64/power6/li= bc.so.6", O_RDONLY stat sleep 26675 1 2 (ENOENT) "/usr/local/lib/s= ystemtap", 0xfffe2c89140 stat sleep 26675 1 2 (ENOENT) "/usr/local/lib/s= ystemtap/dfp", 0xfffe2c89140 stat sleep 26675 1 2 (ENOENT) "/usr/local/lib/s= ystemtap/altivec", 0xfffe2c89140 stat sleep 26675 1 2 (ENOENT) "/usr/local/lib/s= ystemtap/altivec/dfp", 0xfffe2c89140 stat sleep 26675 1 2 (ENOENT) "/usr/local/lib/s= ystemtap/power6", 0xfffe2c89140 stat sleep 26675 1 2 (ENOENT) "/usr/local/lib/s= ystemtap/power6/dfp", 0xfffe2c89140 stat sleep 26675 1 2 (ENOENT) "/usr/local/lib/s= ystemtap/power6/altivec", 0xfffe2c89140 RC 0 PASS: systemtap.examples/process/errsnoop run meta taglines '' tag 'test_support' value '' meta taglines 'test_check: stap -p4 forktracker.stp' tag 'test_check' value= 'stap -p4 forktracker.stp' attempting command stap -p4 forktracker.stp OUT /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/e8/stap_e87bca= 699bc3030c9be97ff1d24ae95d_8155.ko RC 0 PASS: systemtap.examples/process/forktracker build meta taglines 'test_installcheck: stap forktracker.stp -c "sleep 0.2"' tag = 'test_installcheck' value 'stap forktracker.stp -c "sleep 0.2"' attempting command stap forktracker.stp -c "sleep 0.2" OUT Wed Feb 2 17:23:52 2011 : stapio (26903) is exec'ing /usr/local/bin/sl= eep Wed Feb 2 17:23:52 2011 : stapio (26903) is exec'ing /usr/local/sbin/sleep Wed Feb 2 17:23:52 2011 : stapio (26903) is exec'ing /usr/local/bin/sleep Wed Feb 2 17:23:52 2011 : stapio (26903) is exec'ing /sbin/sleep Wed Feb 2 17:23:52 2011 : stapio (26903) is exec'ing /bin/sleep RC 0 PASS: systemtap.examples/process/forktracker run meta taglines '' tag 'test_support' value '' meta taglines 'test_check: stap -p4 futexes.stp' tag 'test_check' value 'st= ap -p4 futexes.stp' attempting command stap -p4 futexes.stp OUT /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/84/stap_846414= b689dc37661feb944b670203e0_10419.ko RC 0 PASS: systemtap.examples/process/futexes build meta taglines 'test_installcheck: stap futexes.stp -c "sleep 0.2"' tag 'tes= t_installcheck' value 'stap futexes.stp -c "sleep 0.2"' attempting command stap futexes.stp -c "sleep 0.2" OUT=20 RC 0 PASS: systemtap.examples/process/futexes run meta taglines '' tag 'test_support' value '' meta taglines 'test_check: stap -p4 migrate.stp bash' tag 'test_check' valu= e 'stap -p4 migrate.stp bash' attempting command stap -p4 migrate.stp bash OUT /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/23/stap_23403b= d6ad8c90b9881cf7856402bb5a_3254.ko RC 0 PASS: systemtap.examples/process/migrate build meta taglines 'test_installcheck: stap migrate.stp -c "sleep 0.2" bash' tag= 'test_installcheck' value 'stap migrate.stp -c "sleep 0.2" bash' attempting command stap migrate.stp -c "sleep 0.2" bash OUT=20 RC 0 PASS: systemtap.examples/process/migrate run meta taglines '' tag 'test_support' value '' meta taglines 'test_check: stap -gp4 noptrace.stp -x $$' tag 'test_check' v= alue 'stap -gp4 noptrace.stp -x $$' attempting command stap -gp4 noptrace.stp -x $$ OUT /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/8f/stap_8ff617= a0ced199ba80bf809429e71ef4_18666.ko RC 0 PASS: systemtap.examples/process/noptrace build meta taglines 'test_installcheck: stap -g noptrace.stp -c 'strace ls'' tag = 'test_installcheck' value 'stap -g noptrace.stp -c 'strace ls'' attempting command stap -g noptrace.stp -c 'strace ls' OUT strace: ptrace(PTRACE_TRACEME, ...): No such process strace[27587] ptrace(0) blocked: rc=3D-3 RC 0 PASS: systemtap.examples/process/noptrace run meta taglines '' tag 'test_support' value '' meta taglines 'test_check: stap -p4 pf2.stp' tag 'test_check' value 'stap -= p4 pf2.stp' attempting command stap -p4 pf2.stp OUT /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/45/stap_45608a= 154addda035a2f45b61cbb08ca_1923.ko RC 0 PASS: systemtap.examples/process/pf2 build meta taglines 'test_installcheck: stap pf2.stp -c "sleep 0.2"' tag 'test_in= stallcheck' value 'stap pf2.stp -c "sleep 0.2"' attempting command stap pf2.stp -c "sleep 0.2" OUT=20 RC 0 PASS: systemtap.examples/process/pf2 run meta taglines '' tag 'test_support' value '' meta taglines 'test_check: stap -gp4 pfiles.stp -x $$' tag 'test_check' val= ue 'stap -gp4 pfiles.stp -x $$' attempting command stap -gp4 pfiles.stp -x $$ OUT /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/60/stap_604f54= 7f145f041670d7830964864e6d_36662.ko RC 0 PASS: systemtap.examples/process/pfiles build meta taglines 'test_installcheck: stap -g pfiles.stp -x $$' tag 'test_insta= llcheck' value 'stap -g pfiles.stp -x $$' attempting command stap -g pfiles.stp -x $$ OUT 28037: stap Current rlimit: 64 file descriptors 0: S_IFCHR mode:0620 dev:0,11 ino:4 uid:0 gid:0 rdev:136,1 O_RDWR|O_LARGEFILE=20 /dev/pts/1 1: S_IFIFO mode:0600 dev:0,8 ino:122898 uid:0 gid:0 rdev:0,0 O_WRONLY=20 pipe:[122898] 2: S_IFIFO mode:0600 dev:0,8 ino:122898 uid:0 gid:0 rdev:0,0 O_WRONLY=20 pipe:[122898] 4: S_IFREG mode:0755 dev:253,0 ino:792933 uid:0 gid:0 rdev:0,0 O_RDONLY|O_LARGEFILE=20 /usr/lib/debug/lib/modules/2.6.32-71.el6.ppc64/vmlinux RC 0 PASS: systemtap.examples/process/pfiles run meta taglines '' tag 'test_support' value '' meta taglines 'test_check: stap -gp4 plimit.stp $$' tag 'test_check' value = 'stap -gp4 plimit.stp $$' attempting command stap -gp4 plimit.stp $$ OUT /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/6a/stap_6a158a= 2491c18b40e94c499b11937a51_3137.ko RC 0 PASS: systemtap.examples/process/plimit build meta taglines 'test_installcheck: stap -g plimit.stp $$' tag 'test_installc= heck' value 'stap -g plimit.stp $$' attempting command stap -g plimit.stp $$ OUT 28263: -stap resource current maximum coredump(blocks) 0 unlimited data(bytes) unlimited unlimited max nice 0 0=20=20=20=20=20=20=20=20 file size(blocks) unlimited unlimited pending signals 19965 19965=20=20=20=20 max locked memory(bytes) 65536 65536=20=20=20=20 max memory size(bytes) unlimited unlimited open files 1024 1024=20=20=20=20=20 POSIX message queues(bytes) 819200 819200=20=20=20 max rt priority 0 0=20=20=20=20=20=20=20=20 stack size(bytes) 10485760 unlimited cpu time(seconds) unlimited unlimited max user processes 1024 19965=20=20=20=20 virtual memory(bytes) unlimited unlimited file locks unlimited unlimited RC 0 PASS: systemtap.examples/process/plimit run meta taglines 'test_support: stap -l 'kernel.trace("sched_switch")' && stap= -l 'kernel.trace("sched_wakeup")'' tag 'test_support' value 'stap -l 'kern= el.trace("sched_switch")' && stap -l 'kernel.trace("sched_wakeup")'' attempting command stap -l 'kernel.trace("sched_switch")' && stap -l 'kerne= l.trace("sched_wakeup")' OUT kernel.trace("sched_switch") kernel.trace("sched_wakeup") RC 0 PASS: systemtap.examples/process/schedtimes support meta taglines 'test_check: stap -p4 schedtimes.stp' tag 'test_check' value = 'stap -p4 schedtimes.stp' attempting command stap -p4 schedtimes.stp OUT /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/39/stap_390c02= 28c9e392a69c9e0247d67f28be_10276.ko RC 0 PASS: systemtap.examples/process/schedtimes build meta taglines 'test_installcheck: stap schedtimes.stp -c "sleep 0.2"' tag '= test_installcheck' value 'stap schedtimes.stp -c "sleep 0.2"' attempting command stap schedtimes.stp -c "sleep 0.2" OUT target mode traced pid: 28711 execname: pid run(us) sleep(us) io_wait(us) queued(us) tota= l(us) sleep: 28711 661 200106 0 32 20= 0799 RC 0 PASS: systemtap.examples/process/schedtimes run meta taglines '' tag 'test_support' value '' meta taglines 'test_check: stap -p4 sig_by_pid.stp' tag 'test_check' value = 'stap -p4 sig_by_pid.stp' attempting command stap -p4 sig_by_pid.stp OUT /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/08/stap_088963= c04babdc11b4e5874fe4650726_19084.ko RC 0 PASS: systemtap.examples/process/sig_by_pid build meta taglines 'test_installcheck: stap sig_by_pid.stp -c "sleep 0.2"' tag '= test_installcheck' value 'stap sig_by_pid.stp -c "sleep 0.2"' attempting command stap sig_by_pid.stp -c "sleep 0.2" OUT Collecting data... Type Ctrl-C to exit and display results SPID SENDER RPID RECEIVER SIGNAME COUNT 28937 stapio 28938 stapio SIGUSR1 1 28938 stapio 28937 stapio SIGCHLD 1 RC 0 PASS: systemtap.examples/process/sig_by_pid run meta taglines '' tag 'test_support' value '' meta taglines 'test_check: stap -p4 sig_by_proc.stp' tag 'test_check' value= 'stap -p4 sig_by_proc.stp' attempting command stap -p4 sig_by_proc.stp OUT /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/c9/stap_c953c6= b90aa0ec7a56d9c79af139e376_17810.ko RC 0 PASS: systemtap.examples/process/sig_by_proc build meta taglines 'test_installcheck: stap sig_by_proc.stp -c "sleep 0.2"' tag = 'test_installcheck' value 'stap sig_by_proc.stp -c "sleep 0.2"' attempting command stap sig_by_proc.stp -c "sleep 0.2" OUT Collecting data... Type Ctrl-C to exit and display results SENDER RECEIVER SIGNAL COUNT stapio stapio SIGUSR1 1 sleep stapio SIGCHLD 1 RC 0 PASS: systemtap.examples/process/sig_by_proc run meta taglines '' tag 'test_support' value '' meta taglines 'test_check: stap -p4 sigkill.stp' tag 'test_check' value 'st= ap -p4 sigkill.stp' attempting command stap -p4 sigkill.stp OUT /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/9f/stap_9fcaef= 59fe757ef2b5ee162599140267_18278.ko RC 0 PASS: systemtap.examples/process/sigkill build meta taglines 'test_installcheck: stap sigkill.stp -c "sleep 0.2"' tag 'tes= t_installcheck' value 'stap sigkill.stp -c "sleep 0.2"' attempting command stap sigkill.stp -c "sleep 0.2" OUT=20 RC 0 PASS: systemtap.examples/process/sigkill run meta taglines '' tag 'test_support' value '' meta taglines 'test_check: stap -p4 sigmon.stp SIGKILL' tag 'test_check' va= lue 'stap -p4 sigmon.stp SIGKILL' attempting command stap -p4 sigmon.stp SIGKILL OUT /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/40/stap_40df99= c97da398f588cdee89e9aa42f4_18476.ko RC 0 PASS: systemtap.examples/process/sigmon build meta taglines 'test_installcheck: stap sigmon.stp -c "sleep 0.2" SIGKILL' t= ag 'test_installcheck' value 'stap sigmon.stp -c "sleep 0.2" SIGKILL' attempting command stap sigmon.stp -c "sleep 0.2" SIGKILL OUT SPID SNAME RPID RNAME SIGNUM SIGNAME=20=20= =20=20=20=20=20=20=20 RC 0 PASS: systemtap.examples/process/sigmon run meta taglines '' tag 'test_support' value '' meta taglines 'test_check: stap -p4 sleepingBeauties.stp' tag 'test_check' = value 'stap -p4 sleepingBeauties.stp' attempting command stap -p4 sleepingBeauties.stp OUT /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/b9/stap_b9fc3e= 1c1ddc2566654c89daa057f655_4158.ko RC 0 PASS: systemtap.examples/process/sleepingBeauties build meta taglines 'test_installcheck: stap sleepingBeauties.stp -c "sleep 0.2"'= tag 'test_installcheck' value 'stap sleepingBeauties.stp -c "sleep 0.2"' attempting command stap sleepingBeauties.stp -c "sleep 0.2" OUT=20 RC 0 PASS: systemtap.examples/process/sleepingBeauties run meta taglines '' tag 'test_support' value '' meta taglines 'test_check: stap -p4 sleeptime.stp' tag 'test_check' value '= stap -p4 sleeptime.stp' attempting command stap -p4 sleeptime.stp OUT /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/27/stap_276d3c= d10b173036bac0bb337c980a1d_10185.ko RC 0 PASS: systemtap.examples/process/sleeptime build meta taglines 'test_installcheck: stap sleeptime.stp -c "sleep 0.2"' tag 't= est_installcheck' value 'stap sleeptime.stp -c "sleep 0.2"' attempting command stap sleeptime.stp -c "sleep 0.2" OUT 200631 30073 (sleep) nanosleep: 200076 200728 30072 (stapio) nanosleep: 200699 RC 0 PASS: systemtap.examples/process/sleeptime run meta taglines '' tag 'test_support' value '' meta taglines 'test_check: stap -p4 syscalls_by_pid.stp' tag 'test_check' v= alue 'stap -p4 syscalls_by_pid.stp' attempting command stap -p4 syscalls_by_pid.stp OUT /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/a4/stap_a4a029= 030c7fb7f1f09b1838edcec48e_91783.ko RC 0 PASS: systemtap.examples/process/syscalls_by_pid build meta taglines 'test_installcheck: stap syscalls_by_pid.stp -c "sleep 0.2"' = tag 'test_installcheck' value 'stap syscalls_by_pid.stp -c "sleep 0.2"' attempting command stap syscalls_by_pid.stp -c "sleep 0.2" OUT Collecting data... Type Ctrl-C to exit and display results #SysCalls PID 69 30300 14 30299 4 1051 1 4833 RC 0 PASS: systemtap.examples/process/syscalls_by_pid run meta taglines '' tag 'test_support' value '' meta taglines 'test_check: stap -p4 syscalls_by_proc.stp' tag 'test_check' = value 'stap -p4 syscalls_by_proc.stp' attempting command stap -p4 syscalls_by_proc.stp OUT /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/e8/stap_e81df5= 8f9c6bdc7b95dccb3448e2591e_93680.ko RC 0 PASS: systemtap.examples/process/syscalls_by_proc build meta taglines 'test_installcheck: stap syscalls_by_proc.stp -c "sleep 0.2"'= tag 'test_installcheck' value 'stap syscalls_by_proc.stp -c "sleep 0.2"' attempting command stap syscalls_by_proc.stp -c "sleep 0.2" OUT Collecting data... Type Ctrl-C to exit and display results #SysCalls Process Name 61 sleep 22 stapio 2 rsyslogd 2 rs:main Q:Reg 1 expect RC 0 PASS: systemtap.examples/process/syscalls_by_proc run meta taglines '' tag 'test_support' value '' meta taglines 'test_check: stap -p4 wait4time.stp' tag 'test_check' value '= stap -p4 wait4time.stp' attempting command stap -p4 wait4time.stp OUT /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/82/stap_826a7d= 0638f5cbe8d7a0508c35f5a841_15732.ko RC 0 PASS: systemtap.examples/process/wait4time build meta taglines 'test_installcheck: stap wait4time.stp -c "sleep 0.2"' tag 't= est_installcheck' value 'stap wait4time.stp -c "sleep 0.2"' attempting command stap wait4time.stp -c "sleep 0.2" OUT 200727 30771 (stapio) wait4: 11 -1 RC 0 PASS: systemtap.examples/process/wait4time run meta taglines '' tag 'test_support' value '' meta taglines 'test_check: stap -p4 errno.stp' tag 'test_check' value 'stap= -p4 errno.stp' attempting command stap -p4 errno.stp OUT /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/32/stap_3251e1= 480077ee358a99c95625e51131_175710.ko RC 0 PASS: systemtap.examples/profiling/errno build meta taglines 'test_installcheck: stap errno.stp -c "sleep 0.2"' tag 'test_= installcheck' value 'stap errno.stp -c "sleep 0.2"' attempting command stap errno.stp -c "sleep 0.2" OUT=20 PID Syscall Process Error = Count 30999 stat sleep ENOENT = 16 30999 open sleep ENOENT = 16 30999 execve sleep ENOENT = 4 30998 read stapio EAGAIN = 1 30998 nanosleep stapio = 1 30999 faccessat sleep ENOENT = 1 30999 access sleep ENOENT = 1 RC 0 PASS: systemtap.examples/profiling/errno run meta taglines '' tag 'test_support' value '' meta taglines 'test_check: stap -p4 fntimes.stp 'kernel.function("sys_*")''= tag 'test_check' value 'stap -p4 fntimes.stp 'kernel.function("sys_*")'' attempting command stap -p4 fntimes.stp 'kernel.function("sys_*")' OUT /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/da/stap_da366b= c9a0f180a112e519f397c3a3ab_305499.ko RC 0 PASS: systemtap.examples/profiling/fntimes build meta taglines 'test_installcheck: stap fntimes.stp 'kernel.function("sys_*"= )' -c "sleep 7"' tag 'test_installcheck' value 'stap fntimes.stp 'kernel.fu= nction("sys_*")' -c "sleep 7"' attempting command stap fntimes.stp 'kernel.function("sys_*")' -c "sleep 7" OUT=20 RC 0 PASS: systemtap.examples/profiling/fntimes run meta taglines '' tag 'test_support' value '' meta taglines 'test_check: stap -p4 functioncallcount.stp "*@mm/*.c"' tag '= test_check' value 'stap -p4 functioncallcount.stp "*@mm/*.c"' attempting command stap -p4 functioncallcount.stp "*@mm/*.c" OUT /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/97/stap_97fd6c= 678c14d52a2fd836d92b6b6631_181112.ko RC 0 PASS: systemtap.examples/profiling/functioncallcount build meta taglines 'test_installcheck: stap functioncallcount.stp "*@mm/*.c" -c= "sleep 0.2"' tag 'test_installcheck' value 'stap functioncallcount.stp "*= @mm/*.c" -c "sleep 0.2"' attempting command stap functioncallcount.stp "*@mm/*.c" -c "sleep 0.2" OUT kmem_cache_free 811 kfree 160 kmem_cache_alloc 112 get_slice_psize 87 lookup_page_cgroup 71 vm_normal_page 68 hpte_need_flush 67 page_remove_rmap 65 mark_page_accessed 56 find_vma 55 __mod_zone_page_state 50 hash_page 45 slab_buffer_size 44 __inc_zone_state 44 kmem_cache_alloc_notrace 44 find_get_page 41 handle_mm_fault 41 update_mmu_cache 41 hash_preload 38 __do_fault 37 unlock_page 37 page_waitqueue 37 filemap_fault 35 page_add_file_rmap 34 remove_vma 33 unlink_file_vma 33 unlink_anon_vmas 33 __flush_tlb_pending 32 vma_prio_tree_remove 30 anon_vma_chain_free 28 slice_mask_for_size 28 next_zones_zonelist 28 flush_hash_page 27 __dec_zone_state 27 __dec_zone_page_state 27 __remove_shared_vm_struct 25 free_hot_cold_page 23 get_pageblock_flags_group 23 vm_stat_account 20 vma_prio_tree_insert 19 mem_cgroup_update_mapped_file_stat 18 __vma_link_file 18 __vma_link_rb 18 mem_cgroup_add_lru_list 17 mem_cgroup_get_reclaim_stat_from_page 17 pgtable_free_tlb 17 update_page_reclaim_stat 17 anon_vma_free 16 free_pgd_range 15 mem_cgroup_uncharge_page 14 zone_statistics 14 zone_watermark_ok 14 put_page 14 slice_range_to_mask 14 __mem_cgroup_uncharge_common 14 policy_nodemask 14 policy_zonelist 14 get_page_from_freelist 14 __alloc_pages_nodemask 14 free_pcppages_bulk 13 vma_merge 13 vma_link 13 mem_cgroup_del_lru_list 12 slice_get_unmapped_area 12 vma_wants_writenotify 12 arch_get_unmapped_area_topdown 12 get_unmapped_area_prot 12 free_hot_page 11 free_pages 11 lru_add_drain 11 __free_pages 11 dec_zone_page_state 11 release_pages 11 reusable_anon_vma 10 mmap_region 10 drop_anon_vma 10 do_mmap_pgoff 10 cache_flusharray 9 vma_prio_tree_add 9 anon_vma_prepare 9 __vm_enough_memory 9 __inc_zone_page_state 9 __kmalloc 9 __rmqueue 8 mem_cgroup_charge_common 7 mem_cgroup_newpage_charge 7 inc_zone_page_state 7 __get_free_pages 7 alloc_pages_vma 7 alloc_pages_current 7 try_get_mem_cgroup_from_mm 7 switch_slb 7 lru_cache_add_lru 7 get_vma_policy 7 __mem_cgroup_commit_charge 7 __mem_cgroup_try_charge 7 vma_adjust 7 __lru_cache_add 7 page_evictable 7 page_add_new_anon_rmap 7 free_pgtables 6 kmemdup 6 find_mergeable_anon_vma 6 flush_hash_range 6 get_page 6 file_read_actor 6 unmap_vmas 6 generic_segment_checks 6 generic_file_aio_read 6 next_zone 6 ____pagevec_lru_add 5 anon_vma_clone 5 __pagevec_free 5 slice_area_is_free 5 SyS_mmap_pgoff 5 __split_vma 5 file_ra_state_init 5 free_pages_and_swap_cache 4 pte_free_finish 4 find_extend_vma 4 copy_user_page 4 arch_unmap_area_topdown 4 follow_huge_addr 4 follow_page 4 tlb_flush 4 do_munmap 4 unmap_region 4 vm_get_page_prot 3 __get_user_pages 3 slice_find_area 3 pud_huge 3 mprotect_fixup 3 pmd_huge 3 flush_dcache_page 3 SyS_brk 3 clear_user_page 3 get_user_pages 3 __pmd_alloc 3 vmstat_update 2 do_brk 2 first_online_pgdat 2 anon_vma_chain_link 2 is_hugepage_only_range 2 find_vma_prev 2 SyS_mprotect 2 arch_pick_mmap_layout 2 split_vma 2 expand_downwards 2 expand_stack 2 refresh_cpu_vm_stats 2 insert_vm_struct 2 exit_mmap 2 next_online_pgdat 2 move_page_tables 1 subpage_prot_free 1 init_new_context 1 slice_set_user_psize 1 destroy_context 1 SyS_munmap 1 install_special_mapping 1 sync_supers_timer_fn 1 do_wp_page 1 bdi_arm_supers_timer 1 free_block 1 RC 0 PASS: systemtap.examples/profiling/functioncallcount run meta taglines '' tag 'test_support' value '' meta taglines 'test_check: stap -p4 --all-modules latencytap.stp' tag 'test= _check' value 'stap -p4 --all-modules latencytap.stp' attempting command stap -p4 --all-modules latencytap.stp OUT WARNING: missing unwind/symbol data for module 'stap_f1ec7582ef17c5fe0c= d8e1886c9768f8_536507' WARNING: missing unwind/symbol data for module 'uprobes' /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/a1/stap_a1e620d3cf= b421498dc72223eaf71aa9_21777.ko RC 0 PASS: systemtap.examples/profiling/latencytap build meta taglines 'test_installcheck: stap latencytap.stp --all-modules -c "sle= ep 0.2"' tag 'test_installcheck' value 'stap latencytap.stp --all-modules -= c "sleep 0.2"' attempting command stap latencytap.stp --all-modules -c "sleep 0.2" OUT=20 RC 0 PASS: systemtap.examples/profiling/latencytap run meta taglines '' tag 'test_support' value '' meta taglines 'test_check: stap -p4 linetimes.stp kernel sys_nanosleep' tag= 'test_check' value 'stap -p4 linetimes.stp kernel sys_nanosleep' attempting command stap -p4 linetimes.stp kernel sys_nanosleep OUT /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/08/stap_0827f5= b87451ef6b20868fc7a487c21b_4881.ko RC 0 PASS: systemtap.examples/profiling/linetimes build meta taglines 'test_installcheck: stap linetimes.stp kernel sys_nanosleep -= c "sleep 0.2"' tag 'test_installcheck' value 'stap linetimes.stp kernel sys= _nanosleep -c "sleep 0.2"' attempting command stap linetimes.stp kernel sys_nanosleep -c "sleep 0.2" OUT=20 sys_nanosleep called 2 region avg(us) ma= x(us) kernel.statement("SyS_nanosleep@kernel/hrtimer.c:1595") 2 = 3 kernel.statement("SyS_nanosleep@kernel/hrtimer.c:1598") 200426 2= 00769 control flow graph information from to =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D kernel.statement("SyS_nanosleep@kernel/hrtimer.c:1595") 2 kernel.statement("SyS_nanosleep@kernel/hrtimer.c:1598") 2 RC 0 PASS: systemtap.examples/profiling/linetimes run meta taglines '' tag 'test_support' value '' meta taglines 'test_check: stap -p4 sched_switch.stp' tag 'test_check' valu= e 'stap -p4 sched_switch.stp' attempting command stap -p4 sched_switch.stp OUT /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/51/stap_51ee41= 5ec1424c911275372053109f44_8618.ko RC 0 PASS: systemtap.examples/profiling/sched_switch build meta taglines 'test_installcheck: stap sched_switch.stp -c "sleep 1"' tag = 'test_installcheck' value 'stap sched_switch.stp -c "sleep 1"' attempting command stap sched_switch.stp -c "sleep 1" OUT stapio 012966676947821090107963:20:R + 7964:20: = stapio swapper 012966676947821237350:120:R =3D=3D> 7964:120:R = stapio stapio 112966676947821269807963:120:S =3D=3D> 0:120:R = swapper stapio 012966676947821727127964:20:R + 3:-100: migration/0 stapio 012966676947821792257964:120:R =3D=3D> 3:0:R migra= tion/0 migration/0 012966676947821905733:0:S =3D=3D> 0:120:R swap= per swapper 112966676947821920810:120:R =3D=3D> 7964:120:R = stapio sleep 112966676947826711717964:120:S =3D=3D> 0:120:R = swapper swapper 012966676947827437680:20:R + 1051:20: rsyslogd swapper 012966676947827580360:120:R =3D=3D> 1051:120:R = rsyslogd rsyslogd 012966676947828071771051:20:R + 1051:20: rs:main Q:R= eg rsyslogd 012966676947828185091051:120:S =3D=3D> 1051:120:R rs= :main Q:Reg rs:main Q:Reg 012966676947828416821051:120:S =3D=3D> 0:120:R = swapper swapper 012966676947902650450:20:R + 4:20: ksoftirqd/0 swapper 012966676947902758730:120:R =3D=3D> 4:120:R ksofti= rqd/0 ksoftirqd/0 012966676947902926614:120:S =3D=3D> 0:120:R sw= apper swapper 012966676948002574350:20:R + 4:20: ksoftirqd/0 swapper 012966676948002642660:120:R =3D=3D> 4:120:R ksofti= rqd/0 ksoftirqd/0 012966676948003086014:120:S =3D=3D> 0:120:R sw= apper swapper 012966676949812832880:20:R + 7963:20: stapio swapper 012966676949812902540:120:R =3D=3D> 7963:120:R = stapio stapio 112966676949813088117963:20:R + 4833:20: expe= ct swapper 112966676949813237820:120:R =3D=3D> 4833:120:R = expect stapio 012966676949813281047963:120:S =3D=3D> 0:120:R = swapper expect 112966676949813614484833:120:S =3D=3D> 0:120:R = swapper swapper 012966676950002454730:20:R + 695:20: flush-253:2 swapper 012966676950002523370:120:R =3D=3D> 695:120:R flus= h-253:2 flush-253:2 11296667695000467520695:20:R + 688:20: jbd2/dm-2-8 swapper 112966676950004805310:120:R =3D=3D> 688:120:R jbd2= /dm-2-8 jbd2/dm-2-8 11296667695000492133688:120:D =3D=3D> 0:120:R = swapper flush-253:2 11296667695000624239695:20:R + 688:20: jbd2/dm-2-8 flush-253:2 01296667695000635792695:120:D =3D=3D> 0:120:R = swapper swapper 112966676950006379410:120:R =3D=3D> 688:120:R jbd2= /dm-2-8 jbd2/dm-2-8 01296667695000657742688:20:R + 695:20: flush-253:2 swapper 012966676950006700620:120:R =3D=3D> 695:120:R flus= h-253:2 jbd2/dm-2-8 11296667695000940227688:120:D =3D=3D> 0:120:R = swapper flush-253:2 01296667695000947804695:120:D =3D=3D> 0:120:R = swapper swapper 012966676950050183570:20:R + 20:20: kblockd/0 swapper 012966676950050670520:120:R =3D=3D> 20:120:R kbl= ockd/0 kblockd/0 0129666769500507566520:120:S =3D=3D> 0:120:R s= wapper swapper 012966676950050806980:20:R + 4:20: ksoftirqd/0 swapper 012966676950050865620:120:R =3D=3D> 4:120:R ksofti= rqd/0 ksoftirqd/0 012966676950050938994:120:S =3D=3D> 0:120:R sw= apper swapper 012966676950141297520:20:R + 20:20: kblockd/0 swapper 012966676950141382960:120:R =3D=3D> 20:120:R kbl= ockd/0 kblockd/0 0129666769501414606420:120:S =3D=3D> 0:120:R s= wapper swapper 012966676950141503360:20:R + 4:20: ksoftirqd/0 swapper 012966676950141561590:120:R =3D=3D> 4:120:R ksofti= rqd/0 ksoftirqd/0 012966676950141621274:120:S =3D=3D> 0:120:R sw= apper swapper 012966676950302483200:20:R + 20:20: kblockd/0 swapper 012966676950302541250:120:R =3D=3D> 20:120:R kbl= ockd/0 kblockd/0 0129666769503032726320:120:S =3D=3D> 0:120:R s= wapper swapper 012966676950321908990:20:R + 7963:20: stapio swapper 012966676950322043030:120:R =3D=3D> 7963:120:R = stapio stapio 012966676950322195527963:120:S =3D=3D> 0:120:R = swapper swapper 112966676950384577160:20:R + 688:20: jbd2/dm-2-8 swapper 112966676950384714570:120:R =3D=3D> 688:120:R jbd2= /dm-2-8 jbd2/dm-2-8 11296667695038484504688:120:D =3D=3D> 0:120:R = swapper swapper 112966676950384912440:20:R + 688:20: jbd2/dm-2-8 swapper 112966676950385025690:120:R =3D=3D> 688:120:R jbd2= /dm-2-8 jbd2/dm-2-8 11296667695038512282688:120:D =3D=3D> 0:120:R = swapper swapper 112966676950385197440:20:R + 688:20: jbd2/dm-2-8 swapper 112966676950385300440:120:R =3D=3D> 688:120:R jbd2= /dm-2-8 jbd2/dm-2-8 11296667695038539554688:120:D =3D=3D> 0:120:R = swapper swapper 112966676950385479880:20:R + 688:20: jbd2/dm-2-8 swapper 112966676950385591010:120:R =3D=3D> 688:120:R jbd2= /dm-2-8 swapper 012966676950385601120:20:R + 4:20: ksoftirqd/0 swapper 012966676950385678380:120:R =3D=3D> 4:120:R ksofti= rqd/0 jbd2/dm-2-8 11296667695038571343688:120:D =3D=3D> 0:120:R = swapper ksoftirqd/0 012966676950385764684:120:S =3D=3D> 0:120:R sw= apper swapper 112966676950497164350:20:R + 688:20: jbd2/dm-2-8 swapper 112966676950497289280:120:R =3D=3D> 688:120:R jbd2= /dm-2-8 jbd2/dm-2-8 11296667695049739922688:120:D =3D=3D> 0:120:R = swapper swapper 112966676950497468160:20:R + 688:20: jbd2/dm-2-8 swapper 112966676950497575330:120:R =3D=3D> 688:120:R jbd2= /dm-2-8 jbd2/dm-2-8 11296667695049767051688:120:D =3D=3D> 0:120:R = swapper swapper 112966676950497751590:20:R + 688:20: jbd2/dm-2-8 swapper 112966676950497850220:120:R =3D=3D> 688:120:R jbd2= /dm-2-8 jbd2/dm-2-8 11296667695049794506688:120:D =3D=3D> 0:120:R = swapper swapper 112966676950498026920:20:R + 688:20: jbd2/dm-2-8 swapper 112966676950498123250:120:R =3D=3D> 688:120:R jbd2= /dm-2-8 jbd2/dm-2-8 11296667695049820284688:120:D =3D=3D> 0:120:R = swapper swapper 112966676950498276150:20:R + 688:20: jbd2/dm-2-8 swapper 112966676950498373560:120:R =3D=3D> 688:120:R jbd2= /dm-2-8 swapper 012966676950499093970:20:R + 4:20: ksoftirqd/0 swapper 012966676950499174060:120:R =3D=3D> 4:120:R ksofti= rqd/0 ksoftirqd/0 012966676950499250294:120:S =3D=3D> 0:120:R sw= apper jbd2/dm-2-8 01296667695049935590688:20:R + 695:20: flush-253:2 swapper 012966676950499479260:120:R =3D=3D> 695:120:R flus= h-253:2 jbd2/dm-2-8 11296667695049961121688:20:R + 652:20: kdmflush jbd2/dm-2-8 11296667695049971270688:120:D =3D=3D> 652:120:R = kdmflush kdmflush 11296667695049980707652:120:D =3D=3D> 0:120:R = swapper flush-253:2 01296667695050259711695:120:S =3D=3D> 0:120:R = swapper swapper 112966676950507856950:20:R + 652:20: kdmflush swapper 012966676950507956950:20:R + 20:20: kblockd/0 swapper 112966676950507991530:120:R =3D=3D> 652:120:R k= dmflush swapper 012966676950508050540:120:R =3D=3D> 20:120:R kbl= ockd/0 kblockd/0 0129666769505081749120:120:S =3D=3D> 0:120:R s= wapper kdmflush 11296667695050830278652:120:D =3D=3D> 0:120:R = swapper swapper 112966676950580580950:20:R + 652:20: kdmflush swapper 012966676950580675650:20:R + 20:20: kblockd/0 swapper 112966676950580701720:120:R =3D=3D> 652:120:R k= dmflush swapper 012966676950580773050:120:R =3D=3D> 20:120:R kbl= ockd/0 kblockd/0 0129666769505808758920:120:S =3D=3D> 0:120:R s= wapper kdmflush 11296667695058084100652:20:R + 688:20: jbd2/dm-2-8 swapper 012966676950580930330:20:R + 4:20: ksoftirqd/0 swapper 012966676950581006540:120:R =3D=3D> 4:120:R ksofti= rqd/0 ksoftirqd/0 012966676950581103284:120:S =3D=3D> 688:120:R jbd2= /dm-2-8 jbd2/dm-2-8 01296667695058255382688:120:S =3D=3D> 0:120:R = swapper kdmflush 11296667695058370125652:120:S =3D=3D> 0:120:R = swapper swapper 112966676950627469570:20:R + 21:20: kblockd/1 swapper 112966676950627555280:120:R =3D=3D> 21:120:R kbl= ockd/1 kblockd/1 1129666769506284270421:120:S =3D=3D> 0:120:R s= wapper swapper 012966676950813523080:20:R + 20:20: kblockd/0 swapper 012966676950813605930:120:R =3D=3D> 20:120:R kbl= ockd/0 kblockd/0 0129666769508136815520:120:S =3D=3D> 0:120:R s= wapper swapper 012966676951815396960:20:R + 7963:20: stapio swapper 012966676951815467290:120:R =3D=3D> 7963:120:R = stapio stapio 112966676951815683477963:20:R + 4833:20: expe= ct swapper 112966676951815820250:120:R =3D=3D> 4833:120:R = expect stapio 012966676951815851107963:120:S =3D=3D> 0:120:R = swapper expect 112966676951816365574833:120:S =3D=3D> 0:120:R = swapper swapper 112966676952127446990:20:R + 10:20: events/1 swapper 112966676952127543570:120:R =3D=3D> 10:120:R ev= ents/1 events/1 1129666769521279744710:120:S =3D=3D> 0:120:R s= wapper swapper 012966676952127980910:20:R + 4:20: ksoftirqd/0 swapper 012966676952128060980:120:R =3D=3D> 4:120:R ksofti= rqd/0 ksoftirqd/0 012966676952128139324:120:S =3D=3D> 0:120:R sw= apper swapper 012966676952502461980:20:R + 9:20: events/0 swapper 012966676952502529840:120:R =3D=3D> 9:120:R eve= nts/0 events/0 012966676952502620179:120:S =3D=3D> 0:120:R sw= apper swapper 012966676952822830200:20:R + 7963:20: stapio swapper 012966676952822898940:120:R =3D=3D> 7963:120:R = stapio stapio 012966676952823009107963:120:S =3D=3D> 0:120:R = swapper swapper 012966676953817970800:20:R + 7963:20: stapio swapper 012966676953818039480:120:R =3D=3D> 7963:120:R = stapio stapio 112966676953818124387963:20:R + 4833:20: expe= ct swapper 112966676953818249490:120:R =3D=3D> 4833:120:R = expect stapio 012966676953818285317963:120:S =3D=3D> 0:120:R = swapper expect 112966676953818433534833:120:S =3D=3D> 0:120:R = swapper swapper 012966676955323645920:20:R + 7963:20: stapio swapper 012966676955323714230:120:R =3D=3D> 7963:120:R = stapio stapio 012966676955323823827963:120:S =3D=3D> 0:120:R = swapper swapper 012966676955820408630:20:R + 7963:20: stapio swapper 012966676955820477180:120:R =3D=3D> 7963:120:R = stapio stapio 112966676955820562247963:20:R + 4833:20: expe= ct swapper 112966676955820687990:120:R =3D=3D> 4833:120:R = expect stapio 012966676955820722237963:120:S =3D=3D> 0:120:R = swapper expect 112966676955820845774833:120:S =3D=3D> 0:120:R = swapper swapper 012966676957822848780:20:R + 7963:20: stapio swapper 012966676957822921740:120:R =3D=3D> 7963:120:R = stapio stapio 112966676957823011807963:20:R + 4833:20: expe= ct swapper 112966676957823137350:120:R =3D=3D> 4833:120:R = expect stapio 012966676957823172307963:120:S =3D=3D> 0:120:R = swapper expect 112966676957823299504833:120:S =3D=3D> 0:120:R = swapper swapper 012966676957824414030:20:R + 7963:20: stapio swapper 012966676957824482170:120:R =3D=3D> 7963:120:R = stapio stapio 012966676957824593237963:120:S =3D=3D> 0:120:R = swapper swapper 012966676957827350680:20:R + 7964:20: sleep swapper 012966676957827492690:120:R =3D=3D> 7964:120:R = sleep sleep 012966676957828443567964:20:R + 7963:20: stap= io sleep 012966676957828509027964:120: =3D=3D> 7963:120:R = stapio RC 0 PASS: systemtap.examples/profiling/sched_switch run meta taglines '' tag 'test_support' value '' meta taglines 'test_check: stap -p4 thread-times.stp' tag 'test_check' valu= e 'stap -p4 thread-times.stp' attempting command stap -p4 thread-times.stp OUT /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/65/stap_659ba5= bd1ca857dfa53795a26b3070d1_3547.ko RC 0 PASS: systemtap.examples/profiling/thread-times build meta taglines 'test_installcheck: stap thread-times.stp -c "sleep 0.2"' tag= 'test_installcheck' value 'stap thread-times.stp -c "sleep 0.2"' attempting command stap thread-times.stp -c "sleep 0.2" OUT comm tid %user %kernel (of 400 ticks) swapper 0 0.00% 100.00% RC 0 PASS: systemtap.examples/profiling/thread-times run meta taglines '' tag 'test_support' value '' meta taglines 'test_check: stap -p4 timeout.stp' tag 'test_check' value 'st= ap -p4 timeout.stp' attempting command stap -p4 timeout.stp OUT /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/3c/stap_3cddfc= 117a2b1ebbca35f01065052ca8_12781.ko RC 0 PASS: systemtap.examples/profiling/timeout build meta taglines 'test_installcheck: stap timeout.stp -c "sleep 0.2"' tag 'tes= t_installcheck' value 'stap timeout.stp -c "sleep 0.2"' attempting command stap timeout.stp -c "sleep 0.2" OUT=20 RC 0 PASS: systemtap.examples/profiling/timeout run meta taglines '' tag 'test_support' value '' meta taglines 'test_check: stap -p4 topsys.stp' tag 'test_check' value 'sta= p -p4 topsys.stp' attempting command stap -p4 topsys.stp OUT /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/23/stap_239b28= 328c6ce5cc0a1fd62f9be7b7dc_115914.ko RC 0 PASS: systemtap.examples/profiling/topsys build meta taglines 'test_installcheck: stap topsys.stp -c "sleep 0.2"' tag 'test= _installcheck' value 'stap topsys.stp -c "sleep 0.2"' attempting command stap topsys.stp -c "sleep 0.2" OUT=20 RC 0 PASS: systemtap.examples/profiling/topsys run testcase /home/prasadkr/systemtap/testsuite/systemtap.examples/check.exp co= mpleted in 829 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.exelib/exelib.exp ... Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.exelib/= uprobes_lib.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/loca= l/include -g -O3 -fPIC -shared -lm -o ./libuprobeslibgcc-O3default-debug= .so (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.exeli= b/uprobes_lib.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/loc= al/include -g -O3 -fPIC -shared -lm -o ./libuprobeslibgcc-O3default-debug.s= o=0D PASS: uprobeslibgcc-O3default-debug compile uprobes_lib.c Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.exelib/= uprobes_exe.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/loca= l/include -g -O3 -L. -luprobeslibgcc-O3default-debug -Wl,-rpath,. -lm -o= ./uprobesgcc-O3default-debug-uprobeslibgcc-O3default-debug_exe (timeout= =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.exeli= b/uprobes_exe.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/loc= al/include -g -O3 -L. -luprobeslibgcc-O3default-debug -Wl,-rpath,. -lm -o .= /uprobesgcc-O3default-debug-uprobeslibgcc-O3default-debug_exe=0D PASS: uprobesgcc-O3default-debug-uprobeslibgcc-O3default-debug compile upro= bes_exe.c Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.exelib/= uprobes_exe.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/loca= l/include -g -O3 -L. -luprobeslibgcc-O3default-debug -Wl,-rpath,. -lm -o= ./uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-debug_exe (tim= eout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.exeli= b/uprobes_exe.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/loc= al/include -g -O3 -L. -luprobeslibgcc-O3default-debug -Wl,-rpath,. -lm -o .= /uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-debug_exe=0D PASS: uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-debug compile = uprobes_exe.c Executing: objcopy --only-keep-debug ./uprobesgcc-O3default-sep-debug-uprob= eslibgcc-O3default-debug_exe ./uprobesgcc-O3default-sep-debug-uprobeslibgcc= -O3default-debug_exe.debug Executing: objcopy --strip-debug ./uprobesgcc-O3default-sep-debug-uprobesli= bgcc-O3default-debug_exe Executing: objcopy --add-gnu-debuglink=3D./uprobesgcc-O3default-sep-debug-u= probeslibgcc-O3default-debug_exe.debug ./uprobesgcc-O3default-sep-debug-upr= obeslibgcc-O3default-debug_exe Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.exelib/= uprobes_exe.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/loca= l/include -g -O3 -L. -luprobeslibgcc-O3default-debug -Wl,-rpath,. -fPIE -pi= e -lm -o ./uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-debug_= exe (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.exeli= b/uprobes_exe.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/loc= al/include -g -O3 -L. -luprobeslibgcc-O3default-debug -Wl,-rpath,. -fPIE -p= ie -lm -o ./uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-debug_ex= e=0D PASS: uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-debug compile = uprobes_exe.c Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.exelib/= uprobes_exe.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/loca= l/include -g -O3 -L. -luprobeslibgcc-O3default-debug -Wl,-rpath,. -fPIE -pi= e -lm -o ./uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-de= bug_exe (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.exeli= b/uprobes_exe.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/loc= al/include -g -O3 -L. -luprobeslibgcc-O3default-debug -Wl,-rpath,. -fPIE -p= ie -lm -o ./uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-debu= g_exe=0D PASS: uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-debug comp= ile uprobes_exe.c Executing: objcopy --only-keep-debug ./uprobesgcc-O3default-pie-sep-debug-u= probeslibgcc-O3default-debug_exe ./uprobesgcc-O3default-pie-sep-debug-uprob= eslibgcc-O3default-debug_exe.debug Executing: objcopy --strip-debug ./uprobesgcc-O3default-pie-sep-debug-uprob= eslibgcc-O3default-debug_exe Executing: objcopy --add-gnu-debuglink=3D./uprobesgcc-O3default-pie-sep-deb= ug-uprobeslibgcc-O3default-debug_exe.debug ./uprobesgcc-O3default-pie-sep-d= ebug-uprobeslibgcc-O3default-debug_exe Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.exelib/= uprobes_lib.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/loca= l/include -g -O3 -fPIC -shared -lm -o ./libuprobeslibgcc-O3default-sep-d= ebug.so (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.exeli= b/uprobes_lib.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/loc= al/include -g -O3 -fPIC -shared -lm -o ./libuprobeslibgcc-O3default-sep-deb= ug.so=0D PASS: uprobeslibgcc-O3default-sep-debug compile uprobes_lib.c Executing: objcopy --only-keep-debug ./libuprobeslibgcc-O3default-sep-debug= .so ./libuprobeslibgcc-O3default-sep-debug.so.debug Executing: objcopy --strip-debug ./libuprobeslibgcc-O3default-sep-debug.so Executing: objcopy --add-gnu-debuglink=3D./libuprobeslibgcc-O3default-sep-d= ebug.so.debug ./libuprobeslibgcc-O3default-sep-debug.so Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.exelib/= uprobes_exe.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/loca= l/include -g -O3 -L. -luprobeslibgcc-O3default-sep-debug -Wl,-rpath,. -lm = -o ./uprobesgcc-O3default-debug-uprobeslibgcc-O3default-sep-debug_exe = (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.exeli= b/uprobes_exe.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/loc= al/include -g -O3 -L. -luprobeslibgcc-O3default-sep-debug -Wl,-rpath,. -lm = -o ./uprobesgcc-O3default-debug-uprobeslibgcc-O3default-sep-debug_exe=0D PASS: uprobesgcc-O3default-debug-uprobeslibgcc-O3default-sep-debug compile = uprobes_exe.c Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.exelib/= uprobes_exe.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/loca= l/include -g -O3 -L. -luprobeslibgcc-O3default-sep-debug -Wl,-rpath,. -lm = -o ./uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-sep-debug_exe= (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.exeli= b/uprobes_exe.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/loc= al/include -g -O3 -L. -luprobeslibgcc-O3default-sep-debug -Wl,-rpath,. -lm = -o ./uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-sep-debug_exe=0D PASS: uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-sep-debug comp= ile uprobes_exe.c Executing: objcopy --only-keep-debug ./uprobesgcc-O3default-sep-debug-uprob= eslibgcc-O3default-sep-debug_exe ./uprobesgcc-O3default-sep-debug-uprobesli= bgcc-O3default-sep-debug_exe.debug Executing: objcopy --strip-debug ./uprobesgcc-O3default-sep-debug-uprobesli= bgcc-O3default-sep-debug_exe Executing: objcopy --add-gnu-debuglink=3D./uprobesgcc-O3default-sep-debug-u= probeslibgcc-O3default-sep-debug_exe.debug ./uprobesgcc-O3default-sep-debug= -uprobeslibgcc-O3default-sep-debug_exe Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.exelib/= uprobes_exe.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/loca= l/include -g -O3 -L. -luprobeslibgcc-O3default-sep-debug -Wl,-rpath,. -fPIE= -pie -lm -o ./uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-se= p-debug_exe (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.exeli= b/uprobes_exe.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/loc= al/include -g -O3 -L. -luprobeslibgcc-O3default-sep-debug -Wl,-rpath,. -fPI= E -pie -lm -o ./uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-sep-= debug_exe=0D PASS: uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-sep-debug comp= ile uprobes_exe.c Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.exelib/= uprobes_exe.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/loca= l/include -g -O3 -L. -luprobeslibgcc-O3default-sep-debug -Wl,-rpath,. -fPIE= -pie -lm -o ./uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3defaul= t-sep-debug_exe (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.exeli= b/uprobes_exe.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/loc= al/include -g -O3 -L. -luprobeslibgcc-O3default-sep-debug -Wl,-rpath,. -fPI= E -pie -lm -o ./uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-= sep-debug_exe=0D PASS: uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-sep-debug = compile uprobes_exe.c Executing: objcopy --only-keep-debug ./uprobesgcc-O3default-pie-sep-debug-u= probeslibgcc-O3default-sep-debug_exe ./uprobesgcc-O3default-pie-sep-debug-u= probeslibgcc-O3default-sep-debug_exe.debug Executing: objcopy --strip-debug ./uprobesgcc-O3default-pie-sep-debug-uprob= eslibgcc-O3default-sep-debug_exe Executing: objcopy --add-gnu-debuglink=3D./uprobesgcc-O3default-pie-sep-deb= ug-uprobeslibgcc-O3default-sep-debug_exe.debug ./uprobesgcc-O3default-pie-s= ep-debug-uprobeslibgcc-O3default-sep-debug_exe Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.exelib/= uprobes_lib.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/loca= l/include -g -O3 -fPIC -shared -lm -o ./libuprobeslibgcc-O3default-preli= nk-debug.so (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.exeli= b/uprobes_lib.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/loc= al/include -g -O3 -fPIC -shared -lm -o ./libuprobeslibgcc-O3default-prelink= -debug.so=0D PASS: uprobeslibgcc-O3default-prelink-debug compile uprobes_lib.c Executing: /usr/sbin/prelink -vfNR -r 0x6400000 ./libuprobeslibgcc-O3defaul= t-prelink-debug.so PASS: uprobeslibgcc-O3default-prelink-debug prelink ./libuprobeslibgcc-O3de= fault-prelink-debug.so Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.exelib/= uprobes_exe.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/loca= l/include -g -O3 -L. -luprobeslibgcc-O3default-prelink-debug -Wl,-rpath,. = -lm -o ./uprobesgcc-O3default-debug-uprobeslibgcc-O3default-prelink-debug= _exe (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.exeli= b/uprobes_exe.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/loc= al/include -g -O3 -L. -luprobeslibgcc-O3default-prelink-debug -Wl,-rpath,. = -lm -o ./uprobesgcc-O3default-debug-uprobeslibgcc-O3default-prelink-debug_e= xe=0D PASS: uprobesgcc-O3default-debug-uprobeslibgcc-O3default-prelink-debug comp= ile uprobes_exe.c Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.exelib/= uprobes_exe.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/loca= l/include -g -O3 -L. -luprobeslibgcc-O3default-prelink-debug -Wl,-rpath,. = -lm -o ./uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-prelink-d= ebug_exe (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.exeli= b/uprobes_exe.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/loc= al/include -g -O3 -L. -luprobeslibgcc-O3default-prelink-debug -Wl,-rpath,. = -lm -o ./uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-prelink-deb= ug_exe=0D PASS: uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-prelink-debug = compile uprobes_exe.c Executing: objcopy --only-keep-debug ./uprobesgcc-O3default-sep-debug-uprob= eslibgcc-O3default-prelink-debug_exe ./uprobesgcc-O3default-sep-debug-uprob= eslibgcc-O3default-prelink-debug_exe.debug Executing: objcopy --strip-debug ./uprobesgcc-O3default-sep-debug-uprobesli= bgcc-O3default-prelink-debug_exe Executing: objcopy --add-gnu-debuglink=3D./uprobesgcc-O3default-sep-debug-u= probeslibgcc-O3default-prelink-debug_exe.debug ./uprobesgcc-O3default-sep-d= ebug-uprobeslibgcc-O3default-prelink-debug_exe Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.exelib/= uprobes_exe.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/loca= l/include -g -O3 -L. -luprobeslibgcc-O3default-prelink-debug -Wl,-rpath,. -= fPIE -pie -lm -o ./uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3defaul= t-prelink-debug_exe (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.exeli= b/uprobes_exe.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/loc= al/include -g -O3 -L. -luprobeslibgcc-O3default-prelink-debug -Wl,-rpath,. = -fPIE -pie -lm -o ./uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-= prelink-debug_exe=0D PASS: uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-prelink-debug = compile uprobes_exe.c Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.exelib/= uprobes_exe.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/loca= l/include -g -O3 -L. -luprobeslibgcc-O3default-prelink-debug -Wl,-rpath,. -= fPIE -pie -lm -o ./uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3de= fault-prelink-debug_exe (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.exeli= b/uprobes_exe.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/loc= al/include -g -O3 -L. -luprobeslibgcc-O3default-prelink-debug -Wl,-rpath,. = -fPIE -pie -lm -o ./uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3defa= ult-prelink-debug_exe=0D PASS: uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-prelink-de= bug compile uprobes_exe.c Executing: objcopy --only-keep-debug ./uprobesgcc-O3default-pie-sep-debug-u= probeslibgcc-O3default-prelink-debug_exe ./uprobesgcc-O3default-pie-sep-deb= ug-uprobeslibgcc-O3default-prelink-debug_exe.debug Executing: objcopy --strip-debug ./uprobesgcc-O3default-pie-sep-debug-uprob= eslibgcc-O3default-prelink-debug_exe Executing: objcopy --add-gnu-debuglink=3D./uprobesgcc-O3default-pie-sep-deb= ug-uprobeslibgcc-O3default-prelink-debug_exe.debug ./uprobesgcc-O3default-p= ie-sep-debug-uprobeslibgcc-O3default-prelink-debug_exe Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.exelib/= uprobes_lib.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/loca= l/include -g -O3 -fPIC -shared -lm -o ./libuprobeslibgcc-O3default-preli= nk-sep-debug.so (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.exeli= b/uprobes_lib.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/loc= al/include -g -O3 -fPIC -shared -lm -o ./libuprobeslibgcc-O3default-prelink= -sep-debug.so=0D PASS: uprobeslibgcc-O3default-prelink-sep-debug compile uprobes_lib.c Executing: objcopy --only-keep-debug ./libuprobeslibgcc-O3default-prelink-s= ep-debug.so ./libuprobeslibgcc-O3default-prelink-sep-debug.so.debug Executing: objcopy --strip-debug ./libuprobeslibgcc-O3default-prelink-sep-d= ebug.so Executing: objcopy --add-gnu-debuglink=3D./libuprobeslibgcc-O3default-preli= nk-sep-debug.so.debug ./libuprobeslibgcc-O3default-prelink-sep-debug.so Executing: /usr/sbin/prelink -vfNR -r 0x6400000 ./libuprobeslibgcc-O3defaul= t-prelink-sep-debug.so PASS: uprobeslibgcc-O3default-prelink-sep-debug prelink ./libuprobeslibgcc-= O3default-prelink-sep-debug.so Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.exelib/= uprobes_exe.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/loca= l/include -g -O3 -L. -luprobeslibgcc-O3default-prelink-sep-debug -Wl,-rpath= ,. -lm -o ./uprobesgcc-O3default-debug-uprobeslibgcc-O3default-prelink-s= ep-debug_exe (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.exeli= b/uprobes_exe.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/loc= al/include -g -O3 -L. -luprobeslibgcc-O3default-prelink-sep-debug -Wl,-rpat= h,. -lm -o ./uprobesgcc-O3default-debug-uprobeslibgcc-O3default-prelink-sep= -debug_exe=0D PASS: uprobesgcc-O3default-debug-uprobeslibgcc-O3default-prelink-sep-debug = compile uprobes_exe.c Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.exelib/= uprobes_exe.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/loca= l/include -g -O3 -L. -luprobeslibgcc-O3default-prelink-sep-debug -Wl,-rpath= ,. -lm -o ./uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-preli= nk-sep-debug_exe (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.exeli= b/uprobes_exe.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/loc= al/include -g -O3 -L. -luprobeslibgcc-O3default-prelink-sep-debug -Wl,-rpat= h,. -lm -o ./uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-prelink= -sep-debug_exe=0D PASS: uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-prelink-sep-de= bug compile uprobes_exe.c Executing: objcopy --only-keep-debug ./uprobesgcc-O3default-sep-debug-uprob= eslibgcc-O3default-prelink-sep-debug_exe ./uprobesgcc-O3default-sep-debug-u= probeslibgcc-O3default-prelink-sep-debug_exe.debug Executing: objcopy --strip-debug ./uprobesgcc-O3default-sep-debug-uprobesli= bgcc-O3default-prelink-sep-debug_exe Executing: objcopy --add-gnu-debuglink=3D./uprobesgcc-O3default-sep-debug-u= probeslibgcc-O3default-prelink-sep-debug_exe.debug ./uprobesgcc-O3default-s= ep-debug-uprobeslibgcc-O3default-prelink-sep-debug_exe Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.exelib/= uprobes_exe.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/loca= l/include -g -O3 -L. -luprobeslibgcc-O3default-prelink-sep-debug -Wl,-rpath= ,. -fPIE -pie -lm -o ./uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3de= fault-prelink-sep-debug_exe (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.exeli= b/uprobes_exe.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/loc= al/include -g -O3 -L. -luprobeslibgcc-O3default-prelink-sep-debug -Wl,-rpat= h,. -fPIE -pie -lm -o ./uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3defa= ult-prelink-sep-debug_exe=0D PASS: uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-prelink-sep-de= bug compile uprobes_exe.c Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.exelib/= uprobes_exe.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/loca= l/include -g -O3 -L. -luprobeslibgcc-O3default-prelink-sep-debug -Wl,-rpath= ,. -fPIE -pie -lm -o ./uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-= O3default-prelink-sep-debug_exe (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.exeli= b/uprobes_exe.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/loc= al/include -g -O3 -L. -luprobeslibgcc-O3default-prelink-sep-debug -Wl,-rpat= h,. -fPIE -pie -lm -o ./uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3= default-prelink-sep-debug_exe=0D PASS: uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-prelink-se= p-debug compile uprobes_exe.c Executing: objcopy --only-keep-debug ./uprobesgcc-O3default-pie-sep-debug-u= probeslibgcc-O3default-prelink-sep-debug_exe ./uprobesgcc-O3default-pie-sep= -debug-uprobeslibgcc-O3default-prelink-sep-debug_exe.debug Executing: objcopy --strip-debug ./uprobesgcc-O3default-pie-sep-debug-uprob= eslibgcc-O3default-prelink-sep-debug_exe Executing: objcopy --add-gnu-debuglink=3D./uprobesgcc-O3default-pie-sep-deb= ug-uprobeslibgcc-O3default-prelink-sep-debug_exe.debug ./uprobesgcc-O3defau= lt-pie-sep-debug-uprobeslibgcc-O3default-prelink-sep-debug_exe Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.exelib/= uprobes_lib.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/loca= l/include -g -O3 -fPIC -shared -lm -o ./libuprobeslibgcc-O3default-preli= nk-sep-debug-after.so (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.exeli= b/uprobes_lib.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/loc= al/include -g -O3 -fPIC -shared -lm -o ./libuprobeslibgcc-O3default-prelink= -sep-debug-after.so=0D PASS: uprobeslibgcc-O3default-prelink-sep-debug-after compile uprobes_lib.c Executing: /usr/sbin/prelink -vfNR -r 0x6400000 ./libuprobeslibgcc-O3defaul= t-prelink-sep-debug-after.so PASS: uprobeslibgcc-O3default-prelink-sep-debug-after prelink ./libuprobesl= ibgcc-O3default-prelink-sep-debug-after.so Executing: objcopy --only-keep-debug ./libuprobeslibgcc-O3default-prelink-s= ep-debug-after.so ./libuprobeslibgcc-O3default-prelink-sep-debug-after.so.d= ebug Executing: objcopy --strip-debug ./libuprobeslibgcc-O3default-prelink-sep-d= ebug-after.so Executing: objcopy --add-gnu-debuglink=3D./libuprobeslibgcc-O3default-preli= nk-sep-debug-after.so.debug ./libuprobeslibgcc-O3default-prelink-sep-debug-= after.so Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.exelib/= uprobes_exe.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/loca= l/include -g -O3 -L. -luprobeslibgcc-O3default-prelink-sep-debug-after -Wl,= -rpath,. -lm -o ./uprobesgcc-O3default-debug-uprobeslibgcc-O3default-pre= link-sep-debug-after_exe (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.exeli= b/uprobes_exe.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/loc= al/include -g -O3 -L. -luprobeslibgcc-O3default-prelink-sep-debug-after -Wl= ,-rpath,. -lm -o ./uprobesgcc-O3default-debug-uprobeslibgcc-O3default-preli= nk-sep-debug-after_exe=0D PASS: uprobesgcc-O3default-debug-uprobeslibgcc-O3default-prelink-sep-debug-= after compile uprobes_exe.c Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.exelib/= uprobes_exe.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/loca= l/include -g -O3 -L. -luprobeslibgcc-O3default-prelink-sep-debug-after -Wl,= -rpath,. -lm -o ./uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default= -prelink-sep-debug-after_exe (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.exeli= b/uprobes_exe.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/loc= al/include -g -O3 -L. -luprobeslibgcc-O3default-prelink-sep-debug-after -Wl= ,-rpath,. -lm -o ./uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-p= relink-sep-debug-after_exe=0D PASS: uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-prelink-sep-de= bug-after compile uprobes_exe.c Executing: objcopy --only-keep-debug ./uprobesgcc-O3default-sep-debug-uprob= eslibgcc-O3default-prelink-sep-debug-after_exe ./uprobesgcc-O3default-sep-d= ebug-uprobeslibgcc-O3default-prelink-sep-debug-after_exe.debug Executing: objcopy --strip-debug ./uprobesgcc-O3default-sep-debug-uprobesli= bgcc-O3default-prelink-sep-debug-after_exe Executing: objcopy --add-gnu-debuglink=3D./uprobesgcc-O3default-sep-debug-u= probeslibgcc-O3default-prelink-sep-debug-after_exe.debug ./uprobesgcc-O3def= ault-sep-debug-uprobeslibgcc-O3default-prelink-sep-debug-after_exe Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.exelib/= uprobes_exe.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/loca= l/include -g -O3 -L. -luprobeslibgcc-O3default-prelink-sep-debug-after -Wl,= -rpath,. -fPIE -pie -lm -o ./uprobesgcc-O3default-pie-debug-uprobeslibgc= c-O3default-prelink-sep-debug-after_exe (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.exeli= b/uprobes_exe.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/loc= al/include -g -O3 -L. -luprobeslibgcc-O3default-prelink-sep-debug-after -Wl= ,-rpath,. -fPIE -pie -lm -o ./uprobesgcc-O3default-pie-debug-uprobeslibgcc-= O3default-prelink-sep-debug-after_exe=0D PASS: uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-prelink-sep-de= bug-after compile uprobes_exe.c Executing on host: gcc /home/prasadkr/systemtap/testsuite/systemtap.exelib/= uprobes_exe.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/loca= l/include -g -O3 -L. -luprobeslibgcc-O3default-prelink-sep-debug-after -Wl,= -rpath,. -fPIE -pie -lm -o ./uprobesgcc-O3default-pie-sep-debug-uprobesl= ibgcc-O3default-prelink-sep-debug-after_exe (timeout =3D 300) spawn -ignore SIGHUP gcc /home/prasadkr/systemtap/testsuite/systemtap.exeli= b/uprobes_exe.c -isystem/home/prasadkr/systemtap/testsuite -isystem/usr/loc= al/include -g -O3 -L. -luprobeslibgcc-O3default-prelink-sep-debug-after -Wl= ,-rpath,. -fPIE -pie -lm -o ./uprobesgcc-O3default-pie-sep-debug-uprobeslib= gcc-O3default-prelink-sep-debug-after_exe=0D PASS: uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-prelink-se= p-debug-after compile uprobes_exe.c Executing: objcopy --only-keep-debug ./uprobesgcc-O3default-pie-sep-debug-u= probeslibgcc-O3default-prelink-sep-debug-after_exe ./uprobesgcc-O3default-p= ie-sep-debug-uprobeslibgcc-O3default-prelink-sep-debug-after_exe.debug Executing: objcopy --strip-debug ./uprobesgcc-O3default-pie-sep-debug-uprob= eslibgcc-O3default-prelink-sep-debug-after_exe Executing: objcopy --add-gnu-debuglink=3D./uprobesgcc-O3default-pie-sep-deb= ug-uprobeslibgcc-O3default-prelink-sep-debug-after_exe.debug ./uprobesgcc-O= 3default-pie-sep-debug-uprobeslibgcc-O3default-prelink-sep-debug-after_exe sourcing: /home/prasadkr/systemtap/testsuite/systemtap.exelib/libmarkunames= tack.tcl for uprobesgcc-O3default-debug-uprobeslibgcc-O3default-debug_uprob= eslibgcc-O3default-debug Running: stap -w --ldd /home/prasadkr/systemtap/testsuite/systemtap.exelib/= libmarkunamestack.stp ./uprobesgcc-O3default-debug-uprobeslibgcc-O3default-= debug_exe ./libuprobeslibgcc-O3default-debug.so -c ./uprobesgcc-O3default-d= ebug-uprobeslibgcc-O3default-debug_exe spawn stap -w --ldd /home/prasadkr/systemtap/testsuite/systemtap.exelib/lib= markunamestack.stp ./uprobesgcc-O3default-debug-uprobeslibgcc-O3default-deb= ug_exe ./libuprobeslibgcc-O3default-debug.so -c ./uprobesgcc-O3default-debu= g-uprobeslibgcc-O3default-debug_exe=0D main=0D exe: main=3D00000011.plt_call.__libc_start_main@@GLIBC_2.3+0=0D main_func: 3=0D exe: main_func=3D00000011.plt_call.__libc_start_main@@GLIBC_2.3+0=0D print_ubacktrace exe 0=0D 0x100006a0 : 00000011.plt_call.__libc_start_main@@GLIBC_2.3+0+0x188/0x3b0 = [...uprobesgcc-O3default-debug-uprobeslibgcc-O3default-debug_exe]=0D [0xc0000001315dbea8] [0x0000000000000003] 0x3 (inexact)=0D main_count: 3=0D main_func: 2=0D exe: main_func=3D00000011.plt_call.__libc_start_main@@GLIBC_2.3+0=0D print_ustack exe 1=0D 0x100006a0 : 00000011.plt_call.__libc_start_main@@GLIBC_2.3+0+0x188/0x3b0 = [...uprobesgcc-O3default-debug-uprobeslibgcc-O3default-debug_exe]=0D 0x0=0D 0x0=0D main_count: 2=0D main_func: 1=0D exe: main_func=3D00000011.plt_call.__libc_start_main@@GLIBC_2.3+0=0D main_count: 1=0D lib_main=0D lib: lib_main=3D00000010.plt_call.lib_func+0=0D lib_func: 3=0D lib: lib_func=3D00000010.plt_call.lib_func+0=0D print_ubacktrace lib 2=0D 0xfff9c0c0870 : 00000010.plt_call.lib_func+0+0x158/0x290 [...adkr/systemta= p/testsuite/libuprobeslibgcc-O3default-debug.so]=0D [0xc0000001315dbea8] [0x0000000000000003] 0x3 (inexact)=0D func_count: 3=0D lib_func: 2=0D lib: lib_func=3D00000010.plt_call.lib_func+0=0D print_ustack lib 3=0D 0xfff9c0c0870 : 00000010.plt_call.lib_func+0+0x158/0x290 [...adkr/systemta= p/testsuite/libuprobeslibgcc-O3default-debug.so]=0D 0x0=0D 0x0=0D func_count: 2=0D lib_func: 1=0D lib: lib_func=3D00000010.plt_call.lib_func+0=0D func_count: 1=0D FAIL: lib-uprobesgcc-O3default-debug-uprobeslibgcc-O3default-debug_uprobesl= ibgcc-O3default-debug (1) FAIL: mark-uprobesgcc-O3default-debug-uprobeslibgcc-O3default-debug_uprobes= libgcc-O3default-debug (0) FAIL: uname-uprobesgcc-O3default-debug-uprobeslibgcc-O3default-debug_uprobe= slibgcc-O3default-debug (0) FAIL: ustack-uprobesgcc-O3default-debug-uprobeslibgcc-O3default-debug_uprob= eslibgcc-O3default-debug print (0) FAIL: ustack-uprobesgcc-O3default-debug-uprobeslibgcc-O3default-debug_uprob= eslibgcc-O3default-debug main (0) FAIL: ustack-uprobesgcc-O3default-debug-uprobeslibgcc-O3default-debug_uprob= eslibgcc-O3default-debug main_func (0) FAIL: ustack-uprobesgcc-O3default-debug-uprobeslibgcc-O3default-debug_uprob= eslibgcc-O3default-debug lib_main (0) FAIL: ustack-uprobesgcc-O3default-debug-uprobeslibgcc-O3default-debug_uprob= eslibgcc-O3default-debug lib_func (0) sourcing: /home/prasadkr/systemtap/testsuite/systemtap.exelib/libmarkunames= tack.tcl for uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-debug_u= probeslibgcc-O3default-debug Running: stap -w --ldd /home/prasadkr/systemtap/testsuite/systemtap.exelib/= libmarkunamestack.stp ./uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3defa= ult-debug_exe ./libuprobeslibgcc-O3default-debug.so -c ./uprobesgcc-O3defau= lt-sep-debug-uprobeslibgcc-O3default-debug_exe spawn stap -w --ldd /home/prasadkr/systemtap/testsuite/systemtap.exelib/lib= markunamestack.stp ./uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default= -debug_exe ./libuprobeslibgcc-O3default-debug.so -c ./uprobesgcc-O3default-= sep-debug-uprobeslibgcc-O3default-debug_exe=0D main=0D exe: main=3D00000011.plt_call.__libc_start_main@@GLIBC_2.3+0=0D main_func: 3=0D exe: main_func=3D00000011.plt_call.__libc_start_main@@GLIBC_2.3+0=0D print_ubacktrace exe 0=0D 0x100006a0 : 00000011.plt_call.__libc_start_main@@GLIBC_2.3+0+0x188/0x3b0 = [...besgcc-O3default-sep-debug-uprobeslibgcc-O3default-debug_exe]=0D [0xc0000000039b3ea8] [0x0000000000000003] 0x3 (inexact)=0D main_count: 3=0D main_func: 2=0D exe: main_func=3D00000011.plt_call.__libc_start_main@@GLIBC_2.3+0=0D print_ustack exe 1=0D 0x100006a0 : 00000011.plt_call.__libc_start_main@@GLIBC_2.3+0+0x188/0x3b0 = [...besgcc-O3default-sep-debug-uprobeslibgcc-O3default-debug_exe]=0D 0x0=0D 0x0=0D main_count: 2=0D main_func: 1=0D exe: main_func=3D00000011.plt_call.__libc_start_main@@GLIBC_2.3+0=0D main_count: 1=0D lib_main=0D lib: lib_main=3D00000010.plt_call.lib_func+0=0D lib_func: 3=0D lib: lib_func=3D00000010.plt_call.lib_func+0=0D print_ubacktrace lib 2=0D 0xfff985c0870 : 00000010.plt_call.lib_func+0+0x158/0x290 [...adkr/systemta= p/testsuite/libuprobeslibgcc-O3default-debug.so]=0D [0xc0000000039b3ea8] [0x0000000000000003] 0x3 (inexact)=0D func_count: 3=0D lib_func: 2=0D lib: lib_func=3D00000010.plt_call.lib_func+0=0D print_ustack lib 3=0D 0xfff985c0870 : 00000010.plt_call.lib_func+0+0x158/0x290 [...adkr/systemta= p/testsuite/libuprobeslibgcc-O3default-debug.so]=0D 0x0=0D 0x0=0D func_count: 2=0D lib_func: 1=0D lib: lib_func=3D00000010.plt_call.lib_func+0=0D func_count: 1=0D FAIL: lib-uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-debug_upro= beslibgcc-O3default-debug (1) FAIL: mark-uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-debug_upr= obeslibgcc-O3default-debug (0) FAIL: uname-uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-debug_up= robeslibgcc-O3default-debug (0) FAIL: ustack-uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-debug_u= probeslibgcc-O3default-debug print (0) FAIL: ustack-uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-debug_u= probeslibgcc-O3default-debug main (0) FAIL: ustack-uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-debug_u= probeslibgcc-O3default-debug main_func (0) FAIL: ustack-uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-debug_u= probeslibgcc-O3default-debug lib_main (0) FAIL: ustack-uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-debug_u= probeslibgcc-O3default-debug lib_func (0) sourcing: /home/prasadkr/systemtap/testsuite/systemtap.exelib/libmarkunames= tack.tcl for uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-debug_u= probeslibgcc-O3default-debug Running: stap -w --ldd /home/prasadkr/systemtap/testsuite/systemtap.exelib/= libmarkunamestack.stp ./uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3defa= ult-debug_exe ./libuprobeslibgcc-O3default-debug.so -c ./uprobesgcc-O3defau= lt-pie-debug-uprobeslibgcc-O3default-debug_exe spawn stap -w --ldd /home/prasadkr/systemtap/testsuite/systemtap.exelib/lib= markunamestack.stp ./uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default= -debug_exe ./libuprobeslibgcc-O3default-debug.so -c ./uprobesgcc-O3default-= pie-debug-uprobeslibgcc-O3default-debug_exe=0D main=0D exe: main=3D00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0=0D main_func: 3=0D exe: main_func=3D00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0=0D print_ubacktrace exe 0=0D 0x3a7d0b00 : 00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0+0x1a0/0x3c8 [..= .besgcc-O3default-pie-debug-uprobeslibgcc-O3default-debug_exe]=0D [0xc000000003bc7ea8] [0x0000000000000003] 0x3 (inexact)=0D main_count: 3=0D main_func: 2=0D exe: main_func=3D00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0=0D print_ustack exe 1=0D 0x3a7d0b00 : 00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0+0x1a0/0x3c8 [..= .besgcc-O3default-pie-debug-uprobeslibgcc-O3default-debug_exe]=0D 0x0=0D 0x0=0D main_count: 2=0D main_func: 1=0D exe: main_func=3D00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0=0D main_count: 1=0D lib_main=0D lib: lib_main=3D00000010.plt_call.lib_func+0=0D lib_func: 3=0D lib: lib_func=3D00000010.plt_call.lib_func+0=0D print_ubacktrace lib 2=0D 0xfff833d0870 : 00000010.plt_call.lib_func+0+0x158/0x290 [...adkr/systemta= p/testsuite/libuprobeslibgcc-O3default-debug.so]=0D [0xc000000003bc7ea8] [0x0000000000000003] 0x3 (inexact)=0D func_count: 3=0D lib_func: 2=0D lib: lib_func=3D00000010.plt_call.lib_func+0=0D print_ustack lib 3=0D 0xfff833d0870 : 00000010.plt_call.lib_func+0+0x158/0x290 [...adkr/systemta= p/testsuite/libuprobeslibgcc-O3default-debug.so]=0D 0x0=0D 0x0=0D func_count: 2=0D lib_func: 1=0D lib: lib_func=3D00000010.plt_call.lib_func+0=0D func_count: 1=0D FAIL: lib-uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-debug_upro= beslibgcc-O3default-debug (1) FAIL: mark-uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-debug_upr= obeslibgcc-O3default-debug (0) FAIL: uname-uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-debug_up= robeslibgcc-O3default-debug (0) FAIL: ustack-uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-debug_u= probeslibgcc-O3default-debug print (0) FAIL: ustack-uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-debug_u= probeslibgcc-O3default-debug main (0) FAIL: ustack-uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-debug_u= probeslibgcc-O3default-debug main_func (0) FAIL: ustack-uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-debug_u= probeslibgcc-O3default-debug lib_main (0) FAIL: ustack-uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-debug_u= probeslibgcc-O3default-debug lib_func (0) sourcing: /home/prasadkr/systemtap/testsuite/systemtap.exelib/libmarkunames= tack.tcl for uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-deb= ug_uprobeslibgcc-O3default-debug Running: stap -w --ldd /home/prasadkr/systemtap/testsuite/systemtap.exelib/= libmarkunamestack.stp ./uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3= default-debug_exe ./libuprobeslibgcc-O3default-debug.so -c ./uprobesgcc-O3d= efault-pie-sep-debug-uprobeslibgcc-O3default-debug_exe spawn stap -w --ldd /home/prasadkr/systemtap/testsuite/systemtap.exelib/lib= markunamestack.stp ./uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3def= ault-debug_exe ./libuprobeslibgcc-O3default-debug.so -c ./uprobesgcc-O3defa= ult-pie-sep-debug-uprobeslibgcc-O3default-debug_exe=0D main=0D exe: main=3D00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0=0D main_func: 3=0D exe: main_func=3D00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0=0D print_ubacktrace exe 0=0D 0x26b80b00 : 00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0+0x1a0/0x3c8 [..= .cc-O3default-pie-sep-debug-uprobeslibgcc-O3default-debug_exe]=0D [0xc000000003f33ea8] [0x0000000000000003] 0x3 (inexact)=0D main_count: 3=0D main_func: 2=0D exe: main_func=3D00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0=0D print_ustack exe 1=0D 0x26b80b00 : 00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0+0x1a0/0x3c8 [..= .cc-O3default-pie-sep-debug-uprobeslibgcc-O3default-debug_exe]=0D 0x0=0D 0x0=0D main_count: 2=0D main_func: 1=0D exe: main_func=3D00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0=0D main_count: 1=0D lib_main=0D lib: lib_main=3D00000010.plt_call.lib_func+0=0D lib_func: 3=0D lib: lib_func=3D00000010.plt_call.lib_func+0=0D print_ubacktrace lib 2=0D 0xfff94830870 : 00000010.plt_call.lib_func+0+0x158/0x290 [...adkr/systemta= p/testsuite/libuprobeslibgcc-O3default-debug.so]=0D [0xc000000003f33ea8] [0x0000000000000003] 0x3 (inexact)=0D func_count: 3=0D lib_func: 2=0D lib: lib_func=3D00000010.plt_call.lib_func+0=0D print_ustack lib 3=0D 0xfff94830870 : 00000010.plt_call.lib_func+0+0x158/0x290 [...adkr/systemta= p/testsuite/libuprobeslibgcc-O3default-debug.so]=0D 0x0=0D 0x0=0D func_count: 2=0D lib_func: 1=0D lib: lib_func=3D00000010.plt_call.lib_func+0=0D func_count: 1=0D FAIL: lib-uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-debug_= uprobeslibgcc-O3default-debug (1) FAIL: mark-uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-debug= _uprobeslibgcc-O3default-debug (0) FAIL: uname-uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-debu= g_uprobeslibgcc-O3default-debug (0) FAIL: ustack-uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-deb= ug_uprobeslibgcc-O3default-debug print (0) FAIL: ustack-uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-deb= ug_uprobeslibgcc-O3default-debug main (0) FAIL: ustack-uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-deb= ug_uprobeslibgcc-O3default-debug main_func (0) FAIL: ustack-uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-deb= ug_uprobeslibgcc-O3default-debug lib_main (0) FAIL: ustack-uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-deb= ug_uprobeslibgcc-O3default-debug lib_func (0) sourcing: /home/prasadkr/systemtap/testsuite/systemtap.exelib/libmarkunames= tack.tcl for uprobesgcc-O3default-debug-uprobeslibgcc-O3default-sep-debug_u= probeslibgcc-O3default-sep-debug Running: stap -w --ldd /home/prasadkr/systemtap/testsuite/systemtap.exelib/= libmarkunamestack.stp ./uprobesgcc-O3default-debug-uprobeslibgcc-O3default-= sep-debug_exe ./libuprobeslibgcc-O3default-sep-debug.so -c ./uprobesgcc-O3d= efault-debug-uprobeslibgcc-O3default-sep-debug_exe spawn stap -w --ldd /home/prasadkr/systemtap/testsuite/systemtap.exelib/lib= markunamestack.stp ./uprobesgcc-O3default-debug-uprobeslibgcc-O3default-sep= -debug_exe ./libuprobeslibgcc-O3default-sep-debug.so -c ./uprobesgcc-O3defa= ult-debug-uprobeslibgcc-O3default-sep-debug_exe=0D main=0D exe: main=3D00000011.plt_call.__libc_start_main@@GLIBC_2.3+0=0D main_func: 3=0D exe: main_func=3D00000011.plt_call.__libc_start_main@@GLIBC_2.3+0=0D print_ubacktrace exe 0=0D 0x100006a0 : 00000011.plt_call.__libc_start_main@@GLIBC_2.3+0+0x188/0x3b0 = [...besgcc-O3default-debug-uprobeslibgcc-O3default-sep-debug_exe]=0D [0xc000000131583ea8] [0x0000000000000003] 0x3 (inexact)=0D main_count: 3=0D main_func: 2=0D exe: main_func=3D00000011.plt_call.__libc_start_main@@GLIBC_2.3+0=0D print_ustack exe 1=0D 0x100006a0 : 00000011.plt_call.__libc_start_main@@GLIBC_2.3+0+0x188/0x3b0 = [...besgcc-O3default-debug-uprobeslibgcc-O3default-sep-debug_exe]=0D 0x0=0D 0x0=0D main_count: 2=0D main_func: 1=0D exe: main_func=3D00000011.plt_call.__libc_start_main@@GLIBC_2.3+0=0D main_count: 1=0D lib_main=0D lib: lib_main=3D00000010.plt_call.lib_func+0=0D lib_func: 3=0D lib: lib_func=3D00000010.plt_call.lib_func+0=0D print_ubacktrace lib 2=0D 0xfffb3080870 : 00000010.plt_call.lib_func+0+0x158/0x290 [.../systemtap/te= stsuite/libuprobeslibgcc-O3default-sep-debug.so]=0D [0xc000000131583ea8] [0x0000000000000003] 0x3 (inexact)=0D func_count: 3=0D lib_func: 2=0D lib: lib_func=3D00000010.plt_call.lib_func+0=0D print_ustack lib 3=0D 0xfffb3080870 : 00000010.plt_call.lib_func+0+0x158/0x290 [.../systemtap/te= stsuite/libuprobeslibgcc-O3default-sep-debug.so]=0D 0x0=0D 0x0=0D func_count: 2=0D lib_func: 1=0D lib: lib_func=3D00000010.plt_call.lib_func+0=0D func_count: 1=0D FAIL: lib-uprobesgcc-O3default-debug-uprobeslibgcc-O3default-sep-debug_upro= beslibgcc-O3default-sep-debug (1) FAIL: mark-uprobesgcc-O3default-debug-uprobeslibgcc-O3default-sep-debug_upr= obeslibgcc-O3default-sep-debug (0) FAIL: uname-uprobesgcc-O3default-debug-uprobeslibgcc-O3default-sep-debug_up= robeslibgcc-O3default-sep-debug (0) FAIL: ustack-uprobesgcc-O3default-debug-uprobeslibgcc-O3default-sep-debug_u= probeslibgcc-O3default-sep-debug print (0) FAIL: ustack-uprobesgcc-O3default-debug-uprobeslibgcc-O3default-sep-debug_u= probeslibgcc-O3default-sep-debug main (0) FAIL: ustack-uprobesgcc-O3default-debug-uprobeslibgcc-O3default-sep-debug_u= probeslibgcc-O3default-sep-debug main_func (0) FAIL: ustack-uprobesgcc-O3default-debug-uprobeslibgcc-O3default-sep-debug_u= probeslibgcc-O3default-sep-debug lib_main (0) FAIL: ustack-uprobesgcc-O3default-debug-uprobeslibgcc-O3default-sep-debug_u= probeslibgcc-O3default-sep-debug lib_func (0) sourcing: /home/prasadkr/systemtap/testsuite/systemtap.exelib/libmarkunames= tack.tcl for uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-sep-deb= ug_uprobeslibgcc-O3default-sep-debug Running: stap -w --ldd /home/prasadkr/systemtap/testsuite/systemtap.exelib/= libmarkunamestack.stp ./uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3defa= ult-sep-debug_exe ./libuprobeslibgcc-O3default-sep-debug.so -c ./uprobesgcc= -O3default-sep-debug-uprobeslibgcc-O3default-sep-debug_exe spawn stap -w --ldd /home/prasadkr/systemtap/testsuite/systemtap.exelib/lib= markunamestack.stp ./uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default= -sep-debug_exe ./libuprobeslibgcc-O3default-sep-debug.so -c ./uprobesgcc-O3= default-sep-debug-uprobeslibgcc-O3default-sep-debug_exe=0D main=0D exe: main=3D00000011.plt_call.__libc_start_main@@GLIBC_2.3+0=0D main_func: 3=0D exe: main_func=3D00000011.plt_call.__libc_start_main@@GLIBC_2.3+0=0D print_ubacktrace exe 0=0D 0x100006a0 : 00000011.plt_call.__libc_start_main@@GLIBC_2.3+0+0x188/0x3b0 = [...cc-O3default-sep-debug-uprobeslibgcc-O3default-sep-debug_exe]=0D [0xc000000003bc7ea8] [0x0000000000000003] 0x3 (inexact)=0D main_count: 3=0D main_func: 2=0D exe: main_func=3D00000011.plt_call.__libc_start_main@@GLIBC_2.3+0=0D print_ustack exe 1=0D 0x100006a0 : 00000011.plt_call.__libc_start_main@@GLIBC_2.3+0+0x188/0x3b0 = [...cc-O3default-sep-debug-uprobeslibgcc-O3default-sep-debug_exe]=0D 0x0=0D 0x0=0D main_count: 2=0D main_func: 1=0D exe: main_func=3D00000011.plt_call.__libc_start_main@@GLIBC_2.3+0=0D main_count: 1=0D lib_main=0D lib: lib_main=3D00000010.plt_call.lib_func+0=0D lib_func: 3=0D lib: lib_func=3D00000010.plt_call.lib_func+0=0D print_ubacktrace lib 2=0D 0xfff94260870 : 00000010.plt_call.lib_func+0+0x158/0x290 [.../systemtap/te= stsuite/libuprobeslibgcc-O3default-sep-debug.so]=0D [0xc000000003bc7ea8] [0x0000000000000003] 0x3 (inexact)=0D func_count: 3=0D lib_func: 2=0D lib: lib_func=3D00000010.plt_call.lib_func+0=0D print_ustack lib 3=0D 0xfff94260870 : 00000010.plt_call.lib_func+0+0x158/0x290 [.../systemtap/te= stsuite/libuprobeslibgcc-O3default-sep-debug.so]=0D 0x0=0D 0x0=0D func_count: 2=0D lib_func: 1=0D lib: lib_func=3D00000010.plt_call.lib_func+0=0D func_count: 1=0D FAIL: lib-uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-sep-debug_= uprobeslibgcc-O3default-sep-debug (1) FAIL: mark-uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-sep-debug= _uprobeslibgcc-O3default-sep-debug (0) FAIL: uname-uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-sep-debu= g_uprobeslibgcc-O3default-sep-debug (0) FAIL: ustack-uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-sep-deb= ug_uprobeslibgcc-O3default-sep-debug print (0) FAIL: ustack-uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-sep-deb= ug_uprobeslibgcc-O3default-sep-debug main (0) FAIL: ustack-uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-sep-deb= ug_uprobeslibgcc-O3default-sep-debug main_func (0) FAIL: ustack-uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-sep-deb= ug_uprobeslibgcc-O3default-sep-debug lib_main (0) FAIL: ustack-uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-sep-deb= ug_uprobeslibgcc-O3default-sep-debug lib_func (0) sourcing: /home/prasadkr/systemtap/testsuite/systemtap.exelib/libmarkunames= tack.tcl for uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-sep-deb= ug_uprobeslibgcc-O3default-sep-debug Running: stap -w --ldd /home/prasadkr/systemtap/testsuite/systemtap.exelib/= libmarkunamestack.stp ./uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3defa= ult-sep-debug_exe ./libuprobeslibgcc-O3default-sep-debug.so -c ./uprobesgcc= -O3default-pie-debug-uprobeslibgcc-O3default-sep-debug_exe spawn stap -w --ldd /home/prasadkr/systemtap/testsuite/systemtap.exelib/lib= markunamestack.stp ./uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default= -sep-debug_exe ./libuprobeslibgcc-O3default-sep-debug.so -c ./uprobesgcc-O3= default-pie-debug-uprobeslibgcc-O3default-sep-debug_exe=0D main=0D exe: main=3D00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0=0D main_func: 3=0D exe: main_func=3D00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0=0D print_ubacktrace exe 0=0D 0x3c900b10 : 00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0+0x1a0/0x3c8 [..= .cc-O3default-pie-debug-uprobeslibgcc-O3default-sep-debug_exe]=0D [0xc000000131fdfea8] [0x0000000000000003] 0x3 (inexact)=0D main_count: 3=0D main_func: 2=0D exe: main_func=3D00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0=0D print_ustack exe 1=0D 0x3c900b10 : 00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0+0x1a0/0x3c8 [..= .cc-O3default-pie-debug-uprobeslibgcc-O3default-sep-debug_exe]=0D 0x0=0D 0x0=0D main_count: 2=0D main_func: 1=0D exe: main_func=3D00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0=0D main_count: 1=0D lib_main=0D lib: lib_main=3D00000010.plt_call.lib_func+0=0D lib_func: 3=0D lib: lib_func=3D00000010.plt_call.lib_func+0=0D print_ubacktrace lib 2=0D 0xfffaf230870 : 00000010.plt_call.lib_func+0+0x158/0x290 [.../systemtap/te= stsuite/libuprobeslibgcc-O3default-sep-debug.so]=0D [0xc000000131fdfea8] [0x0000000000000003] 0x3 (inexact)=0D func_count: 3=0D lib_func: 2=0D lib: lib_func=3D00000010.plt_call.lib_func+0=0D print_ustack lib 3=0D 0xfffaf230870 : 00000010.plt_call.lib_func+0+0x158/0x290 [.../systemtap/te= stsuite/libuprobeslibgcc-O3default-sep-debug.so]=0D 0x0=0D 0x0=0D func_count: 2=0D lib_func: 1=0D lib: lib_func=3D00000010.plt_call.lib_func+0=0D func_count: 1=0D FAIL: lib-uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-sep-debug_= uprobeslibgcc-O3default-sep-debug (1) FAIL: mark-uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-sep-debug= _uprobeslibgcc-O3default-sep-debug (0) FAIL: uname-uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-sep-debu= g_uprobeslibgcc-O3default-sep-debug (0) FAIL: ustack-uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-sep-deb= ug_uprobeslibgcc-O3default-sep-debug print (0) FAIL: ustack-uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-sep-deb= ug_uprobeslibgcc-O3default-sep-debug main (0) FAIL: ustack-uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-sep-deb= ug_uprobeslibgcc-O3default-sep-debug main_func (0) FAIL: ustack-uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-sep-deb= ug_uprobeslibgcc-O3default-sep-debug lib_main (0) FAIL: ustack-uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-sep-deb= ug_uprobeslibgcc-O3default-sep-debug lib_func (0) sourcing: /home/prasadkr/systemtap/testsuite/systemtap.exelib/libmarkunames= tack.tcl for uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-sep= -debug_uprobeslibgcc-O3default-sep-debug Running: stap -w --ldd /home/prasadkr/systemtap/testsuite/systemtap.exelib/= libmarkunamestack.stp ./uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3= default-sep-debug_exe ./libuprobeslibgcc-O3default-sep-debug.so -c ./uprobe= sgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-sep-debug_exe spawn stap -w --ldd /home/prasadkr/systemtap/testsuite/systemtap.exelib/lib= markunamestack.stp ./uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3def= ault-sep-debug_exe ./libuprobeslibgcc-O3default-sep-debug.so -c ./uprobesgc= c-O3default-pie-sep-debug-uprobeslibgcc-O3default-sep-debug_exe=0D main=0D exe: main=3D00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0=0D main_func: 3=0D exe: main_func=3D00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0=0D print_ubacktrace exe 0=0D 0x38500b10 : 00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0+0x1a0/0x3c8 [..= .3default-pie-sep-debug-uprobeslibgcc-O3default-sep-debug_exe]=0D [0xc000000131fdfea8] [0x0000000000000003] 0x3 (inexact)=0D main_count: 3=0D main_func: 2=0D exe: main_func=3D00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0=0D print_ustack exe 1=0D 0x38500b10 : 00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0+0x1a0/0x3c8 [..= .3default-pie-sep-debug-uprobeslibgcc-O3default-sep-debug_exe]=0D 0x0=0D 0x0=0D main_count: 2=0D main_func: 1=0D exe: main_func=3D00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0=0D main_count: 1=0D lib_main=0D lib: lib_main=3D00000010.plt_call.lib_func+0=0D lib_func: 3=0D lib: lib_func=3D00000010.plt_call.lib_func+0=0D print_ubacktrace lib 2=0D 0xfff9ead0870 : 00000010.plt_call.lib_func+0+0x158/0x290 [.../systemtap/te= stsuite/libuprobeslibgcc-O3default-sep-debug.so]=0D [0xc000000131fdfea8] [0x0000000000000003] 0x3 (inexact)=0D func_count: 3=0D lib_func: 2=0D lib: lib_func=3D00000010.plt_call.lib_func+0=0D print_ustack lib 3=0D 0xfff9ead0870 : 00000010.plt_call.lib_func+0+0x158/0x290 [.../systemtap/te= stsuite/libuprobeslibgcc-O3default-sep-debug.so]=0D 0x0=0D 0x0=0D func_count: 2=0D lib_func: 1=0D lib: lib_func=3D00000010.plt_call.lib_func+0=0D func_count: 1=0D FAIL: lib-uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-sep-de= bug_uprobeslibgcc-O3default-sep-debug (1) FAIL: mark-uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-sep-d= ebug_uprobeslibgcc-O3default-sep-debug (0) FAIL: uname-uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-sep-= debug_uprobeslibgcc-O3default-sep-debug (0) FAIL: ustack-uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-sep= -debug_uprobeslibgcc-O3default-sep-debug print (0) FAIL: ustack-uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-sep= -debug_uprobeslibgcc-O3default-sep-debug main (0) FAIL: ustack-uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-sep= -debug_uprobeslibgcc-O3default-sep-debug main_func (0) FAIL: ustack-uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-sep= -debug_uprobeslibgcc-O3default-sep-debug lib_main (0) FAIL: ustack-uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-sep= -debug_uprobeslibgcc-O3default-sep-debug lib_func (0) sourcing: /home/prasadkr/systemtap/testsuite/systemtap.exelib/libmarkunames= tack.tcl for uprobesgcc-O3default-debug-uprobeslibgcc-O3default-prelink-deb= ug_uprobeslibgcc-O3default-prelink-debug Running: stap -w --ldd /home/prasadkr/systemtap/testsuite/systemtap.exelib/= libmarkunamestack.stp ./uprobesgcc-O3default-debug-uprobeslibgcc-O3default-= prelink-debug_exe ./libuprobeslibgcc-O3default-prelink-debug.so -c ./uprobe= sgcc-O3default-debug-uprobeslibgcc-O3default-prelink-debug_exe spawn stap -w --ldd /home/prasadkr/systemtap/testsuite/systemtap.exelib/lib= markunamestack.stp ./uprobesgcc-O3default-debug-uprobeslibgcc-O3default-pre= link-debug_exe ./libuprobeslibgcc-O3default-prelink-debug.so -c ./uprobesgc= c-O3default-debug-uprobeslibgcc-O3default-prelink-debug_exe=0D main=0D exe: main=3D00000011.plt_call.__libc_start_main@@GLIBC_2.3+0=0D main_func: 3=0D exe: main_func=3D00000011.plt_call.__libc_start_main@@GLIBC_2.3+0=0D print_ubacktrace exe 0=0D 0x100006b0 : 00000011.plt_call.__libc_start_main@@GLIBC_2.3+0+0x188/0x3b0 = [...cc-O3default-debug-uprobeslibgcc-O3default-prelink-debug_exe]=0D [0xc000000132f93ea8] [0x0000000000000003] 0x3 (inexact)=0D main_count: 3=0D main_func: 2=0D exe: main_func=3D00000011.plt_call.__libc_start_main@@GLIBC_2.3+0=0D print_ustack exe 1=0D 0x100006b0 : 00000011.plt_call.__libc_start_main@@GLIBC_2.3+0+0x188/0x3b0 = [...cc-O3default-debug-uprobeslibgcc-O3default-prelink-debug_exe]=0D 0x0=0D 0x0=0D main_count: 2=0D main_func: 1=0D exe: main_func=3D00000011.plt_call.__libc_start_main@@GLIBC_2.3+0=0D main_count: 1=0D lib_main=0D lib: lib_main=3D00000010.plt_call.lib_func+0=0D lib_func: 3=0D lib: lib_func=3D00000010.plt_call.lib_func+0=0D print_ubacktrace lib 2=0D 0x6400870 : 00000010.plt_call.lib_func+0+0x158/0x290 [...temtap/testsuite/= libuprobeslibgcc-O3default-prelink-debug.so]=0D [0xc000000132f93ea8] [0x0000000000000003] 0x3 (inexact)=0D func_count: 3=0D lib_func: 2=0D lib: lib_func=3D00000010.plt_call.lib_func+0=0D print_ustack lib 3=0D 0x6400870 : 00000010.plt_call.lib_func+0+0x158/0x290 [...temtap/testsuite/= libuprobeslibgcc-O3default-prelink-debug.so]=0D 0x0=0D 0x0=0D func_count: 2=0D lib_func: 1=0D lib: lib_func=3D00000010.plt_call.lib_func+0=0D func_count: 1=0D FAIL: lib-uprobesgcc-O3default-debug-uprobeslibgcc-O3default-prelink-debug_= uprobeslibgcc-O3default-prelink-debug (1) FAIL: mark-uprobesgcc-O3default-debug-uprobeslibgcc-O3default-prelink-debug= _uprobeslibgcc-O3default-prelink-debug (0) FAIL: uname-uprobesgcc-O3default-debug-uprobeslibgcc-O3default-prelink-debu= g_uprobeslibgcc-O3default-prelink-debug (0) FAIL: ustack-uprobesgcc-O3default-debug-uprobeslibgcc-O3default-prelink-deb= ug_uprobeslibgcc-O3default-prelink-debug print (0) FAIL: ustack-uprobesgcc-O3default-debug-uprobeslibgcc-O3default-prelink-deb= ug_uprobeslibgcc-O3default-prelink-debug main (0) FAIL: ustack-uprobesgcc-O3default-debug-uprobeslibgcc-O3default-prelink-deb= ug_uprobeslibgcc-O3default-prelink-debug main_func (0) FAIL: ustack-uprobesgcc-O3default-debug-uprobeslibgcc-O3default-prelink-deb= ug_uprobeslibgcc-O3default-prelink-debug lib_main (0) FAIL: ustack-uprobesgcc-O3default-debug-uprobeslibgcc-O3default-prelink-deb= ug_uprobeslibgcc-O3default-prelink-debug lib_func (0) sourcing: /home/prasadkr/systemtap/testsuite/systemtap.exelib/libmarkunames= tack.tcl for uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-prelink= -debug_uprobeslibgcc-O3default-prelink-debug Running: stap -w --ldd /home/prasadkr/systemtap/testsuite/systemtap.exelib/= libmarkunamestack.stp ./uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3defa= ult-prelink-debug_exe ./libuprobeslibgcc-O3default-prelink-debug.so -c ./up= robesgcc-O3default-sep-debug-uprobeslibgcc-O3default-prelink-debug_exe spawn stap -w --ldd /home/prasadkr/systemtap/testsuite/systemtap.exelib/lib= markunamestack.stp ./uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default= -prelink-debug_exe ./libuprobeslibgcc-O3default-prelink-debug.so -c ./uprob= esgcc-O3default-sep-debug-uprobeslibgcc-O3default-prelink-debug_exe=0D main=0D exe: main=3D00000011.plt_call.__libc_start_main@@GLIBC_2.3+0=0D main_func: 3=0D exe: main_func=3D00000011.plt_call.__libc_start_main@@GLIBC_2.3+0=0D print_ubacktrace exe 0=0D 0x100006b0 : 00000011.plt_call.__libc_start_main@@GLIBC_2.3+0+0x188/0x3b0 = [...3default-sep-debug-uprobeslibgcc-O3default-prelink-debug_exe]=0D [0xc000000132fe3ea8] [0x0000000000000003] 0x3 (inexact)=0D main_count: 3=0D main_func: 2=0D exe: main_func=3D00000011.plt_call.__libc_start_main@@GLIBC_2.3+0=0D print_ustack exe 1=0D 0x100006b0 : 00000011.plt_call.__libc_start_main@@GLIBC_2.3+0+0x188/0x3b0 = [...3default-sep-debug-uprobeslibgcc-O3default-prelink-debug_exe]=0D 0x0=0D 0x0=0D main_count: 2=0D main_func: 1=0D exe: main_func=3D00000011.plt_call.__libc_start_main@@GLIBC_2.3+0=0D main_count: 1=0D lib_main=0D lib: lib_main=3D00000010.plt_call.lib_func+0=0D lib_func: 3=0D lib: lib_func=3D00000010.plt_call.lib_func+0=0D print_ubacktrace lib 2=0D 0x6400870 : 00000010.plt_call.lib_func+0+0x158/0x290 [...temtap/testsuite/= libuprobeslibgcc-O3default-prelink-debug.so]=0D [0xc000000132fe3ea8] [0x0000000000000003] 0x3 (inexact)=0D func_count: 3=0D lib_func: 2=0D lib: lib_func=3D00000010.plt_call.lib_func+0=0D print_ustack lib 3=0D 0x6400870 : 00000010.plt_call.lib_func+0+0x158/0x290 [...temtap/testsuite/= libuprobeslibgcc-O3default-prelink-debug.so]=0D 0x0=0D 0x0=0D func_count: 2=0D lib_func: 1=0D lib: lib_func=3D00000010.plt_call.lib_func+0=0D func_count: 1=0D FAIL: lib-uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-prelink-de= bug_uprobeslibgcc-O3default-prelink-debug (1) FAIL: mark-uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-prelink-d= ebug_uprobeslibgcc-O3default-prelink-debug (0) FAIL: uname-uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-prelink-= debug_uprobeslibgcc-O3default-prelink-debug (0) FAIL: ustack-uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-prelink= -debug_uprobeslibgcc-O3default-prelink-debug print (0) FAIL: ustack-uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-prelink= -debug_uprobeslibgcc-O3default-prelink-debug main (0) FAIL: ustack-uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-prelink= -debug_uprobeslibgcc-O3default-prelink-debug main_func (0) FAIL: ustack-uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-prelink= -debug_uprobeslibgcc-O3default-prelink-debug lib_main (0) FAIL: ustack-uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-prelink= -debug_uprobeslibgcc-O3default-prelink-debug lib_func (0) sourcing: /home/prasadkr/systemtap/testsuite/systemtap.exelib/libmarkunames= tack.tcl for uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-prelink= -debug_uprobeslibgcc-O3default-prelink-debug Running: stap -w --ldd /home/prasadkr/systemtap/testsuite/systemtap.exelib/= libmarkunamestack.stp ./uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3defa= ult-prelink-debug_exe ./libuprobeslibgcc-O3default-prelink-debug.so -c ./up= robesgcc-O3default-pie-debug-uprobeslibgcc-O3default-prelink-debug_exe spawn stap -w --ldd /home/prasadkr/systemtap/testsuite/systemtap.exelib/lib= markunamestack.stp ./uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default= -prelink-debug_exe ./libuprobeslibgcc-O3default-prelink-debug.so -c ./uprob= esgcc-O3default-pie-debug-uprobeslibgcc-O3default-prelink-debug_exe=0D main=0D exe: main=3D00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0=0D main_func: 3=0D exe: main_func=3D00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0=0D print_ubacktrace exe 0=0D 0x25ba0b10 : 00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0+0x1a0/0x3c8 [..= .3default-pie-debug-uprobeslibgcc-O3default-prelink-debug_exe]=0D [0xc00000013112fea8] [0x0000000000000003] 0x3 (inexact)=0D main_count: 3=0D main_func: 2=0D exe: main_func=3D00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0=0D print_ustack exe 1=0D 0x25ba0b10 : 00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0+0x1a0/0x3c8 [..= .3default-pie-debug-uprobeslibgcc-O3default-prelink-debug_exe]=0D 0x0=0D 0x0=0D main_count: 2=0D main_func: 1=0D exe: main_func=3D00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0=0D main_count: 1=0D lib_main=0D lib: lib_main=3D00000010.plt_call.lib_func+0=0D lib_func: 3=0D lib: lib_func=3D00000010.plt_call.lib_func+0=0D print_ubacktrace lib 2=0D 0xfff9df50870 : 00000010.plt_call.lib_func+0+0x158/0x290 [...temtap/testsu= ite/libuprobeslibgcc-O3default-prelink-debug.so]=0D [0xc00000013112fea8] [0x0000000000000003] 0x3 (inexact)=0D func_count: 3=0D lib_func: 2=0D lib: lib_func=3D00000010.plt_call.lib_func+0=0D print_ustack lib 3=0D 0xfff9df50870 : 00000010.plt_call.lib_func+0+0x158/0x290 [...temtap/testsu= ite/libuprobeslibgcc-O3default-prelink-debug.so]=0D 0x0=0D 0x0=0D func_count: 2=0D lib_func: 1=0D lib: lib_func=3D00000010.plt_call.lib_func+0=0D func_count: 1=0D FAIL: lib-uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-prelink-de= bug_uprobeslibgcc-O3default-prelink-debug (1) FAIL: mark-uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-prelink-d= ebug_uprobeslibgcc-O3default-prelink-debug (0) FAIL: uname-uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-prelink-= debug_uprobeslibgcc-O3default-prelink-debug (0) FAIL: ustack-uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-prelink= -debug_uprobeslibgcc-O3default-prelink-debug print (0) FAIL: ustack-uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-prelink= -debug_uprobeslibgcc-O3default-prelink-debug main (0) FAIL: ustack-uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-prelink= -debug_uprobeslibgcc-O3default-prelink-debug main_func (0) FAIL: ustack-uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-prelink= -debug_uprobeslibgcc-O3default-prelink-debug lib_main (0) FAIL: ustack-uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-prelink= -debug_uprobeslibgcc-O3default-prelink-debug lib_func (0) sourcing: /home/prasadkr/systemtap/testsuite/systemtap.exelib/libmarkunames= tack.tcl for uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-pre= link-debug_uprobeslibgcc-O3default-prelink-debug Running: stap -w --ldd /home/prasadkr/systemtap/testsuite/systemtap.exelib/= libmarkunamestack.stp ./uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3= default-prelink-debug_exe ./libuprobeslibgcc-O3default-prelink-debug.so -c = ./uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-prelink-debug_= exe spawn stap -w --ldd /home/prasadkr/systemtap/testsuite/systemtap.exelib/lib= markunamestack.stp ./uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3def= ault-prelink-debug_exe ./libuprobeslibgcc-O3default-prelink-debug.so -c ./u= probesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-prelink-debug_exe= =0D main=0D exe: main=3D00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0=0D main_func: 3=0D exe: main_func=3D00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0=0D print_ubacktrace exe 0=0D 0x53be0b10 : 00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0+0x1a0/0x3c8 [..= .ault-pie-sep-debug-uprobeslibgcc-O3default-prelink-debug_exe]=0D [0xc000000003063ea8] [0x0000000000000003] 0x3 (inexact)=0D main_count: 3=0D main_func: 2=0D exe: main_func=3D00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0=0D print_ustack exe 1=0D 0x53be0b10 : 00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0+0x1a0/0x3c8 [..= .ault-pie-sep-debug-uprobeslibgcc-O3default-prelink-debug_exe]=0D 0x0=0D 0x0=0D main_count: 2=0D main_func: 1=0D exe: main_func=3D00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0=0D main_count: 1=0D lib_main=0D lib: lib_main=3D00000010.plt_call.lib_func+0=0D lib_func: 3=0D lib: lib_func=3D00000010.plt_call.lib_func+0=0D print_ubacktrace lib 2=0D 0xfff94350870 : 00000010.plt_call.lib_func+0+0x158/0x290 [...temtap/testsu= ite/libuprobeslibgcc-O3default-prelink-debug.so]=0D [0xc000000003063ea8] [0x0000000000000003] 0x3 (inexact)=0D func_count: 3=0D lib_func: 2=0D lib: lib_func=3D00000010.plt_call.lib_func+0=0D print_ustack lib 3=0D 0xfff94350870 : 00000010.plt_call.lib_func+0+0x158/0x290 [...temtap/testsu= ite/libuprobeslibgcc-O3default-prelink-debug.so]=0D 0x0=0D 0x0=0D func_count: 2=0D lib_func: 1=0D lib: lib_func=3D00000010.plt_call.lib_func+0=0D func_count: 1=0D FAIL: lib-uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-prelin= k-debug_uprobeslibgcc-O3default-prelink-debug (1) FAIL: mark-uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-preli= nk-debug_uprobeslibgcc-O3default-prelink-debug (0) FAIL: uname-uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-prel= ink-debug_uprobeslibgcc-O3default-prelink-debug (0) FAIL: ustack-uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-pre= link-debug_uprobeslibgcc-O3default-prelink-debug print (0) FAIL: ustack-uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-pre= link-debug_uprobeslibgcc-O3default-prelink-debug main (0) FAIL: ustack-uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-pre= link-debug_uprobeslibgcc-O3default-prelink-debug main_func (0) FAIL: ustack-uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-pre= link-debug_uprobeslibgcc-O3default-prelink-debug lib_main (0) FAIL: ustack-uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-pre= link-debug_uprobeslibgcc-O3default-prelink-debug lib_func (0) sourcing: /home/prasadkr/systemtap/testsuite/systemtap.exelib/libmarkunames= tack.tcl for uprobesgcc-O3default-debug-uprobeslibgcc-O3default-prelink-sep= -debug_uprobeslibgcc-O3default-prelink-sep-debug Running: stap -w --ldd /home/prasadkr/systemtap/testsuite/systemtap.exelib/= libmarkunamestack.stp ./uprobesgcc-O3default-debug-uprobeslibgcc-O3default-= prelink-sep-debug_exe ./libuprobeslibgcc-O3default-prelink-sep-debug.so -c = ./uprobesgcc-O3default-debug-uprobeslibgcc-O3default-prelink-sep-debug_exe spawn stap -w --ldd /home/prasadkr/systemtap/testsuite/systemtap.exelib/lib= markunamestack.stp ./uprobesgcc-O3default-debug-uprobeslibgcc-O3default-pre= link-sep-debug_exe ./libuprobeslibgcc-O3default-prelink-sep-debug.so -c ./u= probesgcc-O3default-debug-uprobeslibgcc-O3default-prelink-sep-debug_exe=0D main=0D exe: main=3D00000011.plt_call.__libc_start_main@@GLIBC_2.3+0=0D main_func: 3=0D exe: main_func=3D00000011.plt_call.__libc_start_main@@GLIBC_2.3+0=0D print_ubacktrace exe 0=0D 0x100006b0 : 00000011.plt_call.__libc_start_main@@GLIBC_2.3+0+0x188/0x3b0 = [...3default-debug-uprobeslibgcc-O3default-prelink-sep-debug_exe]=0D [0xc000000003bdfea8] [0x0000000000000003] 0x3 (inexact)=0D main_count: 3=0D main_func: 2=0D exe: main_func=3D00000011.plt_call.__libc_start_main@@GLIBC_2.3+0=0D print_ustack exe 1=0D 0x100006b0 : 00000011.plt_call.__libc_start_main@@GLIBC_2.3+0+0x188/0x3b0 = [...3default-debug-uprobeslibgcc-O3default-prelink-sep-debug_exe]=0D 0x0=0D 0x0=0D main_count: 2=0D main_func: 1=0D exe: main_func=3D00000011.plt_call.__libc_start_main@@GLIBC_2.3+0=0D main_count: 1=0D lib_main=0D lib: lib_main=3D00000010.plt_call.lib_func+0=0D lib_func: 3=0D lib: lib_func=3D00000010.plt_call.lib_func+0=0D print_ubacktrace lib 2=0D 0x6400870 : 00000010.plt_call.lib_func+0+0x158/0x290 [...ap/testsuite/libu= probeslibgcc-O3default-prelink-sep-debug.so]=0D [0xc000000003bdfea8] [0x0000000000000003] 0x3 (inexact)=0D lib_func: 2=0D lib: lib_func=3D00000010.plt_call.lib_func+0=0D print_ustack lib 3=0D 0x6400870 : 00000010.plt_call.lib_func+0+0x158/0x290 [...ap/testsuite/libu= probeslibgcc-O3default-prelink-sep-debug.so]=0D 0x0=0D 0x0=0D lib_func: 1=0D lib: lib_func=3D00000010.plt_call.lib_func+0=0D FAIL: lib-uprobesgcc-O3default-debug-uprobeslibgcc-O3default-prelink-sep-de= bug_uprobeslibgcc-O3default-prelink-sep-debug (1) FAIL: mark-uprobesgcc-O3default-debug-uprobeslibgcc-O3default-prelink-sep-d= ebug_uprobeslibgcc-O3default-prelink-sep-debug (0) FAIL: uname-uprobesgcc-O3default-debug-uprobeslibgcc-O3default-prelink-sep-= debug_uprobeslibgcc-O3default-prelink-sep-debug (0) FAIL: ustack-uprobesgcc-O3default-debug-uprobeslibgcc-O3default-prelink-sep= -debug_uprobeslibgcc-O3default-prelink-sep-debug print (0) FAIL: ustack-uprobesgcc-O3default-debug-uprobeslibgcc-O3default-prelink-sep= -debug_uprobeslibgcc-O3default-prelink-sep-debug main (0) FAIL: ustack-uprobesgcc-O3default-debug-uprobeslibgcc-O3default-prelink-sep= -debug_uprobeslibgcc-O3default-prelink-sep-debug main_func (0) FAIL: ustack-uprobesgcc-O3default-debug-uprobeslibgcc-O3default-prelink-sep= -debug_uprobeslibgcc-O3default-prelink-sep-debug lib_main (0) FAIL: ustack-uprobesgcc-O3default-debug-uprobeslibgcc-O3default-prelink-sep= -debug_uprobeslibgcc-O3default-prelink-sep-debug lib_func (0) sourcing: /home/prasadkr/systemtap/testsuite/systemtap.exelib/libmarkunames= tack.tcl for uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-prelink= -sep-debug_uprobeslibgcc-O3default-prelink-sep-debug Running: stap -w --ldd /home/prasadkr/systemtap/testsuite/systemtap.exelib/= libmarkunamestack.stp ./uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3defa= ult-prelink-sep-debug_exe ./libuprobeslibgcc-O3default-prelink-sep-debug.so= -c ./uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-prelink-sep-de= bug_exe spawn stap -w --ldd /home/prasadkr/systemtap/testsuite/systemtap.exelib/lib= markunamestack.stp ./uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default= -prelink-sep-debug_exe ./libuprobeslibgcc-O3default-prelink-sep-debug.so -c= ./uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-prelink-sep-debug= _exe=0D main=0D exe: main=3D00000011.plt_call.__libc_start_main@@GLIBC_2.3+0=0D main_func: 3=0D exe: main_func=3D00000011.plt_call.__libc_start_main@@GLIBC_2.3+0=0D print_ubacktrace exe 0=0D 0x100006b0 : 00000011.plt_call.__libc_start_main@@GLIBC_2.3+0+0x188/0x3b0 = [...ault-sep-debug-uprobeslibgcc-O3default-prelink-sep-debug_exe]=0D [0xc000000003457ea8] [0x0000000000000003] 0x3 (inexact)=0D main_count: 3=0D main_func: 2=0D exe: main_func=3D00000011.plt_call.__libc_start_main@@GLIBC_2.3+0=0D print_ustack exe 1=0D 0x100006b0 : 00000011.plt_call.__libc_start_main@@GLIBC_2.3+0+0x188/0x3b0 = [...ault-sep-debug-uprobeslibgcc-O3default-prelink-sep-debug_exe]=0D 0x0=0D 0x0=0D main_count: 2=0D main_func: 1=0D exe: main_func=3D00000011.plt_call.__libc_start_main@@GLIBC_2.3+0=0D main_count: 1=0D lib_main=0D lib: lib_main=3D00000010.plt_call.lib_func+0=0D lib_func: 3=0D lib: lib_func=3D00000010.plt_call.lib_func+0=0D print_ubacktrace lib 2=0D 0x6400870 : 00000010.plt_call.lib_func+0+0x158/0x290 [...ap/testsuite/libu= probeslibgcc-O3default-prelink-sep-debug.so]=0D [0xc000000003457ea8] [0x0000000000000003] 0x3 (inexact)=0D lib_func: 2=0D lib: lib_func=3D00000010.plt_call.lib_func+0=0D print_ustack lib 3=0D 0x6400870 : 00000010.plt_call.lib_func+0+0x158/0x290 [...ap/testsuite/libu= probeslibgcc-O3default-prelink-sep-debug.so]=0D 0x0=0D 0x0=0D lib_func: 1=0D lib: lib_func=3D00000010.plt_call.lib_func+0=0D FAIL: lib-uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-prelink-se= p-debug_uprobeslibgcc-O3default-prelink-sep-debug (1) FAIL: mark-uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-prelink-s= ep-debug_uprobeslibgcc-O3default-prelink-sep-debug (0) FAIL: uname-uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-prelink-= sep-debug_uprobeslibgcc-O3default-prelink-sep-debug (0) FAIL: ustack-uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-prelink= -sep-debug_uprobeslibgcc-O3default-prelink-sep-debug print (0) FAIL: ustack-uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-prelink= -sep-debug_uprobeslibgcc-O3default-prelink-sep-debug main (0) FAIL: ustack-uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-prelink= -sep-debug_uprobeslibgcc-O3default-prelink-sep-debug main_func (0) FAIL: ustack-uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-prelink= -sep-debug_uprobeslibgcc-O3default-prelink-sep-debug lib_main (0) FAIL: ustack-uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-prelink= -sep-debug_uprobeslibgcc-O3default-prelink-sep-debug lib_func (0) sourcing: /home/prasadkr/systemtap/testsuite/systemtap.exelib/libmarkunames= tack.tcl for uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-prelink= -sep-debug_uprobeslibgcc-O3default-prelink-sep-debug Running: stap -w --ldd /home/prasadkr/systemtap/testsuite/systemtap.exelib/= libmarkunamestack.stp ./uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3defa= ult-prelink-sep-debug_exe ./libuprobeslibgcc-O3default-prelink-sep-debug.so= -c ./uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-prelink-sep-de= bug_exe spawn stap -w --ldd /home/prasadkr/systemtap/testsuite/systemtap.exelib/lib= markunamestack.stp ./uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default= -prelink-sep-debug_exe ./libuprobeslibgcc-O3default-prelink-sep-debug.so -c= ./uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-prelink-sep-debug= _exe=0D main=0D exe: main=3D00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0=0D main_func: 3=0D exe: main_func=3D00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0=0D print_ubacktrace exe 0=0D 0x4cf40b10 : 00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0+0x1a0/0x3c8 [..= .ault-pie-debug-uprobeslibgcc-O3default-prelink-sep-debug_exe]=0D [0xc0000001315d7ea8] [0x0000000000000003] 0x3 (inexact)=0D main_count: 3=0D main_func: 2=0D exe: main_func=3D00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0=0D print_ustack exe 1=0D 0x4cf40b10 : 00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0+0x1a0/0x3c8 [..= .ault-pie-debug-uprobeslibgcc-O3default-prelink-sep-debug_exe]=0D 0x0=0D 0x0=0D main_count: 2=0D main_func: 1=0D exe: main_func=3D00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0=0D main_count: 1=0D lib_main=0D lib: lib_main=3D00000010.plt_call.lib_func+0=0D lib_func: 3=0D lib: lib_func=3D00000010.plt_call.lib_func+0=0D print_ubacktrace lib 2=0D 0xfff9dc10870 : 00000010.plt_call.lib_func+0+0x158/0x290 [...ap/testsuite/= libuprobeslibgcc-O3default-prelink-sep-debug.so]=0D [0xc0000001315d7ea8] [0x0000000000000003] 0x3 (inexact)=0D lib_func: 2=0D lib: lib_func=3D00000010.plt_call.lib_func+0=0D print_ustack lib 3=0D 0xfff9dc10870 : 00000010.plt_call.lib_func+0+0x158/0x290 [...ap/testsuite/= libuprobeslibgcc-O3default-prelink-sep-debug.so]=0D 0x0=0D 0x0=0D lib_func: 1=0D lib: lib_func=3D00000010.plt_call.lib_func+0=0D FAIL: lib-uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-prelink-se= p-debug_uprobeslibgcc-O3default-prelink-sep-debug (1) FAIL: mark-uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-prelink-s= ep-debug_uprobeslibgcc-O3default-prelink-sep-debug (0) FAIL: uname-uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-prelink-= sep-debug_uprobeslibgcc-O3default-prelink-sep-debug (0) FAIL: ustack-uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-prelink= -sep-debug_uprobeslibgcc-O3default-prelink-sep-debug print (0) FAIL: ustack-uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-prelink= -sep-debug_uprobeslibgcc-O3default-prelink-sep-debug main (0) FAIL: ustack-uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-prelink= -sep-debug_uprobeslibgcc-O3default-prelink-sep-debug main_func (0) FAIL: ustack-uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-prelink= -sep-debug_uprobeslibgcc-O3default-prelink-sep-debug lib_main (0) FAIL: ustack-uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-prelink= -sep-debug_uprobeslibgcc-O3default-prelink-sep-debug lib_func (0) sourcing: /home/prasadkr/systemtap/testsuite/systemtap.exelib/libmarkunames= tack.tcl for uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-pre= link-sep-debug_uprobeslibgcc-O3default-prelink-sep-debug Running: stap -w --ldd /home/prasadkr/systemtap/testsuite/systemtap.exelib/= libmarkunamestack.stp ./uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3= default-prelink-sep-debug_exe ./libuprobeslibgcc-O3default-prelink-sep-debu= g.so -c ./uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-prelin= k-sep-debug_exe spawn stap -w --ldd /home/prasadkr/systemtap/testsuite/systemtap.exelib/lib= markunamestack.stp ./uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3def= ault-prelink-sep-debug_exe ./libuprobeslibgcc-O3default-prelink-sep-debug.s= o -c ./uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-prelink-s= ep-debug_exe=0D main=0D exe: main=3D00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0=0D main_func: 3=0D exe: main_func=3D00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0=0D print_ubacktrace exe 0=0D 0x4a000b10 : 00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0+0x1a0/0x3c8 [..= .-pie-sep-debug-uprobeslibgcc-O3default-prelink-sep-debug_exe]=0D [0xc000000003053ea8] [0x0000000000000003] 0x3 (inexact)=0D main_count: 3=0D main_func: 2=0D exe: main_func=3D00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0=0D print_ustack exe 1=0D 0x4a000b10 : 00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0+0x1a0/0x3c8 [..= .-pie-sep-debug-uprobeslibgcc-O3default-prelink-sep-debug_exe]=0D 0x0=0D 0x0=0D main_count: 2=0D main_func: 1=0D exe: main_func=3D00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0=0D main_count: 1=0D lib_main=0D lib: lib_main=3D00000010.plt_call.lib_func+0=0D lib_func: 3=0D lib: lib_func=3D00000010.plt_call.lib_func+0=0D print_ubacktrace lib 2=0D 0xfffb6430870 : 00000010.plt_call.lib_func+0+0x158/0x290 [...ap/testsuite/= libuprobeslibgcc-O3default-prelink-sep-debug.so]=0D [0xc000000003053ea8] [0x0000000000000003] 0x3 (inexact)=0D lib_func: 2=0D lib: lib_func=3D00000010.plt_call.lib_func+0=0D print_ustack lib 3=0D 0xfffb6430870 : 00000010.plt_call.lib_func+0+0x158/0x290 [...ap/testsuite/= libuprobeslibgcc-O3default-prelink-sep-debug.so]=0D 0x0=0D 0x0=0D lib_func: 1=0D lib: lib_func=3D00000010.plt_call.lib_func+0=0D FAIL: lib-uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-prelin= k-sep-debug_uprobeslibgcc-O3default-prelink-sep-debug (1) FAIL: mark-uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-preli= nk-sep-debug_uprobeslibgcc-O3default-prelink-sep-debug (0) FAIL: uname-uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-prel= ink-sep-debug_uprobeslibgcc-O3default-prelink-sep-debug (0) FAIL: ustack-uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-pre= link-sep-debug_uprobeslibgcc-O3default-prelink-sep-debug print (0) FAIL: ustack-uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-pre= link-sep-debug_uprobeslibgcc-O3default-prelink-sep-debug main (0) FAIL: ustack-uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-pre= link-sep-debug_uprobeslibgcc-O3default-prelink-sep-debug main_func (0) FAIL: ustack-uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-pre= link-sep-debug_uprobeslibgcc-O3default-prelink-sep-debug lib_main (0) FAIL: ustack-uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-pre= link-sep-debug_uprobeslibgcc-O3default-prelink-sep-debug lib_func (0) sourcing: /home/prasadkr/systemtap/testsuite/systemtap.exelib/libmarkunames= tack.tcl for uprobesgcc-O3default-debug-uprobeslibgcc-O3default-prelink-sep= -debug-after_uprobeslibgcc-O3default-prelink-sep-debug-after Running: stap -w --ldd /home/prasadkr/systemtap/testsuite/systemtap.exelib/= libmarkunamestack.stp ./uprobesgcc-O3default-debug-uprobeslibgcc-O3default-= prelink-sep-debug-after_exe ./libuprobeslibgcc-O3default-prelink-sep-debug-= after.so -c ./uprobesgcc-O3default-debug-uprobeslibgcc-O3default-prelink-se= p-debug-after_exe spawn stap -w --ldd /home/prasadkr/systemtap/testsuite/systemtap.exelib/lib= markunamestack.stp ./uprobesgcc-O3default-debug-uprobeslibgcc-O3default-pre= link-sep-debug-after_exe ./libuprobeslibgcc-O3default-prelink-sep-debug-aft= er.so -c ./uprobesgcc-O3default-debug-uprobeslibgcc-O3default-prelink-sep-d= ebug-after_exe=0D main=0D exe: main=3D00000011.plt_call.__libc_start_main@@GLIBC_2.3+0=0D main_func: 3=0D exe: main_func=3D00000011.plt_call.__libc_start_main@@GLIBC_2.3+0=0D print_ubacktrace exe 0=0D 0x100006b0 : 00000011.plt_call.__libc_start_main@@GLIBC_2.3+0+0x188/0x3b0 = [...lt-debug-uprobeslibgcc-O3default-prelink-sep-debug-after_exe]=0D [0xc0000000039b3ea8] [0x0000000000000003] 0x3 (inexact)=0D main_count: 3=0D main_func: 2=0D exe: main_func=3D00000011.plt_call.__libc_start_main@@GLIBC_2.3+0=0D print_ustack exe 1=0D 0x100006b0 : 00000011.plt_call.__libc_start_main@@GLIBC_2.3+0+0x188/0x3b0 = [...lt-debug-uprobeslibgcc-O3default-prelink-sep-debug-after_exe]=0D 0x0=0D 0x0=0D main_count: 2=0D main_func: 1=0D exe: main_func=3D00000011.plt_call.__libc_start_main@@GLIBC_2.3+0=0D main_count: 1=0D lib_main=0D lib: lib_main=3D00000010.plt_call.lib_func+0=0D lib_func: 3=0D lib: lib_func=3D00000010.plt_call.lib_func+0=0D print_ubacktrace lib 2=0D 0x6400870 : 00000010.plt_call.lib_func+0+0x158/0x290 [...tsuite/libuprobes= libgcc-O3default-prelink-sep-debug-after.so]=0D [0xc0000000039b3ea8] [0x0000000000000003] 0x3 (inexact)=0D func_count: 3=0D lib_func: 2=0D lib: lib_func=3D00000010.plt_call.lib_func+0=0D print_ustack lib 3=0D 0x6400870 : 00000010.plt_call.lib_func+0+0x158/0x290 [...tsuite/libuprobes= libgcc-O3default-prelink-sep-debug-after.so]=0D 0x0=0D 0x0=0D func_count: 2=0D lib_func: 1=0D lib: lib_func=3D00000010.plt_call.lib_func+0=0D func_count: 1=0D FAIL: lib-uprobesgcc-O3default-debug-uprobeslibgcc-O3default-prelink-sep-de= bug-after_uprobeslibgcc-O3default-prelink-sep-debug-after (1) FAIL: mark-uprobesgcc-O3default-debug-uprobeslibgcc-O3default-prelink-sep-d= ebug-after_uprobeslibgcc-O3default-prelink-sep-debug-after (0) FAIL: uname-uprobesgcc-O3default-debug-uprobeslibgcc-O3default-prelink-sep-= debug-after_uprobeslibgcc-O3default-prelink-sep-debug-after (0) FAIL: ustack-uprobesgcc-O3default-debug-uprobeslibgcc-O3default-prelink-sep= -debug-after_uprobeslibgcc-O3default-prelink-sep-debug-after print (0) FAIL: ustack-uprobesgcc-O3default-debug-uprobeslibgcc-O3default-prelink-sep= -debug-after_uprobeslibgcc-O3default-prelink-sep-debug-after main (0) FAIL: ustack-uprobesgcc-O3default-debug-uprobeslibgcc-O3default-prelink-sep= -debug-after_uprobeslibgcc-O3default-prelink-sep-debug-after main_func (0) FAIL: ustack-uprobesgcc-O3default-debug-uprobeslibgcc-O3default-prelink-sep= -debug-after_uprobeslibgcc-O3default-prelink-sep-debug-after lib_main (0) FAIL: ustack-uprobesgcc-O3default-debug-uprobeslibgcc-O3default-prelink-sep= -debug-after_uprobeslibgcc-O3default-prelink-sep-debug-after lib_func (0) sourcing: /home/prasadkr/systemtap/testsuite/systemtap.exelib/libmarkunames= tack.tcl for uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-prelink= -sep-debug-after_uprobeslibgcc-O3default-prelink-sep-debug-after Running: stap -w --ldd /home/prasadkr/systemtap/testsuite/systemtap.exelib/= libmarkunamestack.stp ./uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3defa= ult-prelink-sep-debug-after_exe ./libuprobeslibgcc-O3default-prelink-sep-de= bug-after.so -c ./uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-pr= elink-sep-debug-after_exe spawn stap -w --ldd /home/prasadkr/systemtap/testsuite/systemtap.exelib/lib= markunamestack.stp ./uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default= -prelink-sep-debug-after_exe ./libuprobeslibgcc-O3default-prelink-sep-debug= -after.so -c ./uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-preli= nk-sep-debug-after_exe=0D main=0D exe: main=3D00000011.plt_call.__libc_start_main@@GLIBC_2.3+0=0D main_func: 3=0D exe: main_func=3D00000011.plt_call.__libc_start_main@@GLIBC_2.3+0=0D print_ubacktrace exe 0=0D 0x100006b0 : 00000011.plt_call.__libc_start_main@@GLIBC_2.3+0+0x188/0x3b0 = [...ep-debug-uprobeslibgcc-O3default-prelink-sep-debug-after_exe]=0D [0xc000000003bc3ea8] [0x0000000000000003] 0x3 (inexact)=0D main_count: 3=0D main_func: 2=0D exe: main_func=3D00000011.plt_call.__libc_start_main@@GLIBC_2.3+0=0D print_ustack exe 1=0D 0x100006b0 : 00000011.plt_call.__libc_start_main@@GLIBC_2.3+0+0x188/0x3b0 = [...ep-debug-uprobeslibgcc-O3default-prelink-sep-debug-after_exe]=0D 0x0=0D 0x0=0D main_count: 2=0D main_func: 1=0D exe: main_func=3D00000011.plt_call.__libc_start_main@@GLIBC_2.3+0=0D main_count: 1=0D lib_main=0D lib: lib_main=3D00000010.plt_call.lib_func+0=0D lib_func: 3=0D lib: lib_func=3D00000010.plt_call.lib_func+0=0D print_ubacktrace lib 2=0D 0x6400870 : 00000010.plt_call.lib_func+0+0x158/0x290 [...tsuite/libuprobes= libgcc-O3default-prelink-sep-debug-after.so]=0D [0xc000000003bc3ea8] [0x0000000000000003] 0x3 (inexact)=0D func_count: 3=0D lib_func: 2=0D lib: lib_func=3D00000010.plt_call.lib_func+0=0D print_ustack lib 3=0D 0x6400870 : 00000010.plt_call.lib_func+0+0x158/0x290 [...tsuite/libuprobes= libgcc-O3default-prelink-sep-debug-after.so]=0D 0x0=0D 0x0=0D func_count: 2=0D lib_func: 1=0D lib: lib_func=3D00000010.plt_call.lib_func+0=0D func_count: 1=0D FAIL: lib-uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-prelink-se= p-debug-after_uprobeslibgcc-O3default-prelink-sep-debug-after (1) FAIL: mark-uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-prelink-s= ep-debug-after_uprobeslibgcc-O3default-prelink-sep-debug-after (0) FAIL: uname-uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-prelink-= sep-debug-after_uprobeslibgcc-O3default-prelink-sep-debug-after (0) FAIL: ustack-uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-prelink= -sep-debug-after_uprobeslibgcc-O3default-prelink-sep-debug-after print (0) FAIL: ustack-uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-prelink= -sep-debug-after_uprobeslibgcc-O3default-prelink-sep-debug-after main (0) FAIL: ustack-uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-prelink= -sep-debug-after_uprobeslibgcc-O3default-prelink-sep-debug-after main_func = (0) FAIL: ustack-uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-prelink= -sep-debug-after_uprobeslibgcc-O3default-prelink-sep-debug-after lib_main (= 0) FAIL: ustack-uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-prelink= -sep-debug-after_uprobeslibgcc-O3default-prelink-sep-debug-after lib_func (= 0) sourcing: /home/prasadkr/systemtap/testsuite/systemtap.exelib/libmarkunames= tack.tcl for uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-prelink= -sep-debug-after_uprobeslibgcc-O3default-prelink-sep-debug-after Running: stap -w --ldd /home/prasadkr/systemtap/testsuite/systemtap.exelib/= libmarkunamestack.stp ./uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3defa= ult-prelink-sep-debug-after_exe ./libuprobeslibgcc-O3default-prelink-sep-de= bug-after.so -c ./uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-pr= elink-sep-debug-after_exe spawn stap -w --ldd /home/prasadkr/systemtap/testsuite/systemtap.exelib/lib= markunamestack.stp ./uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default= -prelink-sep-debug-after_exe ./libuprobeslibgcc-O3default-prelink-sep-debug= -after.so -c ./uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-preli= nk-sep-debug-after_exe=0D main=0D exe: main=3D00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0=0D main_func: 3=0D exe: main_func=3D00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0=0D print_ubacktrace exe 0=0D 0x349e0b20 : 00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0+0x1a0/0x3c8 [..= .ie-debug-uprobeslibgcc-O3default-prelink-sep-debug-after_exe]=0D [0xc0000000030b3ea8] [0x0000000000000003] 0x3 (inexact)=0D main_count: 3=0D main_func: 2=0D exe: main_func=3D00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0=0D print_ustack exe 1=0D 0x349e0b20 : 00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0+0x1a0/0x3c8 [..= .ie-debug-uprobeslibgcc-O3default-prelink-sep-debug-after_exe]=0D 0x0=0D 0x0=0D main_count: 2=0D main_func: 1=0D exe: main_func=3D00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0=0D main_count: 1=0D lib_main=0D lib: lib_main=3D00000010.plt_call.lib_func+0=0D lib_func: 3=0D lib: lib_func=3D00000010.plt_call.lib_func+0=0D print_ubacktrace lib 2=0D 0xfff8ddb0870 : 00000010.plt_call.lib_func+0+0x158/0x290 [...tsuite/libupr= obeslibgcc-O3default-prelink-sep-debug-after.so]=0D [0xc0000000030b3ea8] [0x0000000000000003] 0x3 (inexact)=0D func_count: 3=0D lib_func: 2=0D lib: lib_func=3D00000010.plt_call.lib_func+0=0D print_ustack lib 3=0D 0xfff8ddb0870 : 00000010.plt_call.lib_func+0+0x158/0x290 [...tsuite/libupr= obeslibgcc-O3default-prelink-sep-debug-after.so]=0D 0x0=0D 0x0=0D func_count: 2=0D lib_func: 1=0D lib: lib_func=3D00000010.plt_call.lib_func+0=0D func_count: 1=0D FAIL: lib-uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-prelink-se= p-debug-after_uprobeslibgcc-O3default-prelink-sep-debug-after (1) FAIL: mark-uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-prelink-s= ep-debug-after_uprobeslibgcc-O3default-prelink-sep-debug-after (0) FAIL: uname-uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-prelink-= sep-debug-after_uprobeslibgcc-O3default-prelink-sep-debug-after (0) FAIL: ustack-uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-prelink= -sep-debug-after_uprobeslibgcc-O3default-prelink-sep-debug-after print (0) FAIL: ustack-uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-prelink= -sep-debug-after_uprobeslibgcc-O3default-prelink-sep-debug-after main (0) FAIL: ustack-uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-prelink= -sep-debug-after_uprobeslibgcc-O3default-prelink-sep-debug-after main_func = (0) FAIL: ustack-uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-prelink= -sep-debug-after_uprobeslibgcc-O3default-prelink-sep-debug-after lib_main (= 0) FAIL: ustack-uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-prelink= -sep-debug-after_uprobeslibgcc-O3default-prelink-sep-debug-after lib_func (= 0) sourcing: /home/prasadkr/systemtap/testsuite/systemtap.exelib/libmarkunames= tack.tcl for uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-pre= link-sep-debug-after_uprobeslibgcc-O3default-prelink-sep-debug-after Running: stap -w --ldd /home/prasadkr/systemtap/testsuite/systemtap.exelib/= libmarkunamestack.stp ./uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3= default-prelink-sep-debug-after_exe ./libuprobeslibgcc-O3default-prelink-se= p-debug-after.so -c ./uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3de= fault-prelink-sep-debug-after_exe spawn stap -w --ldd /home/prasadkr/systemtap/testsuite/systemtap.exelib/lib= markunamestack.stp ./uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3def= ault-prelink-sep-debug-after_exe ./libuprobeslibgcc-O3default-prelink-sep-d= ebug-after.so -c ./uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3defau= lt-prelink-sep-debug-after_exe=0D main=0D exe: main=3D00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0=0D main_func: 3=0D exe: main_func=3D00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0=0D print_ubacktrace exe 0=0D 0x37780b20 : 00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0+0x1a0/0x3c8 [..= .ep-debug-uprobeslibgcc-O3default-prelink-sep-debug-after_exe]=0D [0xc000000003bc7ea8] [0x0000000000000003] 0x3 (inexact)=0D main_count: 3=0D main_func: 2=0D exe: main_func=3D00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0=0D print_ustack exe 1=0D 0x37780b20 : 00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0+0x1a0/0x3c8 [..= .ep-debug-uprobeslibgcc-O3default-prelink-sep-debug-after_exe]=0D 0x0=0D 0x0=0D main_count: 2=0D main_func: 1=0D exe: main_func=3D00000011.plt_call.__cxa_finalize@@GLIBC_2.3+0=0D main_count: 1=0D lib_main=0D lib: lib_main=3D00000010.plt_call.lib_func+0=0D lib_func: 3=0D lib: lib_func=3D00000010.plt_call.lib_func+0=0D print_ubacktrace lib 2=0D 0xfff9a8f0870 : 00000010.plt_call.lib_func+0+0x158/0x290 [...tsuite/libupr= obeslibgcc-O3default-prelink-sep-debug-after.so]=0D [0xc000000003bc7ea8] [0x0000000000000003] 0x3 (inexact)=0D func_count: 3=0D lib_func: 2=0D lib: lib_func=3D00000010.plt_call.lib_func+0=0D print_ustack lib 3=0D 0xfff9a8f0870 : 00000010.plt_call.lib_func+0+0x158/0x290 [...tsuite/libupr= obeslibgcc-O3default-prelink-sep-debug-after.so]=0D 0x0=0D 0x0=0D func_count: 2=0D lib_func: 1=0D lib: lib_func=3D00000010.plt_call.lib_func+0=0D func_count: 1=0D FAIL: lib-uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-prelin= k-sep-debug-after_uprobeslibgcc-O3default-prelink-sep-debug-after (1) FAIL: mark-uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-preli= nk-sep-debug-after_uprobeslibgcc-O3default-prelink-sep-debug-after (0) FAIL: uname-uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-prel= ink-sep-debug-after_uprobeslibgcc-O3default-prelink-sep-debug-after (0) FAIL: ustack-uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-pre= link-sep-debug-after_uprobeslibgcc-O3default-prelink-sep-debug-after print = (0) FAIL: ustack-uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-pre= link-sep-debug-after_uprobeslibgcc-O3default-prelink-sep-debug-after main (= 0) FAIL: ustack-uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-pre= link-sep-debug-after_uprobeslibgcc-O3default-prelink-sep-debug-after main_f= unc (0) FAIL: ustack-uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-pre= link-sep-debug-after_uprobeslibgcc-O3default-prelink-sep-debug-after lib_ma= in (0) FAIL: ustack-uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-pre= link-sep-debug-after_uprobeslibgcc-O3default-prelink-sep-debug-after lib_fu= nc (0) sourcing: /home/prasadkr/systemtap/testsuite/systemtap.exelib/cleanup.tcl f= or uprobesgcc-O3default-debug-uprobeslibgcc-O3default-debug_uprobeslibgcc-O= 3default-debug sourcing: /home/prasadkr/systemtap/testsuite/systemtap.exelib/cleanup.tcl f= or uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-debug_uprobeslibg= cc-O3default-debug sourcing: /home/prasadkr/systemtap/testsuite/systemtap.exelib/cleanup.tcl f= or uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-debug_uprobeslibg= cc-O3default-debug sourcing: /home/prasadkr/systemtap/testsuite/systemtap.exelib/cleanup.tcl f= or uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-debug_uprobes= libgcc-O3default-debug sourcing: /home/prasadkr/systemtap/testsuite/systemtap.exelib/cleanup.tcl f= or uprobesgcc-O3default-debug-uprobeslibgcc-O3default-sep-debug_uprobeslibg= cc-O3default-sep-debug sourcing: /home/prasadkr/systemtap/testsuite/systemtap.exelib/cleanup.tcl f= or uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-sep-debug_uprobes= libgcc-O3default-sep-debug sourcing: /home/prasadkr/systemtap/testsuite/systemtap.exelib/cleanup.tcl f= or uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-sep-debug_uprobes= libgcc-O3default-sep-debug sourcing: /home/prasadkr/systemtap/testsuite/systemtap.exelib/cleanup.tcl f= or uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-sep-debug_upr= obeslibgcc-O3default-sep-debug sourcing: /home/prasadkr/systemtap/testsuite/systemtap.exelib/cleanup.tcl f= or uprobesgcc-O3default-debug-uprobeslibgcc-O3default-prelink-debug_uprobes= libgcc-O3default-prelink-debug sourcing: /home/prasadkr/systemtap/testsuite/systemtap.exelib/cleanup.tcl f= or uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-prelink-debug_upr= obeslibgcc-O3default-prelink-debug sourcing: /home/prasadkr/systemtap/testsuite/systemtap.exelib/cleanup.tcl f= or uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-prelink-debug_upr= obeslibgcc-O3default-prelink-debug sourcing: /home/prasadkr/systemtap/testsuite/systemtap.exelib/cleanup.tcl f= or uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-prelink-debug= _uprobeslibgcc-O3default-prelink-debug sourcing: /home/prasadkr/systemtap/testsuite/systemtap.exelib/cleanup.tcl f= or uprobesgcc-O3default-debug-uprobeslibgcc-O3default-prelink-sep-debug_upr= obeslibgcc-O3default-prelink-sep-debug sourcing: /home/prasadkr/systemtap/testsuite/systemtap.exelib/cleanup.tcl f= or uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-prelink-sep-debug= _uprobeslibgcc-O3default-prelink-sep-debug sourcing: /home/prasadkr/systemtap/testsuite/systemtap.exelib/cleanup.tcl f= or uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-prelink-sep-debug= _uprobeslibgcc-O3default-prelink-sep-debug sourcing: /home/prasadkr/systemtap/testsuite/systemtap.exelib/cleanup.tcl f= or uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-prelink-sep-d= ebug_uprobeslibgcc-O3default-prelink-sep-debug sourcing: /home/prasadkr/systemtap/testsuite/systemtap.exelib/cleanup.tcl f= or uprobesgcc-O3default-debug-uprobeslibgcc-O3default-prelink-sep-debug-aft= er_uprobeslibgcc-O3default-prelink-sep-debug-after sourcing: /home/prasadkr/systemtap/testsuite/systemtap.exelib/cleanup.tcl f= or uprobesgcc-O3default-sep-debug-uprobeslibgcc-O3default-prelink-sep-debug= -after_uprobeslibgcc-O3default-prelink-sep-debug-after sourcing: /home/prasadkr/systemtap/testsuite/systemtap.exelib/cleanup.tcl f= or uprobesgcc-O3default-pie-debug-uprobeslibgcc-O3default-prelink-sep-debug= -after_uprobeslibgcc-O3default-prelink-sep-debug-after sourcing: /home/prasadkr/systemtap/testsuite/systemtap.exelib/cleanup.tcl f= or uprobesgcc-O3default-pie-sep-debug-uprobeslibgcc-O3default-prelink-sep-d= ebug-after_uprobeslibgcc-O3default-prelink-sep-debug-after testcase /home/prasadkr/systemtap/testsuite/systemtap.exelib/exelib.exp com= pleted in 93 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.maps/absentstats.exp .= .. spawn stap -DMAXERRORS=3D20 /home/prasadkr/systemtap/testsuite/systemtap.ma= ps/absentstats.stp=0D WARNING: never-assigned global variable 'sc' (alternatives: ry): identifier= 'sc' at /home/prasadkr/systemtap/testsuite/systemtap.maps/absentstats.stp:= 7:8=0D source: global sc=0D ^=0D WARNING: never-assigned global variable 'ry' (alternatives: sc): identifier= 'ry' at :16:8=0D source: global ry=0D ^=0D ERROR: empty aggregate near identifier '@sum' at /home/prasadkr/systemtap/t= estsuite/systemtap.maps/absentstats.stp:9:21=0D ERROR: empty aggregate near identifier '@max' at /home/prasadkr/systemtap/t= estsuite/systemtap.maps/absentstats.stp:10:21=0D ERROR: empty aggregate near identifier '@min' at /home/prasadkr/systemtap/t= estsuite/systemtap.maps/absentstats.stp:11:21=0D ERROR: empty aggregate near identifier '@avg' at /home/prasadkr/systemtap/t= estsuite/systemtap.maps/absentstats.stp:12:21=0D ERROR: empty aggregate near identifier 'print' at /home/prasadkr/systemtap/= testsuite/systemtap.maps/absentstats.stp:13:15=0D ERROR: empty aggregate near identifier '@hist_log' at /home/prasadkr/system= tap/testsuite/systemtap.maps/absentstats.stp:14:17=0D ERROR: empty aggregate near identifier '@sum' at /home/prasadkr/systemtap/t= estsuite/systemtap.maps/absentstats.stp:18:21=0D ERROR: empty aggregate near identifier '@max' at /home/prasadkr/systemtap/t= estsuite/systemtap.maps/absentstats.stp:19:21=0D ERROR: empty aggregate near identifier '@min' at /home/prasadkr/systemtap/t= estsuite/systemtap.maps/absentstats.stp:20:21=0D ERROR: empty aggregate near identifier '@avg' at /home/prasadkr/systemtap/t= estsuite/systemtap.maps/absentstats.stp:21:21=0D ERROR: empty aggregate near identifier 'print' at /home/prasadkr/systemtap/= testsuite/systemtap.maps/absentstats.stp:22:15=0D ERROR: empty aggregate near identifier '@hist_log' at /home/prasadkr/system= tap/testsuite/systemtap.maps/absentstats.stp:23:17=0D 0=0D 0=0D WARNING: Number of errors: 12, skipped probes: 0=0D Pass 5: run failed. Try again with another '--vp 00001' option.=0D PASS: absentstats testcase /home/prasadkr/systemtap/testsuite/systemtap.maps/absentstats.exp = completed in 3 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.maps/elision.exp ... PASS: elision-1 PASS: elision0 PASS: elision1 PASS: elision2 PASS: elision3 testcase /home/prasadkr/systemtap/testsuite/systemtap.maps/elision.exp comp= leted in 15 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.maps/exists.exp ... executing: stap /home/prasadkr/systemtap/testsuite/systemtap.maps/exists.stp PASS: systemtap.maps/exists.stp testcase /home/prasadkr/systemtap/testsuite/systemtap.maps/exists.exp compl= eted in 3 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.maps/foreach_fail.exp = ... spawn stap /home/prasadkr/systemtap/testsuite/systemtap.maps/foreach_fail.s= tp=0D semantic error: variable 'foo' modified during 'foreach' iteration: identif= ier 'foo' at /home/prasadkr/systemtap/testsuite/systemtap.maps/foreach_fail= .stp:13:4=0D source: foo[i]++=0D ^=0D Pass 2: analysis failed. Try again with another '--vp 01' option.=0D PASS: foreach_fail correctly failed to compile testcase /home/prasadkr/systemtap/testsuite/systemtap.maps/foreach_fail.exp= completed in 0 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.maps/foreach_foreach.e= xp ... executing: stap /home/prasadkr/systemtap/testsuite/systemtap.maps/foreach_f= oreach.stp PASS: systemtap.maps/foreach_foreach.stp testcase /home/prasadkr/systemtap/testsuite/systemtap.maps/foreach_foreach.= exp completed in 3 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.maps/foreach_limit.exp= ... executing: stap /home/prasadkr/systemtap/testsuite/systemtap.maps/foreach_l= imit.stp PASS: systemtap.maps/foreach_limit.stp testcase /home/prasadkr/systemtap/testsuite/systemtap.maps/foreach_limit.ex= p completed in 3 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.maps/foreach_limit2.ex= p ... executing: stap /home/prasadkr/systemtap/testsuite/systemtap.maps/foreach_l= imit2.stp PASS: systemtap.maps/foreach_limit2.stp testcase /home/prasadkr/systemtap/testsuite/systemtap.maps/foreach_limit2.e= xp completed in 4 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.maps/hist_in_string.ex= p ... executing: stap /home/prasadkr/systemtap/testsuite/systemtap.maps/hist_in_s= tring.stp PASS: systemtap.maps/hist_in_string.stp testcase /home/prasadkr/systemtap/testsuite/systemtap.maps/hist_in_string.e= xp completed in 3 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.maps/ii.exp ... executing: stap /home/prasadkr/systemtap/testsuite/systemtap.maps/ii.stp PASS: systemtap.maps/ii.stp testcase /home/prasadkr/systemtap/testsuite/systemtap.maps/ii.exp completed= in 3 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.maps/iiiiii.exp ... executing: stap /home/prasadkr/systemtap/testsuite/systemtap.maps/iiiiii.stp PASS: systemtap.maps/iiiiii.stp testcase /home/prasadkr/systemtap/testsuite/systemtap.maps/iiiiii.exp compl= eted in 2 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.maps/is.exp ... executing: stap /home/prasadkr/systemtap/testsuite/systemtap.maps/is.stp PASS: systemtap.maps/is.stp testcase /home/prasadkr/systemtap/testsuite/systemtap.maps/is.exp completed= in 3 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.maps/ix.exp ... executing: stap /home/prasadkr/systemtap/testsuite/systemtap.maps/ix.stp PASS: systemtap.maps/ix.stp testcase /home/prasadkr/systemtap/testsuite/systemtap.maps/ix.exp completed= in 4 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.maps/ix_clear.exp ... spawn stap /home/prasadkr/systemtap/testsuite/systemtap.maps/ix_clear.stp=0D foo[1] =3D 1 1=0D ERROR: empty aggregate near identifier '@sum' at /home/prasadkr/systemtap/t= estsuite/systemtap.maps/ix_clear.stp:14:45=0D WARNING: Number of errors: 1, skipped probes: 0=0D Pass 5: run failed. Try again with another '--vp 00001' option.=0D PASS: ix_clear passed testcase /home/prasadkr/systemtap/testsuite/systemtap.maps/ix_clear.exp com= pleted in 4 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.maps/ix_clear2.exp ... spawn stap /home/prasadkr/systemtap/testsuite/systemtap.maps/ix_clear2.stp= =0D foo[1] =3D 1 1=0D ERROR: empty aggregate near identifier '@sum' at /home/prasadkr/systemtap/t= estsuite/systemtap.maps/ix_clear2.stp:14:45=0D WARNING: Number of errors: 1, skipped probes: 0=0D Pass 5: run failed. Try again with another '--vp 00001' option.=0D PASS: ix_clear2 passed testcase /home/prasadkr/systemtap/testsuite/systemtap.maps/ix_clear2.exp co= mpleted in 4 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.maps/ix_clear3.exp ... spawn stap /home/prasadkr/systemtap/testsuite/systemtap.maps/ix_clear3.stp= =0D ERROR: empty aggregate near identifier '@sum' at /home/prasadkr/systemtap/t= estsuite/systemtap.maps/ix_clear3.stp:7:45=0D PASS: ix_clear3 passed testcase /home/prasadkr/systemtap/testsuite/systemtap.maps/ix_clear3.exp co= mpleted in 2 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.maps/ix_hist.exp ... executing: stap /home/prasadkr/systemtap/testsuite/systemtap.maps/ix_hist.s= tp -DMAXACTION=3D10000 PASS: systemtap.maps/ix_hist.stp testcase /home/prasadkr/systemtap/testsuite/systemtap.maps/ix_hist.exp comp= leted in 4 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.maps/linear.exp ... executing: stap /home/prasadkr/systemtap/testsuite/systemtap.maps/linear.stp PASS: systemtap.maps/linear.stp testcase /home/prasadkr/systemtap/testsuite/systemtap.maps/linear.exp compl= eted in 2 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.maps/linear_0.exp ... spawn stap -DMAXACTION=3D10000 /home/prasadkr/systemtap/testsuite/systemtap= .maps/linear_0.stp=0D WARNING: histogram: interval cannot be zero.=0D ERROR: global variable 'agg' allocation failed=0D Pass 5: run failed. Try again with another '--vp 00001' option.=0D PASS: linear_0 testcase /home/prasadkr/systemtap/testsuite/systemtap.maps/linear_0.exp com= pleted in 3 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.maps/linear_bad.exp ... spawn stap -DMAXACTION=3D10000 /home/prasadkr/systemtap/testsuite/systemtap= .maps/linear_bad.stp=0D WARNING: histogram: Number of buckets must be between 1 and 126=0D Number_of_buckets =3D (stop - start) / interval.=0D Please adjust your start, stop, and interval values.=0D ERROR: global variable 'agg' allocation failed=0D Pass 5: run failed. Try again with another '--vp 00001' option.=0D PASS: linear_bad testcase /home/prasadkr/systemtap/testsuite/systemtap.maps/linear_bad.exp c= ompleted in 3 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.maps/linear_empty.exp = ... executing: stap /home/prasadkr/systemtap/testsuite/systemtap.maps/linear_em= pty.stp -w PASS: systemtap.maps/linear_empty.stp testcase /home/prasadkr/systemtap/testsuite/systemtap.maps/linear_empty.exp= completed in 2 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.maps/linear_large.exp = ... executing: stap /home/prasadkr/systemtap/testsuite/systemtap.maps/linear_la= rge.stp PASS: systemtap.maps/linear_large.stp testcase /home/prasadkr/systemtap/testsuite/systemtap.maps/linear_large.exp= completed in 3 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.maps/linear_large_neg.= exp ... executing: stap /home/prasadkr/systemtap/testsuite/systemtap.maps/linear_la= rge_neg.stp PASS: systemtap.maps/linear_large_neg.stp testcase /home/prasadkr/systemtap/testsuite/systemtap.maps/linear_large_neg= .exp completed in 3 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.maps/linear_nearlyempt= y.exp ... executing: stap /home/prasadkr/systemtap/testsuite/systemtap.maps/linear_ne= arlyempty.stp PASS: systemtap.maps/linear_nearlyempty.stp testcase /home/prasadkr/systemtap/testsuite/systemtap.maps/linear_nearlyemp= ty.exp completed in 3 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.maps/linear_neg.exp ... spawn stap -DMAXACTION=3D10000 /home/prasadkr/systemtap/testsuite/systemtap= .maps/linear_neg.stp=0D WARNING: histogram: Number of buckets must be between 1 and 126=0D Number_of_buckets =3D (stop - start) / interval.=0D Please adjust your start, stop, and interval values.=0D ERROR: global variable 'agg' allocation failed=0D Pass 5: run failed. Try again with another '--vp 00001' option.=0D PASS: linear_neg testcase /home/prasadkr/systemtap/testsuite/systemtap.maps/linear_neg.exp c= ompleted in 3 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.maps/linear_over.exp .= .. executing: stap /home/prasadkr/systemtap/testsuite/systemtap.maps/linear_ov= er.stp -DMAXACTION=3D10000 PASS: systemtap.maps/linear_over.stp testcase /home/prasadkr/systemtap/testsuite/systemtap.maps/linear_over.exp = completed in 2 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.maps/linear_overunder.= exp ... executing: stap /home/prasadkr/systemtap/testsuite/systemtap.maps/linear_ov= erunder.stp PASS: systemtap.maps/linear_overunder.stp testcase /home/prasadkr/systemtap/testsuite/systemtap.maps/linear_overunder= .exp completed in 3 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.maps/linear_under.exp = ... executing: stap /home/prasadkr/systemtap/testsuite/systemtap.maps/linear_un= der.stp -DMAXACTION=3D10000 PASS: systemtap.maps/linear_under.stp testcase /home/prasadkr/systemtap/testsuite/systemtap.maps/linear_under.exp= completed in 3 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.maps/log.exp ... executing: stap /home/prasadkr/systemtap/testsuite/systemtap.maps/log.stp PASS: systemtap.maps/log.stp testcase /home/prasadkr/systemtap/testsuite/systemtap.maps/log.exp complete= d in 3 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.maps/log_edge.exp ... executing: stap /home/prasadkr/systemtap/testsuite/systemtap.maps/log_edge.= stp PASS: systemtap.maps/log_edge.stp testcase /home/prasadkr/systemtap/testsuite/systemtap.maps/log_edge.exp com= pleted in 3 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.maps/pmap_agg_overflow= .exp ... spawn stap -DMAXERRORS=3D1 -g /home/prasadkr/systemtap/testsuite/systemtap.= maps/pmap_agg_overflow.stp=0D ERROR: aggregation overflow in global.s_stat near keyword at /home/prasadkr= /systemtap/testsuite/systemtap.maps/pmap_agg_overflow.stp:28:5=0D ERROR: aggregation overflow in global.s_stat near keyword at /home/prasadkr= /systemtap/testsuite/systemtap.maps/pmap_agg_overflow.stp:34:5=0D WARNING: Number of errors: 2, skipped probes: 0=0D Pass 5: run failed. Try again with another '--vp 00001' option.=0D PASS: pmap_agg_overflow testcase /home/prasadkr/systemtap/testsuite/systemtap.maps/pmap_agg_overflo= w.exp completed in 16 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.maps/si.exp ... executing: stap /home/prasadkr/systemtap/testsuite/systemtap.maps/si.stp PASS: systemtap.maps/si.stp testcase /home/prasadkr/systemtap/testsuite/systemtap.maps/si.exp completed= in 3 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.maps/ss.exp ... executing: stap /home/prasadkr/systemtap/testsuite/systemtap.maps/ss.stp PASS: systemtap.maps/ss.stp testcase /home/prasadkr/systemtap/testsuite/systemtap.maps/ss.exp completed= in 3 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.pass1-4/buildko.exp ... Running /home/prasadkr/systemtap/testsuite/buildko/one.stp starting /home/prasadkr/systemtap/testsuite/buildko/one.stp spawn2 /home/prasadkr/systemtap/testsuite/buildko/one.stp spawn /home/prasadkr/systemtap/testsuite/buildko/one.stp=0D /tmp/stapw6YNll/stap_11fc3c5c0a1ea09cc355927f357964bb_907.c: In function = =E2=80=98function_get_release=E2=80=99:=0D /tmp/stapw6YNll/stap_11fc3c5c0a1ea09cc355927f357964bb_907.c:175: error: inc= ompatible types when assigning to type =E2=80=98string_t=E2=80=99 from type= =E2=80=98int=E2=80=99=0D make[4]: *** [/tmp/stapw6YNll/stap_11fc3c5c0a1ea09cc355927f357964bb_907.o] = Error 1=0D make[3]: *** [_module_/tmp/stapw6YNll] Error 2=0D Pass 4: compilation failed. Try again with another '--vp 0001' option.=0D /tmp/stapw6YNll/stap_11fc3c5c0a1ea09cc355927f357964bb_907.c: In function = =E2=80=98function_get_release=E2=80=99:=0D /tmp/stapw6YNll/stap_11fc3c5c0a1ea09cc355927f357964bb_907.c:175: error: inc= ompatible types when assigning to type =E2=80=98string_t=E2=80=99 from type= =E2=80=98int=E2=80=99=0D make[4]: *** [/tmp/stapw6YNll/stap_11fc3c5c0a1ea09cc355927f357964bb_907.o] = Error 1=0D make[3]: *** [_module_/tmp/stapw6YNll] Error 2=0D Pass 4: compilation failed. Try again with another '--vp 0001' option.=0D wait results: 26288 exp17 0 1 XFAIL: buildko/one.stp Running /home/prasadkr/systemtap/testsuite/buildko/three.stp starting /home/prasadkr/systemtap/testsuite/buildko/three.stp spawn1 stap -gp4 /home/prasadkr/systemtap/testsuite/buildko/three.stp spawn stap -gp4 /home/prasadkr/systemtap/testsuite/buildko/three.stp=0D /tmp/stapKD1S6k/stap_06863d57e57059c63ca8153391bb68c8_632.c: In function = =E2=80=98probe_2089=E2=80=99:=0D /tmp/stapKD1S6k/stap_06863d57e57059c63ca8153391bb68c8_632.c:144: error: =E2= =80=98SYNTAX=E2=80=99 undeclared (first use in this function)=0D /tmp/stapKD1S6k/stap_06863d57e57059c63ca8153391bb68c8_632.c:144: error: (Ea= ch undeclared identifier is reported only once=0D /tmp/stapKD1S6k/stap_06863d57e57059c63ca8153391bb68c8_632.c:144: error: for= each function it appears in.)=0D /tmp/stapKD1S6k/stap_06863d57e57059c63ca8153391bb68c8_632.c:144: error: exp= ected =E2=80=98)=E2=80=99 before =E2=80=98ERROR=E2=80=99=0D make[4]: *** [/tmp/stapKD1S6k/stap_06863d57e57059c63ca8153391bb68c8_632.o] = Error 1=0D make[3]: *** [_module_/tmp/stapKD1S6k] Error 2=0D Pass 4: compilation failed. Try again with another '--vp 0001' option.=0D /tmp/stapKD1S6k/stap_06863d57e57059c63ca8153391bb68c8_632.c: In function = =E2=80=98probe_2089=E2=80=99:=0D /tmp/stapKD1S6k/stap_06863d57e57059c63ca8153391bb68c8_632.c:144: error: =E2= =80=98SYNTAX=E2=80=99 undeclared (first use in this function)=0D /tmp/stapKD1S6k/stap_06863d57e57059c63ca8153391bb68c8_632.c:144: error: (Ea= ch undeclared identifier is reported only once=0D /tmp/stapKD1S6k/stap_06863d57e57059c63ca8153391bb68c8_632.c:144: error: for= each function it appears in.)=0D /tmp/stapKD1S6k/stap_06863d57e57059c63ca8153391bb68c8_632.c:144: error: exp= ected =E2=80=98)=E2=80=99 before =E2=80=98ERROR=E2=80=99=0D make[4]: *** [/tmp/stapKD1S6k/stap_06863d57e57059c63ca8153391bb68c8_632.o] = Error 1=0D make[3]: *** [_module_/tmp/stapKD1S6k] Error 2=0D Pass 4: compilation failed. Try again with another '--vp 0001' option.=0D wait results: 26461 exp17 0 1 XFAIL: buildko/three.stp Running /home/prasadkr/systemtap/testsuite/buildko/two.stp starting /home/prasadkr/systemtap/testsuite/buildko/two.stp spawn1 stap -p4 /home/prasadkr/systemtap/testsuite/buildko/two.stp spawn stap -p4 /home/prasadkr/systemtap/testsuite/buildko/two.stp=0D In file included from /tmp/stapn8g0ph/stap_630314049cc73dfd4f965e7820b5c900= _3530.c:304:=0D /usr/local/share/systemtap/runtime/map-gen.c:275:2: error: #error "excessiv= e key arity =3D=3D too many array indexes"=0D In file included from /tmp/stapn8g0ph/stap_630314049cc73dfd4f965e7820b5c900= _3530.c:304:=0D /usr/local/share/systemtap/runtime/map-gen.c:275:2: error: #error "excessiv= e key arity =3D=3D too many array indexes"=0D In file included from /tmp/stapn8g0ph/stap_630314049cc73dfd4f965e7820b5c900= _3530.c:327:=0D /usr/local/share/systemtap/runtime/pmap-gen.c:275:2: error: #error "excessi= ve key arity =3D=3D too many array indexes"=0D In file included from /tmp/stapn8g0ph/stap_630314049cc73dfd4f965e7820b5c900= _3530.c:327:=0D /usr/local/share/systemtap/runtime/pmap-gen.c:275:2: error: #error "excessi= ve key arity =3D=3D too many array indexes"=0D In file included from /tmp/stapn8g0ph/stap_630314049cc73dfd4f965e7820b5c900= _3530.c:350:=0D /usr/local/share/systemtap/runtime/map-gen.c:275:2: error: #error "excessiv= e key arity =3D=3D too many array indexes"=0D In file included from /tmp/stapn8g0ph/stap_630314049cc73dfd4f965e7820b5c900= _3530.c:373:=0D /usr/local/share/systemtap/runtime/map-gen.c:275:2: error: #error "excessiv= e key arity =3D=3D too many array indexes"=0D In file included from /tmp/stapn8g0ph/stap_630314049cc73dfd4f965e7820b5c900= _3530.c:396:=0D /usr/local/share/systemtap/runtime/pmap-gen.c:275:2: error: #error "excessi= ve key arity =3D=3D too many array indexes"=0D In file included from /tmp/stapn8g0ph/stap_630314049cc73dfd4f965e7820b5c900= _3530.c:350:=0D /usr/local/share/systemtap/runtime/map-gen.c:275:2: error: #error "excessiv= e key arity =3D=3D too many array indexes"=0D In file included from /tmp/stapn8g0ph/stap_630314049cc73dfd4f965e7820b5c900= _3530.c:373:=0D /usr/local/share/systemtap/runtime/map-gen.c:275:2: error: #error "excessiv= e key arity =3D=3D too many array indexes"=0D In file included from /tmp/stapn8g0ph/stap_630314049cc73dfd4f965e7820b5c900= _3530.c:396:=0D /usr/local/share/systemtap/runtime/pmap-gen.c:275:2: error: #error "excessi= ve key arity =3D=3D too many array indexes"=0D In file included from /tmp/stapn8g0ph/stap_630314049cc73dfd4f965e7820b5c900= _3530.c:419:=0D /usr/local/share/systemtap/runtime/map-gen.c:275:2: error: #error "excessiv= e key arity =3D=3D too many array indexes"=0D In file included from /tmp/stapn8g0ph/stap_630314049cc73dfd4f965e7820b5c900= _3530.c:419:=0D /usr/local/share/systemtap/runtime/map-gen.c:275:2: error: #error "excessiv= e key arity =3D=3D too many array indexes"=0D /tmp/stapn8g0ph/stap_630314049cc73dfd4f965e7820b5c900_3530.c: In function = =E2=80=98probe_2089=E2=80=99:=0D /tmp/stapn8g0ph/stap_630314049cc73dfd4f965e7820b5c900_3530.c:505: error: im= plicit declaration of function =E2=80=98_stp_map_set_isisisisiss=E2=80=99=0D /tmp/stapn8g0ph/stap_630314049cc73dfd4f965e7820b5c900_3530.c:513: error: im= plicit declaration of function =E2=80=98_stp_map_set_sisisisisii=E2=80=99=0D /tmp/stapn8g0ph/stap_630314049cc73dfd4f965e7820b5c900_3530.c:520: error: im= plicit declaration of function =E2=80=98_stp_pmap_add_isisisisisx=E2=80=99= =0D /tmp/stapn8g0ph/stap_630314049cc73dfd4f965e7820b5c900_3530.c:527: error: im= plicit declaration of function =E2=80=98_stp_pmap_add_sisisisisix=E2=80=99= =0D /tmp/stapn8g0ph/stap_630314049cc73dfd4f965e7820b5c900_3530.c: In function = =E2=80=98probe_2089=E2=80=99:=0D /tmp/stapn8g0ph/stap_630314049cc73dfd4f965e7820b5c900_3530.c:505: error: im= plicit declaration of function =E2=80=98_stp_map_set_isisisisiss=E2=80=99=0D /tmp/stapn8g0ph/stap_630314049cc73dfd4f965e7820b5c900_3530.c:513: error: im= plicit declaration of function =E2=80=98_stp_map_set_sisisisisii=E2=80=99=0D /tmp/stapn8g0ph/stap_630314049cc73dfd4f965e7820b5c900_3530.c:520: error: im= plicit declaration of function =E2=80=98_stp_pmap_add_isisisisisx=E2=80=99= =0D /tmp/stapn8g0ph/stap_630314049cc73dfd4f965e7820b5c900_3530.c:527: error: im= plicit declaration of function =E2=80=98_stp_pmap_add_sisisisisix=E2=80=99= =0D /tmp/stapn8g0ph/stap_630314049cc73dfd4f965e7820b5c900_3530.c: In function = =E2=80=98systemtap_module_init=E2=80=99:=0D /tmp/stapn8g0ph/stap_630314049cc73dfd4f965e7820b5c900_3530.c:1140: error: i= mplicit declaration of function =E2=80=98_stp_map_new_isisisisiss=E2=80=99= =0D cc1: warnings being treated as errors=0D /tmp/stapn8g0ph/stap_630314049cc73dfd4f965e7820b5c900_3530.c:1140: error: a= ssignment makes pointer from integer without a cast=0D /tmp/stapn8g0ph/stap_630314049cc73dfd4f965e7820b5c900_3530.c:1146: error: i= mplicit declaration of function =E2=80=98_stp_map_new_sisisisisii=E2=80=99= =0D /tmp/stapn8g0ph/stap_630314049cc73dfd4f965e7820b5c900_3530.c:1146: error: a= ssignment makes pointer from integer without a cast=0D /tmp/stapn8g0ph/stap_630314049cc73dfd4f965e7820b5c900_3530.c:1152: error: i= mplicit declaration of function =E2=80=98_stp_pmap_new_isisisisisx=E2=80=99= =0D /tmp/stapn8g0ph/stap_630314049cc73dfd4f965e7820b5c900_3530.c:1152: error: a= ssignment makes pointer from integer without a cast=0D /tmp/stapn8g0ph/stap_630314049cc73dfd4f965e7820b5c900_3530.c:1158: error: i= mplicit declaration of function =E2=80=98_stp_pmap_new_sisisisisix=E2=80=99= =0D /tmp/stapn8g0ph/stap_630314049cc73dfd4f965e7820b5c900_3530.c:1158: error: a= ssignment makes pointer from integer without a cast=0D /tmp/stapn8g0ph/stap_630314049cc73dfd4f965e7820b5c900_3530.c: In function = =E2=80=98systemtap_module_init=E2=80=99:=0D /tmp/stapn8g0ph/stap_630314049cc73dfd4f965e7820b5c900_3530.c:1140: error: i= mplicit declaration of function =E2=80=98_stp_map_new_isisisisiss=E2=80=99= =0D cc1: warnings being treated as errors=0D /tmp/stapn8g0ph/stap_630314049cc73dfd4f965e7820b5c900_3530.c:1140: error: a= ssignment makes pointer from integer without a cast=0D /tmp/stapn8g0ph/stap_630314049cc73dfd4f965e7820b5c900_3530.c:1146: error: i= mplicit declaration of function =E2=80=98_stp_map_new_sisisisisii=E2=80=99= =0D /tmp/stapn8g0ph/stap_630314049cc73dfd4f965e7820b5c900_3530.c:1146: error: a= ssignment makes pointer from integer without a cast=0D /tmp/stapn8g0ph/stap_630314049cc73dfd4f965e7820b5c900_3530.c:1152: error: i= mplicit declaration of function =E2=80=98_stp_pmap_new_isisisisisx=E2=80=99= =0D /tmp/stapn8g0ph/stap_630314049cc73dfd4f965e7820b5c900_3530.c:1152: error: a= ssignment makes pointer from integer without a cast=0D /tmp/stapn8g0ph/stap_630314049cc73dfd4f965e7820b5c900_3530.c:1158: error: i= mplicit declaration of function =E2=80=98_stp_pmap_new_sisisisisix=E2=80=99= =0D /tmp/stapn8g0ph/stap_630314049cc73dfd4f965e7820b5c900_3530.c:1158: error: a= ssignment makes pointer from integer without a cast=0D make[4]: *** [/tmp/stapn8g0ph/stap_630314049cc73dfd4f965e7820b5c900_3530.o]= Error 1=0D make[3]: *** [_module_/tmp/stapn8g0ph] Error 2=0D Pass 4: compilation failed. Try again with another '--vp 0001' option.=0D make[4]: *** [/tmp/stapn8g0ph/stap_630314049cc73dfd4f965e7820b5c900_3530.o]= Error 1=0D make[3]: *** [_module_/tmp/stapn8g0ph] Error 2=0D Pass 4: compilation failed. Try again with another '--vp 0001' option.=0D wait results: 26633 exp17 0 1 XFAIL: buildko/two.stp testcase /home/prasadkr/systemtap/testsuite/systemtap.pass1-4/buildko.exp c= ompleted in 3 seconds Running /home/prasadkr/systemtap/testsuite/systemtap.pass1-4/buildok.exp ... Running /home/prasadkr/systemtap/testsuite/buildok/array_size.stp starting /home/prasadkr/systemtap/testsuite/buildok/array_size.stp spawn1 stap -p4 /home/prasadkr/systemtap/testsuite/buildok/array_size.stp spawn stap -p4 /home/prasadkr/systemtap/testsuite/buildok/array_size.stp=0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/2e/stap_2e781526aa= aa4356453e7025eeb78cca_873.ko=0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/2e/stap_2e781526aa= aa4356453e7025eeb78cca_873.ko=0D wait results: 26806 exp17 0 0 PASS: buildok/array_size.stp Running /home/prasadkr/systemtap/testsuite/buildok/atomic.stp starting /home/prasadkr/systemtap/testsuite/buildok/atomic.stp spawn1 stap -p4 /home/prasadkr/systemtap/testsuite/buildok/atomic.stp spawn stap -p4 /home/prasadkr/systemtap/testsuite/buildok/atomic.stp=0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/15/stap_15c602dd06= 567a4d827b2b9706f809da_1590.ko=0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/15/stap_15c602dd06= 567a4d827b2b9706f809da_1590.ko=0D wait results: 27025 exp17 0 0 PASS: buildok/atomic.stp Running /home/prasadkr/systemtap/testsuite/buildok/aux_syscalls-embedded.stp starting /home/prasadkr/systemtap/testsuite/buildok/aux_syscalls-embedded.s= tp spawn1 stap -p4 /home/prasadkr/systemtap/testsuite/buildok/aux_syscalls-emb= edded.stp spawn stap -p4 /home/prasadkr/systemtap/testsuite/buildok/aux_syscalls-embe= dded.stp=0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/46/stap_4669df27ba= 8915457fa578c9a6e0eeef_64945.ko=0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/46/stap_4669df27ba= 8915457fa578c9a6e0eeef_64945.ko=0D wait results: 27244 exp17 0 0 PASS: buildok/aux_syscalls-embedded.stp Running /home/prasadkr/systemtap/testsuite/buildok/cmdline01.stp starting /home/prasadkr/systemtap/testsuite/buildok/cmdline01.stp spawn2 /home/prasadkr/systemtap/testsuite/buildok/cmdline01.stp spawn /home/prasadkr/systemtap/testsuite/buildok/cmdline01.stp=0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/00/stap_00ca51e59d= 98966e963106726448f876_898.ko=0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/00/stap_00ca51e59d= 98966e963106726448f876_898.ko=0D wait results: 27463 exp17 0 0 PASS: buildok/cmdline01.stp Running /home/prasadkr/systemtap/testsuite/buildok/context-embedded.stp starting /home/prasadkr/systemtap/testsuite/buildok/context-embedded.stp spawn1 stap -p4 /home/prasadkr/systemtap/testsuite/buildok/context-embedded= .stp spawn stap -p4 /home/prasadkr/systemtap/testsuite/buildok/context-embedded.= stp=0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/50/stap_50beec57e5= 1b81d8ea1ceb091465a677_11856.ko=0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/50/stap_50beec57e5= 1b81d8ea1ceb091465a677_11856.ko=0D wait results: 27683 exp17 0 0 PASS: buildok/context-embedded.stp Running /home/prasadkr/systemtap/testsuite/buildok/context-symbols-embedded= .stp starting /home/prasadkr/systemtap/testsuite/buildok/context-symbols-embedde= d.stp spawn1 stap -p4 /home/prasadkr/systemtap/testsuite/buildok/context-symbols-= embedded.stp spawn stap -p4 /home/prasadkr/systemtap/testsuite/buildok/context-symbols-e= mbedded.stp=0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/2b/stap_2b464cf54c= 0075ce9ca0a38b10a519ec_4083.ko=0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/2b/stap_2b464cf54c= 0075ce9ca0a38b10a519ec_4083.ko=0D wait results: 27902 exp17 0 0 PASS: buildok/context-symbols-embedded.stp Running /home/prasadkr/systemtap/testsuite/buildok/context-unwind-embedded.= stp starting /home/prasadkr/systemtap/testsuite/buildok/context-unwind-embedded= .stp spawn1 stap -p4 /home/prasadkr/systemtap/testsuite/buildok/context-unwind-e= mbedded.stp spawn stap -p4 /home/prasadkr/systemtap/testsuite/buildok/context-unwind-em= bedded.stp=0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/2e/stap_2e0615c041= 091739b7f232d39c8683b6_2549.ko=0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/2e/stap_2e0615c041= 091739b7f232d39c8683b6_2549.ko=0D wait results: 28121 exp17 0 0 PASS: buildok/context-unwind-embedded.stp Running /home/prasadkr/systemtap/testsuite/buildok/conversions-embedded.stp starting /home/prasadkr/systemtap/testsuite/buildok/conversions-embedded.stp spawn1 stap -p4 /home/prasadkr/systemtap/testsuite/buildok/conversions-embe= dded.stp spawn stap -p4 /home/prasadkr/systemtap/testsuite/buildok/conversions-embed= ded.stp=0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/6e/stap_6e9b66977f= 0602453c16af99556a5b88_9945.ko=0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/6e/stap_6e9b66977f= 0602453c16af99556a5b88_9945.ko=0D wait results: 28340 exp17 0 0 PASS: buildok/conversions-embedded.stp Running /home/prasadkr/systemtap/testsuite/buildok/conversions-guru-embedde= d.stp starting /home/prasadkr/systemtap/testsuite/buildok/conversions-guru-embedd= ed.stp spawn1 stap -gup4 /home/prasadkr/systemtap/testsuite/buildok/conversions-gu= ru-embedded.stp spawn stap -gup4 /home/prasadkr/systemtap/testsuite/buildok/conversions-gur= u-embedded.stp=0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/3d/stap_3ddd09d789= bd06c569bdf300933219da_3580.ko=0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/3d/stap_3ddd09d789= bd06c569bdf300933219da_3580.ko=0D wait results: 28559 exp17 0 0 PASS: buildok/conversions-guru-embedded.stp Running /home/prasadkr/systemtap/testsuite/buildok/conversions.stp starting /home/prasadkr/systemtap/testsuite/buildok/conversions.stp spawn1 stap -p4 /home/prasadkr/systemtap/testsuite/buildok/conversions.stp spawn stap -p4 /home/prasadkr/systemtap/testsuite/buildok/conversions.stp=0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/80/stap_80010841e4= f887e5801417fa44a2f8e7_9779.ko=0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/80/stap_80010841e4= f887e5801417fa44a2f8e7_9779.ko=0D wait results: 28778 exp17 0 0 PASS: buildok/conversions.stp Running /home/prasadkr/systemtap/testsuite/buildok/ctime-embedded.stp starting /home/prasadkr/systemtap/testsuite/buildok/ctime-embedded.stp spawn1 stap -p4 /home/prasadkr/systemtap/testsuite/buildok/ctime-embedded.s= tp spawn stap -p4 /home/prasadkr/systemtap/testsuite/buildok/ctime-embedded.st= p=0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/9f/stap_9fcb8abfaf= 266d08fa3700e6718b8e6f_3888.ko=0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/9f/stap_9fcb8abfaf= 266d08fa3700e6718b8e6f_3888.ko=0D wait results: 28997 exp17 0 0 PASS: buildok/ctime-embedded.stp Running /home/prasadkr/systemtap/testsuite/buildok/delete.stp starting /home/prasadkr/systemtap/testsuite/buildok/delete.stp spawn1 stap -p4 /home/prasadkr/systemtap/testsuite/buildok/delete.stp spawn stap -p4 /home/prasadkr/systemtap/testsuite/buildok/delete.stp=0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/2e/stap_2e4b46af93= 0e874a0dc52db910e18ec1_917.ko=0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/2e/stap_2e4b46af93= 0e874a0dc52db910e18ec1_917.ko=0D wait results: 29216 exp17 0 0 PASS: buildok/delete.stp Running /home/prasadkr/systemtap/testsuite/buildok/dentry-embedded.stp starting /home/prasadkr/systemtap/testsuite/buildok/dentry-embedded.stp spawn1 stap -p4 /home/prasadkr/systemtap/testsuite/buildok/dentry-embedded.= stp spawn stap -p4 /home/prasadkr/systemtap/testsuite/buildok/dentry-embedded.s= tp=0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/09/stap_093caf88ac= c1736fbc7990f5177c0ef6_12211.ko=0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/09/stap_093caf88ac= c1736fbc7990f5177c0ef6_12211.ko=0D wait results: 29435 exp17 0 0 PASS: buildok/dentry-embedded.stp Running /home/prasadkr/systemtap/testsuite/buildok/dev-embedded.stp starting /home/prasadkr/systemtap/testsuite/buildok/dev-embedded.stp spawn1 stap -p4 /home/prasadkr/systemtap/testsuite/buildok/dev-embedded.stp spawn stap -p4 /home/prasadkr/systemtap/testsuite/buildok/dev-embedded.stp= =0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/99/stap_9987869927= f87e457015a2d0dd517e3c_6545.ko=0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/99/stap_9987869927= f87e457015a2d0dd517e3c_6545.ko=0D wait results: 29654 exp17 0 0 PASS: buildok/dev-embedded.stp Running /home/prasadkr/systemtap/testsuite/buildok/eight.stp starting /home/prasadkr/systemtap/testsuite/buildok/eight.stp spawn1 stap -p4 /home/prasadkr/systemtap/testsuite/buildok/eight.stp spawn stap -p4 /home/prasadkr/systemtap/testsuite/buildok/eight.stp=0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/0d/stap_0dd642033c= 5b2e213ff95e2af60e31d1_695.ko=0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/0d/stap_0dd642033c= 5b2e213ff95e2af60e31d1_695.ko=0D wait results: 29873 exp17 0 0 PASS: buildok/eight.stp Running /home/prasadkr/systemtap/testsuite/buildok/eighteen.stp starting /home/prasadkr/systemtap/testsuite/buildok/eighteen.stp spawn1 stap -p4 /home/prasadkr/systemtap/testsuite/buildok/eighteen.stp spawn stap -p4 /home/prasadkr/systemtap/testsuite/buildok/eighteen.stp=0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/dc/stap_dcd0f4313d= f14b8dde12290ae9726d20_1696.ko=0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/dc/stap_dcd0f4313d= f14b8dde12290ae9726d20_1696.ko=0D wait results: 30092 exp17 0 0 PASS: buildok/eighteen.stp Running /home/prasadkr/systemtap/testsuite/buildok/eleven.stp starting /home/prasadkr/systemtap/testsuite/buildok/eleven.stp spawn1 stap -p4 /home/prasadkr/systemtap/testsuite/buildok/eleven.stp spawn stap -p4 /home/prasadkr/systemtap/testsuite/buildok/eleven.stp=0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/3d/stap_3d43c35463= d8b740f52d5607ba1d4240_941.ko=0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/3d/stap_3d43c35463= d8b740f52d5607ba1d4240_941.ko=0D wait results: 30311 exp17 0 0 PASS: buildok/eleven.stp Running /home/prasadkr/systemtap/testsuite/buildok/endian-embedded.stp starting /home/prasadkr/systemtap/testsuite/buildok/endian-embedded.stp spawn1 stap -p4 /home/prasadkr/systemtap/testsuite/buildok/endian-embedded.= stp spawn stap -p4 /home/prasadkr/systemtap/testsuite/buildok/endian-embedded.s= tp=0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/3c/stap_3c6eccf8cb= 78b344a636808d7bce63a8_1296.ko=0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/3c/stap_3c6eccf8cb= 78b344a636808d7bce63a8_1296.ko=0D wait results: 30530 exp17 0 0 PASS: buildok/endian-embedded.stp Running /home/prasadkr/systemtap/testsuite/buildok/errno-embedded.stp starting /home/prasadkr/systemtap/testsuite/buildok/errno-embedded.stp spawn1 stap -p4 /home/prasadkr/systemtap/testsuite/buildok/errno-embedded.s= tp spawn stap -p4 /home/prasadkr/systemtap/testsuite/buildok/errno-embedded.st= p=0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/14/stap_14340979c3= 8320bd19cd9cb55ce992a9_7140.ko=0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/14/stap_14340979c3= 8320bd19cd9cb55ce992a9_7140.ko=0D wait results: 30749 exp17 0 0 PASS: buildok/errno-embedded.stp Running /home/prasadkr/systemtap/testsuite/buildok/fifteen.stp starting /home/prasadkr/systemtap/testsuite/buildok/fifteen.stp spawn1 stap -p4 /home/prasadkr/systemtap/testsuite/buildok/fifteen.stp spawn stap -p4 /home/prasadkr/systemtap/testsuite/buildok/fifteen.stp=0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/ea/stap_eac7f326b9= 1327e2f58f26b2e64e3807_1198.ko=0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/ea/stap_eac7f326b9= 1327e2f58f26b2e64e3807_1198.ko=0D wait results: 30968 exp17 0 0 PASS: buildok/fifteen.stp Running /home/prasadkr/systemtap/testsuite/buildok/five.stp starting /home/prasadkr/systemtap/testsuite/buildok/five.stp spawn1 stap -p4 /home/prasadkr/systemtap/testsuite/buildok/five.stp spawn stap -p4 /home/prasadkr/systemtap/testsuite/buildok/five.stp=0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/8e/stap_8ef5e17d4f= a488b56c1f000a45178922_959.ko=0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/8e/stap_8ef5e17d4f= a488b56c1f000a45178922_959.ko=0D wait results: 31187 exp17 0 0 PASS: buildok/five.stp Running /home/prasadkr/systemtap/testsuite/buildok/fortyfive.stp starting /home/prasadkr/systemtap/testsuite/buildok/fortyfive.stp spawn1 stap -p4 /home/prasadkr/systemtap/testsuite/buildok/fortyfive.stp spawn stap -p4 /home/prasadkr/systemtap/testsuite/buildok/fortyfive.stp=0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/62/stap_62b6d25d4d= 393c113b23792e1237ecce_12472.ko=0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/62/stap_62b6d25d4d= 393c113b23792e1237ecce_12472.ko=0D wait results: 31406 exp17 0 0 PASS: buildok/fortyfive.stp Running /home/prasadkr/systemtap/testsuite/buildok/fortyone.stp starting /home/prasadkr/systemtap/testsuite/buildok/fortyone.stp spawn1 stap -p4 /home/prasadkr/systemtap/testsuite/buildok/fortyone.stp spawn stap -p4 /home/prasadkr/systemtap/testsuite/buildok/fortyone.stp=0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/29/stap_2921be298a= 4ab5e678c105e257f78f38_2237.ko=0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/29/stap_2921be298a= 4ab5e678c105e257f78f38_2237.ko=0D wait results: 31625 exp17 0 0 PASS: buildok/fortyone.stp Running /home/prasadkr/systemtap/testsuite/buildok/fortysix.stp starting /home/prasadkr/systemtap/testsuite/buildok/fortysix.stp spawn1 stap -wp4 /home/prasadkr/systemtap/testsuite/buildok/fortysix.stp spawn stap -wp4 /home/prasadkr/systemtap/testsuite/buildok/fortysix.stp=0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/94/stap_9482a5be4c= c49664bcc16b51b913eb64_137971.ko=0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/94/stap_9482a5be4c= c49664bcc16b51b913eb64_137971.ko=0D wait results: 31844 exp17 0 0 PASS: buildok/fortysix.stp Running /home/prasadkr/systemtap/testsuite/buildok/fortytwo.stp starting /home/prasadkr/systemtap/testsuite/buildok/fortytwo.stp spawn2 /home/prasadkr/systemtap/testsuite/buildok/fortytwo.stp spawn /home/prasadkr/systemtap/testsuite/buildok/fortytwo.stp=0D /home/prasadkr/systemtap/testsuite/buildok/fortytwo.stp: do_readv_writev@fs= /read_write.c found, starting line 613=0D /home/prasadkr/systemtap/testsuite/buildok/fortytwo.stp: do_readv_writev@fs= /read_write.c found, starting line 613=0D probe kernel.statement("do_readv_writev@fs/read_write.c:613") {$file} # OK= =0D probe kernel.statement("do_readv_writev@fs/read_write.c:613") {$file} # OK= =0D probe kernel.statement("do_readv_writev@fs/read_write.c:614") {$file} # OK= =0D probe kernel.statement("do_readv_writev@fs/read_write.c:614") {$file} # OK= =0D probe kernel.statement("do_readv_writev@fs/read_write.c:615") {$file} # OK= =0D probe kernel.statement("do_readv_writev@fs/read_write.c:615") {$file} # OK= =0D probe kernel.statement("do_readv_writev@fs/read_write.c:617") {$file} # OK= =0D probe kernel.statement("do_readv_writev@fs/read_write.c:617") {$file} # OK= =0D probe kernel.statement("do_readv_writev@fs/read_write.c:619") {$file} # OK= =0D probe kernel.statement("do_readv_writev@fs/read_write.c:619") {$file} # OK= =0D probe kernel.statement("do_readv_writev@fs/read_write.c:623") {$file} # OK= =0D probe kernel.statement("do_readv_writev@fs/read_write.c:623") {$file} # OK= =0D probe kernel.statement("do_readv_writev@fs/read_write.c:628") {$file} # OK= =0D probe kernel.statement("do_readv_writev@fs/read_write.c:628") {$file} # OK= =0D probe kernel.statement("do_readv_writev@fs/read_write.c:633") {$file} # OK= =0D probe kernel.statement("do_readv_writev@fs/read_write.c:633") {$file} # OK= =0D probe kernel.statement("do_readv_writev@fs/read_write.c:638") {$file} # OK= =0D probe kernel.statement("do_readv_writev@fs/read_write.c:638") {$file} # OK= =0D wait results: 32063 exp17 0 0 PASS: buildok/fortytwo.stp Running /home/prasadkr/systemtap/testsuite/buildok/four.stp starting /home/prasadkr/systemtap/testsuite/buildok/four.stp spawn1 stap -p4 /home/prasadkr/systemtap/testsuite/buildok/four.stp spawn stap -p4 /home/prasadkr/systemtap/testsuite/buildok/four.stp=0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/8b/stap_8ba354c6ad= e95ae0373c3773e32f6598_357466.ko=0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/8b/stap_8ba354c6ad= e95ae0373c3773e32f6598_357466.ko=0D wait results: 1646 exp17 0 0 PASS: buildok/four.stp Running /home/prasadkr/systemtap/testsuite/buildok/fourteen-plus.stp starting /home/prasadkr/systemtap/testsuite/buildok/fourteen-plus.stp spawn1 stap -tp4 /home/prasadkr/systemtap/testsuite/buildok/fourteen-plus.s= tp spawn stap -tp4 /home/prasadkr/systemtap/testsuite/buildok/fourteen-plus.st= p=0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/69/stap_69bb8a1033= 8a835ca14e82fbf41ee5c2_1865.ko=0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/69/stap_69bb8a1033= 8a835ca14e82fbf41ee5c2_1865.ko=0D wait results: 1865 exp17 0 0 PASS: buildok/fourteen-plus.stp Running /home/prasadkr/systemtap/testsuite/buildok/fourteen.stp starting /home/prasadkr/systemtap/testsuite/buildok/fourteen.stp spawn1 stap -p4 /home/prasadkr/systemtap/testsuite/buildok/fourteen.stp spawn stap -p4 /home/prasadkr/systemtap/testsuite/buildok/fourteen.stp=0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/7f/stap_7f4b796904= 4a7dd352880b6c228ffcba_1865.ko=0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/7f/stap_7f4b796904= 4a7dd352880b6c228ffcba_1865.ko=0D wait results: 2085 exp17 0 0 PASS: buildok/fourteen.stp Running /home/prasadkr/systemtap/testsuite/buildok/gtod_init.stp starting /home/prasadkr/systemtap/testsuite/buildok/gtod_init.stp spawn1 stap -gp4 /home/prasadkr/systemtap/testsuite/buildok/gtod_init.stp spawn stap -gp4 /home/prasadkr/systemtap/testsuite/buildok/gtod_init.stp=0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/0c/stap_0c26ee4105= f749f82186c69687cdf75b_1225.ko=0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/0c/stap_0c26ee4105= f749f82186c69687cdf75b_1225.ko=0D wait results: 2304 exp17 0 0 PASS: buildok/gtod_init.stp Running /home/prasadkr/systemtap/testsuite/buildok/gtod_noinit.stp starting /home/prasadkr/systemtap/testsuite/buildok/gtod_noinit.stp spawn1 stap -gp4 /home/prasadkr/systemtap/testsuite/buildok/gtod_noinit.stp spawn stap -gp4 /home/prasadkr/systemtap/testsuite/buildok/gtod_noinit.stp= =0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/a3/stap_a3d52b4a50= f51c8cffdb9fb0a96ece67_875.ko=0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/a3/stap_a3d52b4a50= f51c8cffdb9fb0a96ece67_875.ko=0D wait results: 2523 exp17 0 0 PASS: buildok/gtod_noinit.stp Running /home/prasadkr/systemtap/testsuite/buildok/histogram_operator_in.stp starting /home/prasadkr/systemtap/testsuite/buildok/histogram_operator_in.s= tp spawn1 stap -p4 /home/prasadkr/systemtap/testsuite/buildok/histogram_operat= or_in.stp spawn stap -p4 /home/prasadkr/systemtap/testsuite/buildok/histogram_operato= r_in.stp=0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/ce/stap_ce9a41faae= dca275b48822ca86f2de52_1101.ko=0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/ce/stap_ce9a41faae= dca275b48822ca86f2de52_1101.ko=0D wait results: 2742 exp17 0 0 PASS: buildok/histogram_operator_in.stp Running /home/prasadkr/systemtap/testsuite/buildok/hwbkpt.stp starting /home/prasadkr/systemtap/testsuite/buildok/hwbkpt.stp spawn1 stap -wp4 /home/prasadkr/systemtap/testsuite/buildok/hwbkpt.stp spawn stap -wp4 /home/prasadkr/systemtap/testsuite/buildok/hwbkpt.stp=0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/4a/stap_4a9f8a1f41= 206318fe792b312104fcd5_621.ko=0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/4a/stap_4a9f8a1f41= 206318fe792b312104fcd5_621.ko=0D wait results: 2961 exp17 0 0 PASS: buildok/hwbkpt.stp Running /home/prasadkr/systemtap/testsuite/buildok/indent.stp starting /home/prasadkr/systemtap/testsuite/buildok/indent.stp spawn1 stap -p4 /home/prasadkr/systemtap/testsuite/buildok/indent.stp spawn stap -p4 /home/prasadkr/systemtap/testsuite/buildok/indent.stp=0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/92/stap_924f3cc00e= 0a25f7da2ea65ba7e68c2d_3020.ko=0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/92/stap_924f3cc00e= 0a25f7da2ea65ba7e68c2d_3020.ko=0D wait results: 3180 exp17 0 0 PASS: buildok/indent.stp Running /home/prasadkr/systemtap/testsuite/buildok/inet-embedded.stp starting /home/prasadkr/systemtap/testsuite/buildok/inet-embedded.stp spawn1 stap -p4 /home/prasadkr/systemtap/testsuite/buildok/inet-embedded.stp spawn stap -p4 /home/prasadkr/systemtap/testsuite/buildok/inet-embedded.stp= =0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/b3/stap_b37895289a= a147ffc8dd735f95ad77fb_1332.ko=0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/b3/stap_b37895289a= a147ffc8dd735f95ad77fb_1332.ko=0D wait results: 3399 exp17 0 0 PASS: buildok/inet-embedded.stp Running /home/prasadkr/systemtap/testsuite/buildok/inet_sock-embedded.stp starting /home/prasadkr/systemtap/testsuite/buildok/inet_sock-embedded.stp spawn1 stap -p4 /home/prasadkr/systemtap/testsuite/buildok/inet_sock-embedd= ed.stp spawn stap -p4 /home/prasadkr/systemtap/testsuite/buildok/inet_sock-embedde= d.stp=0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/11/stap_11993bde9b= ec26a6961be1d8116fd480_2563.ko=0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/11/stap_11993bde9b= ec26a6961be1d8116fd480_2563.ko=0D wait results: 3618 exp17 0 0 PASS: buildok/inet_sock-embedded.stp Running /home/prasadkr/systemtap/testsuite/buildok/ioblock-all-probes.stp starting /home/prasadkr/systemtap/testsuite/buildok/ioblock-all-probes.stp spawn1 stap -wp4 /home/prasadkr/systemtap/testsuite/buildok/ioblock-all-pro= bes.stp spawn stap -wp4 /home/prasadkr/systemtap/testsuite/buildok/ioblock-all-prob= es.stp=0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/bd/stap_bd4453403a= d9165f41dff3bec9f6ec15_1746.ko=0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/bd/stap_bd4453403a= d9165f41dff3bec9f6ec15_1746.ko=0D wait results: 4043 exp17 0 0 PASS: buildok/ioblock-all-probes.stp Running /home/prasadkr/systemtap/testsuite/buildok/ioblock-detailed.stp starting /home/prasadkr/systemtap/testsuite/buildok/ioblock-detailed.stp spawn1 stap -p4 /home/prasadkr/systemtap/testsuite/buildok/ioblock-detailed= .stp spawn stap -p4 /home/prasadkr/systemtap/testsuite/buildok/ioblock-detailed.= stp=0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/89/stap_8970a25d8f= 880e520cc2209638e466fd_26023.ko=0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/89/stap_8970a25d8f= 880e520cc2209638e466fd_26023.ko=0D wait results: 8594 exp17 0 0 PASS: buildok/ioblock-detailed.stp Running /home/prasadkr/systemtap/testsuite/buildok/ioblock-embedded.stp starting /home/prasadkr/systemtap/testsuite/buildok/ioblock-embedded.stp spawn1 stap -p4 /home/prasadkr/systemtap/testsuite/buildok/ioblock-embedded= .stp spawn stap -p4 /home/prasadkr/systemtap/testsuite/buildok/ioblock-embedded.= stp=0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/9e/stap_9ed63d0fd6= a3970bf25465762d259905_8790.ko=0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/9e/stap_9ed63d0fd6= a3970bf25465762d259905_8790.ko=0D wait results: 11697 exp17 0 0 PASS: buildok/ioblock-embedded.stp Running /home/prasadkr/systemtap/testsuite/buildok/ioscheduler-all-probes.s= tp starting /home/prasadkr/systemtap/testsuite/buildok/ioscheduler-all-probes.= stp spawn1 stap -wp4 /home/prasadkr/systemtap/testsuite/buildok/ioscheduler-all= -probes.stp spawn stap -wp4 /home/prasadkr/systemtap/testsuite/buildok/ioscheduler-all-= probes.stp=0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/e1/stap_e1b53a6f47= 5b7c3033487ff5e39edf88_3024.ko=0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/e1/stap_e1b53a6f47= 5b7c3033487ff5e39edf88_3024.ko=0D wait results: 11916 exp17 0 0 PASS: buildok/ioscheduler-all-probes.stp Running /home/prasadkr/systemtap/testsuite/buildok/ioscheduler-detailed.stp starting /home/prasadkr/systemtap/testsuite/buildok/ioscheduler-detailed.stp spawn1 stap -p4 /home/prasadkr/systemtap/testsuite/buildok/ioscheduler-deta= iled.stp spawn stap -p4 /home/prasadkr/systemtap/testsuite/buildok/ioscheduler-detai= led.stp=0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/e2/stap_e2c120ef2e= 845c00563aa8584f2db225_23273.ko=0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/e2/stap_e2c120ef2e= 845c00563aa8584f2db225_23273.ko=0D wait results: 12959 exp17 0 0 PASS: buildok/ioscheduler-detailed.stp Running /home/prasadkr/systemtap/testsuite/buildok/ioscheduler-embedded.stp starting /home/prasadkr/systemtap/testsuite/buildok/ioscheduler-embedded.stp spawn1 stap -p4 /home/prasadkr/systemtap/testsuite/buildok/ioscheduler-embe= dded.stp spawn stap -p4 /home/prasadkr/systemtap/testsuite/buildok/ioscheduler-embed= ded.stp=0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/0b/stap_0bfc581a8a= 29d699f77efa5f75851217_2390.ko=0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/0b/stap_0bfc581a8a= 29d699f77efa5f75851217_2390.ko=0D wait results: 13179 exp17 0 0 PASS: buildok/ioscheduler-embedded.stp Running /home/prasadkr/systemtap/testsuite/buildok/ip-embedded.stp starting /home/prasadkr/systemtap/testsuite/buildok/ip-embedded.stp spawn1 stap -p4 /home/prasadkr/systemtap/testsuite/buildok/ip-embedded.stp spawn stap -p4 /home/prasadkr/systemtap/testsuite/buildok/ip-embedded.stp=0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/16/stap_1633b27629= 038ba60bb8a921b56f56b3_4819.ko=0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/16/stap_1633b27629= 038ba60bb8a921b56f56b3_4819.ko=0D wait results: 13398 exp17 0 0 PASS: buildok/ip-embedded.stp Running /home/prasadkr/systemtap/testsuite/buildok/ipmib-all-probes.stp starting /home/prasadkr/systemtap/testsuite/buildok/ipmib-all-probes.stp spawn1 stap -p4 /home/prasadkr/systemtap/testsuite/buildok/ipmib-all-probes= .stp spawn stap -p4 /home/prasadkr/systemtap/testsuite/buildok/ipmib-all-probes.= stp=0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/3d/stap_3de49fa879= 664e4599a3d47e3e50b544_16154.ko=0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/3d/stap_3de49fa879= 664e4599a3d47e3e50b544_16154.ko=0D wait results: 13617 exp17 0 0 PASS: buildok/ipmib-all-probes.stp Running /home/prasadkr/systemtap/testsuite/buildok/ipmib-detailed.stp starting /home/prasadkr/systemtap/testsuite/buildok/ipmib-detailed.stp spawn1 stap -p4 /home/prasadkr/systemtap/testsuite/buildok/ipmib-detailed.s= tp spawn stap -p4 /home/prasadkr/systemtap/testsuite/buildok/ipmib-detailed.st= p=0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/de/stap_ded18c2f6e= 201985a8037394bf19b097_19680.ko=0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/de/stap_ded18c2f6e= 201985a8037394bf19b097_19680.ko=0D wait results: 13837 exp17 0 0 PASS: buildok/ipmib-detailed.stp Running /home/prasadkr/systemtap/testsuite/buildok/ipmib-embedded.stp starting /home/prasadkr/systemtap/testsuite/buildok/ipmib-embedded.stp spawn1 stap -p4 /home/prasadkr/systemtap/testsuite/buildok/ipmib-embedded.s= tp spawn stap -p4 /home/prasadkr/systemtap/testsuite/buildok/ipmib-embedded.st= p=0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/8f/stap_8fe74aa084= d1ad378292158577a019cb_9282.ko=0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/8f/stap_8fe74aa084= d1ad378292158577a019cb_9282.ko=0D wait results: 14056 exp17 0 0 PASS: buildok/ipmib-embedded.stp Running /home/prasadkr/systemtap/testsuite/buildok/irq-all-probes.stp starting /home/prasadkr/systemtap/testsuite/buildok/irq-all-probes.stp spawn1 stap -wp4 /home/prasadkr/systemtap/testsuite/buildok/irq-all-probes.= stp spawn stap -wp4 /home/prasadkr/systemtap/testsuite/buildok/irq-all-probes.s= tp=0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/0e/stap_0eec7a78ca= b681b9d52fc500c67ee185_14295.ko=0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/0e/stap_0eec7a78ca= b681b9d52fc500c67ee185_14295.ko=0D wait results: 14275 exp17 0 0 PASS: buildok/irq-all-probes.stp Running /home/prasadkr/systemtap/testsuite/buildok/irq-detailed.stp starting /home/prasadkr/systemtap/testsuite/buildok/irq-detailed.stp spawn1 stap -p4 /home/prasadkr/systemtap/testsuite/buildok/irq-detailed.stp spawn stap -p4 /home/prasadkr/systemtap/testsuite/buildok/irq-detailed.stp= =0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/90/stap_90e52e6e8f= 25e16de8634d6f8a972392_23189.ko=0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/90/stap_90e52e6e8f= 25e16de8634d6f8a972392_23189.ko=0D wait results: 14700 exp17 0 0 PASS: buildok/irq-detailed.stp Running /home/prasadkr/systemtap/testsuite/buildok/iterate_histogram_bucket= s.stp starting /home/prasadkr/systemtap/testsuite/buildok/iterate_histogram_bucke= ts.stp spawn1 stap -p4 /home/prasadkr/systemtap/testsuite/buildok/iterate_histogra= m_buckets.stp spawn stap -p4 /home/prasadkr/systemtap/testsuite/buildok/iterate_histogram= _buckets.stp=0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/54/stap_541de5af19= 807434ea0b26f1926350e3_1181.ko=0D /home/prasadkr/systemtap/testsuite/.systemtap-root/cache/54/stap_541de5af19= 807434ea0b26f1926350e3_1181.ko=0D wait results: 14919 exp17 0 0 PASS: buildok/iterate_histogram_buckets.stp Running /home/prasadkr/systemtap/testsuite/buildok/kprocess-all-probes.stp starting /home/prasadkr/systemtap/testsuite/buildok/kprocess-all-probes.stp spawn1 stap -wp4 /home/prasadkr/systemtap/testsuite/buildok/kprocess-all-pr= obes.stp spawn stap -wp4 /home/prasadkr/systemtap/testsuite/buildok/kprocess-all-pro= bes.stp=0D got a INT signal, interrupted by user=20 =3D=3D=3D systemtap Summary =3D=3D=3D # of expected passes 940 # of unexpected failures 206 # of expected failures 68 # of known failures 3 # of untested testcases 43 # of unsupported tests 1 runtest completed at Wed Feb 2 23:06:15 2011 --1yeeQ81UyVL57Vl7--