public inbox for systemtap@sourceware.org
 help / color / mirror / Atom feed
* Systemtap user space probing issue - Unknown symbol in module
@ 2016-07-18 10:58 buddhika chamith
  2016-07-18 18:11 ` David Smith
  2016-07-18 18:26 ` Josh Stone
  0 siblings, 2 replies; 9+ messages in thread
From: buddhika chamith @ 2016-07-18 10:58 UTC (permalink / raw)
  To: systemtap

Hi All,

Not sure if this has been addressed before. Checked the archive and
couldn't find a solution there. I tried user space probing with
Systemtap 3.0. But it gives me the following error.

$ sudo stap -e 'probe process("./h264ref").function("*") { printf("hello\n"); }'
ERROR: Couldn't insert module
'/tmp/stapsPVPF2/stap_b964ab648506800b700ce82c4e1cf5cd_167937.ko':
Unknown symbol in module
WARNING: /usr/bin/staprun exited with status: 1
Pass 5: run failed.  [man error::pass5]
Tip: /usr/share/doc/systemtap/README.Debian should help you get started.

My user account is in following groups.

stapdev stapusr stapsys

Kernel details

$ uname -a
Linux 3.19.0-28-generic #30~14.04.1-Ubuntu SMP  x86_64 x86_64 x86_64 GNU/Linux

$grep CONFIG_UPROBES /boot/config-`uname -r`
CONFIG_UPROBES=y

Systemtap version

$ stap --version
Systemtap translator/driver (version 3.0/0.158, non-git sources)
Copyright (C) 2005-2015 Red Hat, Inc. and others
This is free software; see the source for copying conditions.
enabled features: BOOST_SHARED_PTR BOOST_STRING_REF LIBSQLITE3 NLS
TR1_UNORDERED_MAP READLINE

What do I need to do in order to fix this?

Thanks

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: Systemtap user space probing issue - Unknown symbol in module
  2016-07-18 10:58 Systemtap user space probing issue - Unknown symbol in module buddhika chamith
@ 2016-07-18 18:11 ` David Smith
  2016-07-19 15:01   ` buddhika chamith
  2016-07-18 18:26 ` Josh Stone
  1 sibling, 1 reply; 9+ messages in thread
From: David Smith @ 2016-07-18 18:11 UTC (permalink / raw)
  To: buddhika chamith, systemtap

On 07/18/2016 05:58 AM, buddhika chamith wrote:
> Hi All,
> 
> Not sure if this has been addressed before. Checked the archive and
> couldn't find a solution there. I tried user space probing with
> Systemtap 3.0. But it gives me the following error.
> 
> $ sudo stap -e 'probe process("./h264ref").function("*") { printf("hello\n"); }'
> ERROR: Couldn't insert module
> '/tmp/stapsPVPF2/stap_b964ab648506800b700ce82c4e1cf5cd_167937.ko':
> Unknown symbol in module
> WARNING: /usr/bin/staprun exited with status: 1
> Pass 5: run failed.  [man error::pass5]
> Tip: /usr/share/doc/systemtap/README.Debian should help you get started.

... stuff deleted ...

> What do I need to do in order to fix this?

The first thing to try would be to see if your systemtap installation
can run simple systemtap scripts. The error you see of "Unknown symbol
in module" makes me doubt that it can. Can you look in your kernel logs
to see if the unknown symbol is actually listed?

Let's try the most basic systemtap script possible:

# stap -ve 'probe begin { printf("hello world\n"); exit() }'

Let's try a bit more challenging script:

# stap -ve 'probe nd_syscall.read { printf("hello world\n"); exit() }'

If those 2 scripts work, then we'll look at your executable you are
trying to probe. Was your 'h264ref' executable compiled with debugging
info (-g)?

Try the following:

# stap -vL 'process("./h264ref").function("*")'

-- 
David Smith
dsmith@redhat.com
Red Hat
http://www.redhat.com
256.217.0141 (direct)
256.837.0057 (fax)

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: Systemtap user space probing issue - Unknown symbol in module
  2016-07-18 10:58 Systemtap user space probing issue - Unknown symbol in module buddhika chamith
  2016-07-18 18:11 ` David Smith
@ 2016-07-18 18:26 ` Josh Stone
  1 sibling, 0 replies; 9+ messages in thread
From: Josh Stone @ 2016-07-18 18:26 UTC (permalink / raw)
  To: systemtap

On 07/18/2016 03:58 AM, buddhika chamith wrote:
> $ sudo stap -e 'probe process("./h264ref").function("*") { printf("hello\n"); }'
> ERROR: Couldn't insert module
> '/tmp/stapsPVPF2/stap_b964ab648506800b700ce82c4e1cf5cd_167937.ko':
> Unknown symbol in module
> WARNING: /usr/bin/staprun exited with status: 1
> Pass 5: run failed.  [man error::pass5]
> Tip: /usr/share/doc/systemtap/README.Debian should help you get started.

Unfortunately, this just means we got ENOENT from the init_module()
syscall, and we don't have more useful information.  But there should be
a line in dmesg that reports the specific symbol in question.

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: Systemtap user space probing issue - Unknown symbol in module
  2016-07-18 18:11 ` David Smith
@ 2016-07-19 15:01   ` buddhika chamith
  2016-07-19 15:09     ` buddhika chamith
  0 siblings, 1 reply; 9+ messages in thread
From: buddhika chamith @ 2016-07-19 15:01 UTC (permalink / raw)
  To: David Smith; +Cc: systemtap

Thanks. So I tried the following. The basic call that you've given
works (I was also able to get a similar one working before).

# stap -ve 'probe begin { printf("hello world\n"); exit() }'

Pass 1: parsed user script and 113 library scripts using
65884virt/29736res/4868shr/25512data kb, in 170usr/10sys/176real ms.
Pass 2: analyzed script: 1 probe, 1 function, 0 embeds, 0 globals
using 66676virt/31068res/5444shr/26304data kb, in 0usr/0sys/3real ms.
Pass 3: using cached
/u/budkahaw/.systemtap/cache/36/stap_3678792131e4a93931146ace8f2569d0_1020.c
Pass 4: using cached
/u/budkahaw/.systemtap/cache/36/stap_3678792131e4a93931146ace8f2569d0_1020.ko
Pass 5: starting run.
hello world
Pass 5: run completed in 0usr/40sys/367real ms.




But the next one fails. Missing kernel symbols?

# stap -ve 'probe nd_syscall.read { printf("hello world\n"); exit() }'

WARNING: Kernel function symbol table missing [man warning::symbols]
Pass 1: parsed user script and 113 library scripts using
65884virt/29804res/4936shr/25512data kb, in 130usr/0sys/132real ms.
semantic error: while resolving probe point: identifier 'kprobe' at
/opt/systemtap/3.0/share/systemtap/tapset/linux/nd_syscalls2.stp:1021:27
        source: probe __nd_syscall.read = kprobe.function("sys_read")
                                          ^

semantic error: no match

semantic error: while resolving probe point: identifier '__nd_syscall'
at :1011:2
        source: __nd_syscall.read
                ^

semantic error: no match

semantic error: while resolving probe point: identifier 'nd_syscall'
at <input>:1:7
        source: probe nd_syscall.read { printf("hello world\n"); exit() }
                      ^

semantic error: no match

Pass 2: analyzed script: 0 probes, 0 functions, 0 embeds, 0 globals
using 66676virt/31136res/5512shr/26304data kb, in 0usr/0sys/3real ms.
Pass 2: analysis failed.  [man error::pass2]




Interestingly the call # stap -vL 'process("./h264ref").function("*")'
seem to be working with it spitting out some information on probe
points. I am building this with debugging symbols.

Thanks



On Mon, Jul 18, 2016 at 2:11 PM, David Smith <dsmith@redhat.com> wrote:
> On 07/18/2016 05:58 AM, buddhika chamith wrote:
>> Hi All,
>>
>> Not sure if this has been addressed before. Checked the archive and
>> couldn't find a solution there. I tried user space probing with
>> Systemtap 3.0. But it gives me the following error.
>>
>> $ sudo stap -e 'probe process("./h264ref").function("*") { printf("hello\n"); }'
>> ERROR: Couldn't insert module
>> '/tmp/stapsPVPF2/stap_b964ab648506800b700ce82c4e1cf5cd_167937.ko':
>> Unknown symbol in module
>> WARNING: /usr/bin/staprun exited with status: 1
>> Pass 5: run failed.  [man error::pass5]
>> Tip: /usr/share/doc/systemtap/README.Debian should help you get started.
>
> ... stuff deleted ...
>
>> What do I need to do in order to fix this?
>
> The first thing to try would be to see if your systemtap installation
> can run simple systemtap scripts. The error you see of "Unknown symbol
> in module" makes me doubt that it can. Can you look in your kernel logs
> to see if the unknown symbol is actually listed?
>
> Let's try the most basic systemtap script possible:
>
> # stap -ve 'probe begin { printf("hello world\n"); exit() }'
>
> Let's try a bit more challenging script:
>
> # stap -ve 'probe nd_syscall.read { printf("hello world\n"); exit() }'
>
> If those 2 scripts work, then we'll look at your executable you are
> trying to probe. Was your 'h264ref' executable compiled with debugging
> info (-g)?
>
> Try the following:
>
> # stap -vL 'process("./h264ref").function("*")'
>
> --
> David Smith
> dsmith@redhat.com
> Red Hat
> http://www.redhat.com
> 256.217.0141 (direct)
> 256.837.0057 (fax)

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: Systemtap user space probing issue - Unknown symbol in module
  2016-07-19 15:01   ` buddhika chamith
@ 2016-07-19 15:09     ` buddhika chamith
  2016-07-19 15:30       ` Frank Ch. Eigler
  0 siblings, 1 reply; 9+ messages in thread
From: buddhika chamith @ 2016-07-19 15:09 UTC (permalink / raw)
  To: David Smith; +Cc: systemtap

I checked the dmesg log with stap -ve 'probe
process("./h264ref").function("*") { printf("hello\n"); }'

It shows some unknown symbols.

[7681057.827483] stap_610f349f374e883560aeeb9de1523c1f__13285: Unknown
symbol __tracepoint_sched_process_exit (err 0)
[7681057.827649] stap_610f349f374e883560aeeb9de1523c1f__13285: Unknown
symbol __tracepoint_sched_process_exec (err 0)
[7681057.827703] stap_610f349f374e883560aeeb9de1523c1f__13285: Unknown
symbol __tracepoint_sys_enter (err 0)
[7681057.827759] stap_610f349f374e883560aeeb9de1523c1f__13285: Unknown
symbol __tracepoint_sys_exit (err 0)
[7681057.827776] stap_610f349f374e883560aeeb9de1523c1f__13285: Unknown
symbol __tracepoint_sched_process_fork (err 0)

On Tue, Jul 19, 2016 at 11:01 AM, buddhika chamith
<chamibuddhika@gmail.com> wrote:
> Thanks. So I tried the following. The basic call that you've given
> works (I was also able to get a similar one working before).
>
> # stap -ve 'probe begin { printf("hello world\n"); exit() }'
>
> Pass 1: parsed user script and 113 library scripts using
> 65884virt/29736res/4868shr/25512data kb, in 170usr/10sys/176real ms.
> Pass 2: analyzed script: 1 probe, 1 function, 0 embeds, 0 globals
> using 66676virt/31068res/5444shr/26304data kb, in 0usr/0sys/3real ms.
> Pass 3: using cached
> /u/budkahaw/.systemtap/cache/36/stap_3678792131e4a93931146ace8f2569d0_1020.c
> Pass 4: using cached
> /u/budkahaw/.systemtap/cache/36/stap_3678792131e4a93931146ace8f2569d0_1020.ko
> Pass 5: starting run.
> hello world
> Pass 5: run completed in 0usr/40sys/367real ms.
>
>
>
>
> But the next one fails. Missing kernel symbols?
>
> # stap -ve 'probe nd_syscall.read { printf("hello world\n"); exit() }'
>
> WARNING: Kernel function symbol table missing [man warning::symbols]
> Pass 1: parsed user script and 113 library scripts using
> 65884virt/29804res/4936shr/25512data kb, in 130usr/0sys/132real ms.
> semantic error: while resolving probe point: identifier 'kprobe' at
> /opt/systemtap/3.0/share/systemtap/tapset/linux/nd_syscalls2.stp:1021:27
>         source: probe __nd_syscall.read = kprobe.function("sys_read")
>                                           ^
>
> semantic error: no match
>
> semantic error: while resolving probe point: identifier '__nd_syscall'
> at :1011:2
>         source: __nd_syscall.read
>                 ^
>
> semantic error: no match
>
> semantic error: while resolving probe point: identifier 'nd_syscall'
> at <input>:1:7
>         source: probe nd_syscall.read { printf("hello world\n"); exit() }
>                       ^
>
> semantic error: no match
>
> Pass 2: analyzed script: 0 probes, 0 functions, 0 embeds, 0 globals
> using 66676virt/31136res/5512shr/26304data kb, in 0usr/0sys/3real ms.
> Pass 2: analysis failed.  [man error::pass2]
>
>
>
>
> Interestingly the call # stap -vL 'process("./h264ref").function("*")'
> seem to be working with it spitting out some information on probe
> points. I am building this with debugging symbols.
>
> Thanks
>
>
>
> On Mon, Jul 18, 2016 at 2:11 PM, David Smith <dsmith@redhat.com> wrote:
>> On 07/18/2016 05:58 AM, buddhika chamith wrote:
>>> Hi All,
>>>
>>> Not sure if this has been addressed before. Checked the archive and
>>> couldn't find a solution there. I tried user space probing with
>>> Systemtap 3.0. But it gives me the following error.
>>>
>>> $ sudo stap -e 'probe process("./h264ref").function("*") { printf("hello\n"); }'
>>> ERROR: Couldn't insert module
>>> '/tmp/stapsPVPF2/stap_b964ab648506800b700ce82c4e1cf5cd_167937.ko':
>>> Unknown symbol in module
>>> WARNING: /usr/bin/staprun exited with status: 1
>>> Pass 5: run failed.  [man error::pass5]
>>> Tip: /usr/share/doc/systemtap/README.Debian should help you get started.
>>
>> ... stuff deleted ...
>>
>>> What do I need to do in order to fix this?
>>
>> The first thing to try would be to see if your systemtap installation
>> can run simple systemtap scripts. The error you see of "Unknown symbol
>> in module" makes me doubt that it can. Can you look in your kernel logs
>> to see if the unknown symbol is actually listed?
>>
>> Let's try the most basic systemtap script possible:
>>
>> # stap -ve 'probe begin { printf("hello world\n"); exit() }'
>>
>> Let's try a bit more challenging script:
>>
>> # stap -ve 'probe nd_syscall.read { printf("hello world\n"); exit() }'
>>
>> If those 2 scripts work, then we'll look at your executable you are
>> trying to probe. Was your 'h264ref' executable compiled with debugging
>> info (-g)?
>>
>> Try the following:
>>
>> # stap -vL 'process("./h264ref").function("*")'
>>
>> --
>> David Smith
>> dsmith@redhat.com
>> Red Hat
>> http://www.redhat.com
>> 256.217.0141 (direct)
>> 256.837.0057 (fax)

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: Systemtap user space probing issue - Unknown symbol in module
  2016-07-19 15:09     ` buddhika chamith
@ 2016-07-19 15:30       ` Frank Ch. Eigler
  2016-07-19 15:47         ` buddhika chamith
  0 siblings, 1 reply; 9+ messages in thread
From: Frank Ch. Eigler @ 2016-07-19 15:30 UTC (permalink / raw)
  To: buddhika chamith; +Cc: David Smith, systemtap


chamibuddhika wrote:

> [...]
> [7681057.827483] stap_610f349f374e883560aeeb9de1523c1f__13285: Unknown
> symbol __tracepoint_sched_process_exit (err 0)
> [...]

This is reminiscent of
https://www.sourceware.org/ml/systemtap/2016-q2/msg00082.html but
those incompatibilities were worked out in a stap version << 3.0.
Could you submit a fuller 'stap-report' output?

- FChE

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: Systemtap user space probing issue - Unknown symbol in module
  2016-07-19 15:30       ` Frank Ch. Eigler
@ 2016-07-19 15:47         ` buddhika chamith
  2016-07-19 18:32           ` David Smith
  0 siblings, 1 reply; 9+ messages in thread
From: buddhika chamith @ 2016-07-19 15:47 UTC (permalink / raw)
  To: Frank Ch. Eigler; +Cc: David Smith, systemtap

[-- Attachment #1: Type: text/plain, Size: 637 bytes --]

Please find it attached. I don't have sudo access to this particular
machine at the moment. But let me know if this is not enough
information without running as root.

On Tue, Jul 19, 2016 at 11:30 AM, Frank Ch. Eigler <fche@redhat.com> wrote:
>
> chamibuddhika wrote:
>
>> [...]
>> [7681057.827483] stap_610f349f374e883560aeeb9de1523c1f__13285: Unknown
>> symbol __tracepoint_sched_process_exit (err 0)
>> [...]
>
> This is reminiscent of
> https://www.sourceware.org/ml/systemtap/2016-q2/msg00082.html but
> those incompatibilities were worked out in a stap version << 3.0.
> Could you submit a fuller 'stap-report' output?
>
> - FChE

[-- Attachment #2: stap.txt --]
[-- Type: text/plain, Size: 73792 bytes --]


WARNING: rerun /opt/systemtap/3.0/bin/stap-report as root for fuller results.

== id ==
uid=1327967(budkahaw) gid=4002(students) groups=4002(students),124(stapdev),125(stapusr),126(stapsys),201(docker),998(docker),1065(crest),1075(crestall),10000(crest),11000(projects)
== stap -V ==
Systemtap translator/driver (version 3.0/0.158, non-git sources)
Copyright (C) 2005-2015 Red Hat, Inc. and others
This is free software; see the source for copying conditions.
enabled features: BOOST_SHARED_PTR BOOST_STRING_REF LIBSQLITE3 NLS TR1_UNORDERED_MAP READLINE
== which stap ==
/opt/systemtap/3.0/bin/stap
== cat /u/budkahaw/.systemtap/rc ==
cat: /u/budkahaw/.systemtap/rc: No such file or directory
== stap -vv --poison-cache -p4 -e 'probe begin {exit()}' ==
Systemtap translator/driver (version 3.0/0.158, non-git sources)
Copyright (C) 2005-2015 Red Hat, Inc. and others
This is free software; see the source for copying conditions.
enabled features: BOOST_SHARED_PTR BOOST_STRING_REF LIBSQLITE3 NLS TR1_UNORDERED_MAP READLINE
Created temporary directory "/tmp/stap6XHXyO"
Session arch: x86_64 release: 3.19.0-28-generic
Kernel symbol table /lib/modules/3.19.0-28-generic/build/System.map unavailable, (No such file or directory)
Kernel symbol table /boot/System.map-3.19.0-28-generic unavailable, (Permission denied)
WARNING: Kernel function symbol table missing [man warning::symbols]
Searched for library macro files: "/opt/systemtap/3.0/share/systemtap/tapset/linux/*.stpm", found: 5, processed: 5
Searched for library macro files: "/opt/systemtap/3.0/share/systemtap/tapset/*.stpm", found: 8, processed: 8
Searched: "/opt/systemtap/3.0/share/systemtap/tapset/linux/x86_64/*.stp", found: 3, processed: 3
Searched: "/opt/systemtap/3.0/share/systemtap/tapset/linux/*.stp", found: 71, processed: 71
Searched: "/opt/systemtap/3.0/share/systemtap/tapset/x86_64/*.stp", found: 1, processed: 1
Searched: "/opt/systemtap/3.0/share/systemtap/tapset/*.stp", found: 25, processed: 25
Pass 1: parsed user script and 113 library scripts using 65540virt/29648res/4908shr/25380data kb, in 160usr/0sys/168real ms.
Pass 2: analyzed script: 1 probe, 1 function, 0 embeds, 0 globals using 66332virt/30500res/4972shr/26172data kb, in 10usr/0sys/2real ms.
function recursion-analysis: max-nesting 0  non-recursive
1 statements for probe probe_2786
Pass 3: translated to C into "/tmp/stap6XHXyO/stap_91986094a6cf6bd17e23f57afe66a46e_989_src.c" using 66332virt/31356res/5660shr/26172data kb, in 0usr/0sys/0real ms.
Running env -uARCH -uKBUILD_EXTMOD -uCROSS_COMPILE -uKBUILD_IMAGE -uKCONFIG_CONFIG -uINSTALL_PATH PATH=/usr/bin:/bin:/opt/systemtap/3.0/bin:/u/budkahaw/Installations/autotools/bin:/u/budkahaw/Builds/cnc/bin:/opt/pkg-config/0.29.1/bin:/opt/git/2.7.4/bin:/opt/modules/Modules/3.2.10/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/bin:/sbin:/usr/bin:/usr/sbin make -C /lib/modules/3.19.0-28-generic/build M=/tmp/stap6XHXyO modules ARCH=x86_64 CONFIG_DEBUG_INFO= --no-print-directory -j17
  CC [M]  /tmp/stap6XHXyO/stap_91986094a6cf6bd17e23f57afe66a46e_989_src.o
  CC [M]  /tmp/stap6XHXyO/stap_91986094a6cf6bd17e23f57afe66a46e_989_aux_0.o
  LD [M]  /tmp/stap6XHXyO/stap_91986094a6cf6bd17e23f57afe66a46e_989.o
  Building modules, stage 2.
  MODPOST 1 modules
  CC      /tmp/stap6XHXyO/stap_91986094a6cf6bd17e23f57afe66a46e_989.mod.o
  LD [M]  /tmp/stap6XHXyO/stap_91986094a6cf6bd17e23f57afe66a46e_989.ko
Spawn waitpid result (0x0): 0
/u/budkahaw/.systemtap/cache/91/stap_91986094a6cf6bd17e23f57afe66a46e_989.ko
Pass 4: compiled C into "stap_91986094a6cf6bd17e23f57afe66a46e_989.ko" in 8220usr/880sys/9913real ms.
Cache cleaning skipped, interval not reached 264 s / 300 s.
Copying /tmp/stap6XHXyO/stap_91986094a6cf6bd17e23f57afe66a46e_989.ko to /u/budkahaw/.systemtap/cache/91/stap_91986094a6cf6bd17e23f57afe66a46e_989.ko
Copying /tmp/stap6XHXyO/stap_91986094a6cf6bd17e23f57afe66a46e_989_src.c to /u/budkahaw/.systemtap/cache/91/stap_91986094a6cf6bd17e23f57afe66a46e_989.c
Copying /tmp/stap6XHXyO/stapconf_5417f0e6f3078c5e105d46aa229aea3b_783.h to /u/budkahaw/.systemtap/cache/54/stapconf_5417f0e6f3078c5e105d46aa229aea3b_783.h
Running rm -rf /tmp/stap6XHXyO
Spawn waitpid result (0x0): 0
Removed temporary directory "/tmp/stap6XHXyO"
== gcc -v ==
Using built-in specs.
COLLECT_GCC=gcc
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/4.8/lto-wrapper
Target: x86_64-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Ubuntu 4.8.4-2ubuntu1~14.04.3' --with-bugurl=file:///usr/share/doc/gcc-4.8/README.Bugs --enable-languages=c,c++,java,go,d,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-4.8 --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.8 --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --enable-gnu-unique-object --disable-libmudflap --enable-plugin --with-system-zlib --disable-browser-plugin --enable-java-awt=gtk --enable-gtk-cairo --with-java-home=/usr/lib/jvm/java-1.5.0-gcj-4.8-amd64/jre --enable-java-home --with-jvm-root-dir=/usr/lib/jvm/java-1.5.0-gcj-4.8-amd64 --with-jvm-jar-dir=/usr/lib/jvm-exports/java-1.5.0-gcj-4.8-amd64 --with-arch-directory=amd64 --with-ecj-jar=/usr/share/java/eclipse-ecj.jar --enable-objc-gc --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu
Thread model: posix
gcc version 4.8.4 (Ubuntu 4.8.4-2ubuntu1~14.04.3) 
== uname -a ==
Linux cutter 3.19.0-28-generic #30~14.04.1-Ubuntu SMP Tue Sep 1 09:32:55 UTC 2015 x86_64 x86_64 x86_64 GNU/Linux
== dmesg | fgrep 'Linux version' ==
== dmesg | egrep 'stap|systemtap' | tail -n 10 ==
[7680603.333670] stap_610f349f374e883560aeeb9de1523c1f_1_6807: Unknown symbol __tracepoint_sched_process_exec (err 0)
[7680603.333764] stap_610f349f374e883560aeeb9de1523c1f_1_6807: Unknown symbol __tracepoint_sys_enter (err 0)
[7680603.333817] stap_610f349f374e883560aeeb9de1523c1f_1_6807: Unknown symbol __tracepoint_sys_exit (err 0)
[7680603.333861] stap_610f349f374e883560aeeb9de1523c1f_1_6807: Unknown symbol __tracepoint_sched_process_fork (err 0)
[7681057.827483] stap_610f349f374e883560aeeb9de1523c1f__13285: Unknown symbol __tracepoint_sched_process_exit (err 0)
[7681057.827649] stap_610f349f374e883560aeeb9de1523c1f__13285: Unknown symbol __tracepoint_sched_process_exec (err 0)
[7681057.827703] stap_610f349f374e883560aeeb9de1523c1f__13285: Unknown symbol __tracepoint_sys_enter (err 0)
[7681057.827759] stap_610f349f374e883560aeeb9de1523c1f__13285: Unknown symbol __tracepoint_sys_exit (err 0)
[7681057.827776] stap_610f349f374e883560aeeb9de1523c1f__13285: Unknown symbol __tracepoint_sched_process_fork (err 0)
[7681131.356572] stap_3b6e7baf586e7a19ee35d4433ec03a4f__14768: systemtap: 3.0/0.158, base: ffffffffc0eb7000, memory: 664data/48text/9ctx/2058net/190alloc kb, probes: 599
== cat /var/log/stap-server/log ==
cat: /var/log/stap-server/log: No such file or directory
== cat /proc/cpuinfo | egrep 'processor|vendor_id|model name' ==
processor	: 0
vendor_id	: GenuineIntel
model name	: Intel(R) Xeon(R) CPU E5-2670 0 @ 2.60GHz
processor	: 1
vendor_id	: GenuineIntel
model name	: Intel(R) Xeon(R) CPU E5-2670 0 @ 2.60GHz
processor	: 2
vendor_id	: GenuineIntel
model name	: Intel(R) Xeon(R) CPU E5-2670 0 @ 2.60GHz
processor	: 3
vendor_id	: GenuineIntel
model name	: Intel(R) Xeon(R) CPU E5-2670 0 @ 2.60GHz
processor	: 4
vendor_id	: GenuineIntel
model name	: Intel(R) Xeon(R) CPU E5-2670 0 @ 2.60GHz
processor	: 5
vendor_id	: GenuineIntel
model name	: Intel(R) Xeon(R) CPU E5-2670 0 @ 2.60GHz
processor	: 6
vendor_id	: GenuineIntel
model name	: Intel(R) Xeon(R) CPU E5-2670 0 @ 2.60GHz
processor	: 7
vendor_id	: GenuineIntel
model name	: Intel(R) Xeon(R) CPU E5-2670 0 @ 2.60GHz
processor	: 8
vendor_id	: GenuineIntel
model name	: Intel(R) Xeon(R) CPU E5-2670 0 @ 2.60GHz
processor	: 9
vendor_id	: GenuineIntel
model name	: Intel(R) Xeon(R) CPU E5-2670 0 @ 2.60GHz
processor	: 10
vendor_id	: GenuineIntel
model name	: Intel(R) Xeon(R) CPU E5-2670 0 @ 2.60GHz
processor	: 11
vendor_id	: GenuineIntel
model name	: Intel(R) Xeon(R) CPU E5-2670 0 @ 2.60GHz
processor	: 12
vendor_id	: GenuineIntel
model name	: Intel(R) Xeon(R) CPU E5-2670 0 @ 2.60GHz
processor	: 13
vendor_id	: GenuineIntel
model name	: Intel(R) Xeon(R) CPU E5-2670 0 @ 2.60GHz
processor	: 14
vendor_id	: GenuineIntel
model name	: Intel(R) Xeon(R) CPU E5-2670 0 @ 2.60GHz
processor	: 15
vendor_id	: GenuineIntel
model name	: Intel(R) Xeon(R) CPU E5-2670 0 @ 2.60GHz
== dpkg --list | egrep 'systemtap|elfutils|kernel|linux|gcc|dyninst|avahi|nss|nspr|dejagnu|libdw' | awk '{print $2,$3}' | sort ==
autofs 5.0.7-3ubuntu3.2
elfutils 0.158-0ubuntu5.2
gcc 4:4.8.2-1ubuntu6
gcc-4.8 4.8.4-2ubuntu1~14.04.3
gcc-4.8-base:amd64 4.8.4-2ubuntu1~14.04.3
gcc-4.8-multilib 4.8.4-2ubuntu1~14.04.3
gcc-4.9-base:amd64 4.9.3-0ubuntu4
gcc-multilib 4:4.8.2-1ubuntu6
insserv 1.14.0-5ubuntu2
ipmitool 1.8.13-1ubuntu0.6
kmod 15-0ubuntu6
lib32gcc1 1:4.9.3-0ubuntu4
lib32gcc-4.8-dev 4.8.4-2ubuntu1~14.04.3
libaio1:amd64 0.3.109-4
libapache2-mod-nss 1.0.8-4fakesync1
libavahi-client3:amd64 0.6.31-4ubuntu1
libavahi-common3:amd64 0.6.31-4ubuntu1
libavahi-common-data:amd64 0.6.31-4ubuntu1
libavahi-glib1:amd64 0.6.31-4ubuntu1
libcurl4-openssl-dev:amd64 7.35.0-1ubuntu2.6
libdrm2:amd64 2.4.64-1~ubuntu14.04.1
libdrm-amdgpu1:amd64 2.4.64-1~ubuntu14.04.1
libdrm-dev:amd64 2.4.64-1~ubuntu14.04.1
libdrm-intel1:amd64 2.4.64-1~ubuntu14.04.1
libdrm-nouveau2:amd64 2.4.64-1~ubuntu14.04.1
libdrm-radeon1:amd64 2.4.64-1~ubuntu14.04.1
libdw1:amd64 0.158-0ubuntu5.2
libdw-dev:amd64 0.158-0ubuntu5.2
libgcc1:amd64 1:4.9.3-0ubuntu4
libgcc-4.8-dev:amd64 4.8.4-2ubuntu1~14.04.3
libgnutls-openssl27:amd64 2.12.23-12ubuntu2.5
libnspr4:amd64 2:4.12-0ubuntu0.14.04.1
libnss3-1d:amd64 2:3.23-0ubuntu0.14.04.1
libnss3:amd64 2:3.23-0ubuntu0.14.04.1
libnss3-nssdb 2:3.23-0ubuntu0.14.04.1
libnss3-tools 2:3.23-0ubuntu0.14.04.1
libnss-ldap:amd64 264-2.2ubuntu4.14.04.1
libselinux1:amd64 2.2.2-1ubuntu0.1
libv4l-0:amd64 1.0.1-1
libv4lconvert0:amd64 1.0.1-1
libx32gcc1 1:4.9.3-0ubuntu4
libx32gcc-4.8-dev 4.8.4-2ubuntu1~14.04.3
libzmq1:amd64 2.2.0+dfsg-5
libzmq-dev:amd64 2.2.0+dfsg-5
linux-firmware 1.127.22
linux-generic-lts-vivid 3.19.0.65.47
linux-headers-3.13.0-24 3.13.0-24.47
linux-headers-3.13.0-24-generic 3.13.0-24.47
linux-headers-3.13.0-88 3.13.0-88.135
linux-headers-3.13.0-88-generic 3.13.0-88.135
linux-headers-3.13.0-91 3.13.0-91.138
linux-headers-3.13.0-91-generic 3.13.0-91.138
linux-headers-3.13.0-92 3.13.0-92.139
linux-headers-3.13.0-92-generic 3.13.0-92.139
linux-headers-3.19.0-26 3.19.0-26.28~14.04.1
linux-headers-3.19.0-26-generic 3.19.0-26.28~14.04.1
linux-headers-3.19.0-28 3.19.0-28.30~14.04.1
linux-headers-3.19.0-28-generic 3.19.0-28.30~14.04.1
linux-headers-3.19.0-61 3.19.0-61.69~14.04.1
linux-headers-3.19.0-61-generic 3.19.0-61.69~14.04.1
linux-headers-3.19.0-64 3.19.0-64.72~14.04.1
linux-headers-3.19.0-64-generic 3.19.0-64.72~14.04.1
linux-headers-3.19.0-65 3.19.0-65.73~14.04.1
linux-headers-3.19.0-65-generic 3.19.0-65.73~14.04.1
linux-headers-generic 3.13.0.92.99
linux-headers-generic-lts-trusty 3.13.0.92.99
linux-headers-generic-lts-vivid 3.19.0.65.47
linux-image-3.13.0-24-generic 3.13.0-24.47
linux-image-3.13.0-88-generic 3.13.0-88.135
linux-image-3.13.0-91-generic 3.13.0-91.138
linux-image-3.13.0-92-generic 3.13.0-92.139
linux-image-3.19.0-26-generic 3.19.0-26.28~14.04.1
linux-image-3.19.0-28-generic 3.19.0-28.30~14.04.1
linux-image-3.19.0-61-generic 3.19.0-61.69~14.04.1
linux-image-3.19.0-64-generic 3.19.0-64.72~14.04.1
linux-image-3.19.0-65-generic 3.19.0-65.73~14.04.1
linux-image-extra-3.13.0-24-generic 3.13.0-24.47
linux-image-extra-3.13.0-88-generic 3.13.0-88.135
linux-image-extra-3.13.0-91-generic 3.13.0-91.138
linux-image-extra-3.13.0-92-generic 3.13.0-92.139
linux-image-extra-3.19.0-26-generic 3.19.0-26.28~14.04.1
linux-image-extra-3.19.0-28-generic 3.19.0-28.30~14.04.1
linux-image-extra-3.19.0-61-generic 3.19.0-61.69~14.04.1
linux-image-extra-3.19.0-64-generic 3.19.0-64.72~14.04.1
linux-image-extra-3.19.0-65-generic 3.19.0-65.73~14.04.1
linux-image-generic 3.13.0.92.99
linux-image-generic-lts-trusty 3.13.0.92.99
linux-image-generic-lts-vivid 3.19.0.65.47
linux-libc-dev:amd64 3.13.0-92.139
linux-lts-vivid-tools-3.19.0-26 3.19.0-26.28~14.04.1
linux-lts-vivid-tools-3.19.0-28 3.19.0-28.30~14.04.1
linux-lts-vivid-tools-3.19.0-61 3.19.0-61.69~14.04.1
linux-lts-vivid-tools-3.19.0-64 3.19.0-64.72~14.04.1
linux-lts-vivid-tools-3.19.0-65 3.19.0-65.73~14.04.1
linux-tools-3.19.0-26-generic 3.19.0-26.28~14.04.1
linux-tools-3.19.0-28-generic 3.19.0-28.30~14.04.1
linux-tools-3.19.0-61-generic 3.19.0-61.69~14.04.1
linux-tools-3.19.0-64-generic 3.19.0-64.72~14.04.1
linux-tools-3.19.0-65-generic 3.19.0-65.73~14.04.1
linux-tools-common 3.13.0-92.139
linux-tools-virtual-lts-vivid 3.19.0.65.47
nfs-kernel-server 1:1.2.8-6ubuntu1.2
openssh-client 1:6.6p1-2ubuntu2.7
openssh-server 1:6.6p1-2ubuntu2.7
openssh-sftp-server 1:6.6p1-2ubuntu2.7
openssl 1.0.1f-1ubuntu2.19
openssl-blacklist 0.5-3
python-openssl 0.13-2ubuntu6
r-cran-kernsmooth 2.23-10-2
rsyslog 7.4.4-1ubuntu2.6
syslinux 3:4.05+dfsg-6+deb8u1
syslinux-common 3:4.05+dfsg-6+deb8u1
systemtap 2.3-1ubuntu1.4
systemtap-common 2.3-1ubuntu1.4
systemtap-runtime 2.3-1ubuntu1.4
util-linux 2.20.1-5.1ubuntu20.7
== egrep 'PROBE|TRACE|MARKER|KALLSYM|_DEBUG_|LOCKDEP|LOCKING|MODULE|FENTRY|_SIG' /lib/modules/3.19.0-28-generic/build/.config | grep -v not.set | sort | fmt -w 80 ==
CONFIG_AD_SIGMA_DELTA=m CONFIG_AIC79XX_DEBUG_MASK=0 CONFIG_AIC7XXX_DEBUG_MASK=0
CONFIG_ARCH_HAS_DEBUG_STRICT_USER_COPY_CHECKS=y CONFIG_ARCH_MEMORY_PROBE=y
CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y CONFIG_ARCH_SUPPORTS_UPROBES=y
CONFIG_BLK_DEV_IO_TRACE=y CONFIG_CAPI_TRACE=y CONFIG_CB710_DEBUG_ASSUMPTIONS=y
CONFIG_CHECK_SIGNATURE=y CONFIG_COMPAT_OLD_SIGACTION=y
CONFIG_CONTEXT_SWITCH_TRACER=y CONFIG_DEBUG_BUGVERBOSE=y CONFIG_DEBUG_FS=y
CONFIG_DEBUG_KERNEL=y CONFIG_DEBUG_RODATA=y CONFIG_DEBUG_SET_MODULE_RONX=y
CONFIG_DYNAMIC_FTRACE_WITH_REGS=y CONFIG_DYNAMIC_FTRACE=y CONFIG_FILE_LOCKING=y
CONFIG_FTRACE_MCOUNT_RECORD=y CONFIG_FTRACE_SYSCALLS=y CONFIG_FTRACE=y
CONFIG_FUNCTION_GRAPH_TRACER=y CONFIG_FUNCTION_TRACER=y
CONFIG_GENERIC_CPU_AUTOPROBE=y CONFIG_GENERIC_IRQ_PROBE=y
CONFIG_GENERIC_TRACER=y CONFIG_GFS2_FS_LOCKING_DLM=y
CONFIG_HAVE_ARCH_TRACEHOOK=y CONFIG_HAVE_DEBUG_KMEMLEAK=y
CONFIG_HAVE_DEBUG_STACKOVERFLOW=y CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y
CONFIG_HAVE_DYNAMIC_FTRACE=y CONFIG_HAVE_FENTRY=y
CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y
CONFIG_HAVE_FUNCTION_TRACER=y CONFIG_HAVE_KPROBES_ON_FTRACE=y
CONFIG_HAVE_KPROBES=y CONFIG_HAVE_KRETPROBES=y CONFIG_HAVE_MMIOTRACE_SUPPORT=y
CONFIG_HAVE_OPTPROBES=y CONFIG_HAVE_SYSCALL_TRACEPOINTS=y
CONFIG_INTEGRITY_SIGNATURE=y CONFIG_IPMI_SI_PROBE_DEFAULTS=y
CONFIG_KALLSYMS_ALL=y CONFIG_KALLSYMS=y CONFIG_KEXEC_VERIFY_SIG=y
CONFIG_KEYS_DEBUG_PROC_KEYS=y CONFIG_KPROBE_EVENT=y CONFIG_KPROBES_ON_FTRACE=y
CONFIG_KPROBES=y CONFIG_KRETPROBES=y CONFIG_KVM_DEBUG_FS=y
CONFIG_LOCKDEP_SUPPORT=y CONFIG_MMIOTRACE=y CONFIG_MODULE_SIG_ALL=y
CONFIG_MODULE_SIG_HASH="sha512" CONFIG_MODULE_SIG_SHA512=y CONFIG_MODULE_SIG=y
CONFIG_MODULE_SRCVERSION_ALL=y CONFIG_MODULES_USE_ELF_RELA=y
CONFIG_MODULES=y CONFIG_MODULE_UNLOAD=y CONFIG_MTD_GEN_PROBE=m
CONFIG_MTD_JEDECPROBE=m CONFIG_MTD_NAND_DISKONCHIP_PROBE_ADDRESS=0
CONFIG_MTD_QINFO_PROBE=m CONFIG_NCPFS_IOCTL_LOCKING=y
CONFIG_NCPFS_PACKET_SIGNING=y CONFIG_NET_DCCPPROBE=m
CONFIG_NETFILTER_XT_TARGET_TRACE=m CONFIG_NET_SCTPPROBE=m
CONFIG_NET_TCPPROBE=m CONFIG_NOP_TRACER=y CONFIG_NOUVEAU_DEBUG_DEFAULT=3
CONFIG_OCFS2_DEBUG_MASKLOG=y CONFIG_OLD_SIGSUSPEND3=y CONFIG_OPTPROBES=y
CONFIG_PM_TRACE_RTC=y CONFIG_PM_TRACE=y CONFIG_PROBE_EVENTS=y
CONFIG_SCHED_TRACER=y CONFIG_SCSI_IPR_TRACE=y CONFIG_SIGMATEL_FIR=m
CONFIG_SIGNALFD=y CONFIG_SIGNATURE=y CONFIG_SND_HDA_CODEC_SIGMATEL=m
CONFIG_SND_SOC_SIGMADSP_I2C=m CONFIG_SND_SOC_SIGMADSP=m CONFIG_STACK_TRACER=y
CONFIG_STACKTRACE_SUPPORT=y CONFIG_STACKTRACE=y CONFIG_SYSCTL_EXCEPTION_TRACE=y
CONFIG_TRACE_CLOCK=y CONFIG_TRACE_IRQFLAGS_SUPPORT=y CONFIG_TRACEPOINTS=y
CONFIG_TRACER_MAX_TRACE=y CONFIG_TRACE_ROUTER=m CONFIG_TRACER_SNAPSHOT=y
CONFIG_TRACE_SINK=m CONFIG_UPROBE_EVENT=y CONFIG_UPROBES=y
CONFIG_USER_STACKTRACE_SUPPORT=y CONFIG_VERSION_SIGNATURE="Ubuntu
3.19.0-28.30~14.04.1-generic 3.19.8-ckt5" CONFIG_WIMAX_DEBUG_LEVEL=8
CONFIG_WIMAX_I2400M_DEBUG_LEVEL=8
== find /debugfs /proc /sys /dev /sys/kernel/debug -type f -path '*kprobe*' -o -path '*yama*' 2>/dev/null | xargs grep -H . ==
/proc/sys/debug/kprobes-optimization:0
grep: /proc/sys/kernel/yama: Is a directory
/proc/sys/kernel/yama/ptrace_scope:0
== lsmod ==
Module                  Size  Used by
dccp_diag              16384  0 
dccp                   73728  1 dccp_diag
tcp_diag               16384  0 
udp_diag               16384  0 
inet_diag              20480  3 tcp_diag,dccp_diag,udp_diag
unix_diag              16384  0 
xt_recent              20480  0 
veth                   16384  0 
ummunot                16384  0 
8021q                  36864  0 
garp                   16384  1 8021q
mrp                    20480  1 8021q
autofs4                40960  2 
ipt_MASQUERADE         16384  1 
nf_nat_masquerade_ipv4    16384  1 ipt_MASQUERADE
iptable_nat            16384  1 
nf_nat_ipv4            16384  1 iptable_nat
br_netfilter           20480  0 
bridge                110592  1 br_netfilter
stp                    16384  2 garp,bridge
llc                    16384  3 stp,garp,bridge
aufs                  212992  0 
nfsd                  294912  37 
auth_rpcgss            61440  1 nfsd
nfs_acl                16384  1 nfsd
nfs                   245760  0 
binfmt_misc            20480  1 
lockd                  94208  2 nfs,nfsd
grace                  16384  2 nfsd,lockd
sunrpc                323584  115 nfs,nfsd,auth_rpcgss,lockd,nfs_acl
fscache                65536  1 nfs
ip6t_REJECT            16384  1 
nf_reject_ipv6         16384  1 ip6t_REJECT
nf_log_ipv6            16384  5 
xt_hl                  16384  6 
ip6t_rt                16384  3 
nf_conntrack_ipv6      20480  8 
ib_srpt                53248  0 
nf_defrag_ipv6         36864  1 nf_conntrack_ipv6
target_core_mod       372736  1 ib_srpt
ipt_REJECT             16384  1 
nf_reject_ipv4         16384  1 ipt_REJECT
configfs               36864  2 target_core_mod
nf_log_ipv4            16384  5 
nf_log_common          16384  2 nf_log_ipv4,nf_log_ipv6
xt_LOG                 16384  10 
ib_srp                 49152  0 
scsi_transport_srp     24576  1 ib_srp
xt_multiport           16384  1 
ib_iser                53248  0 
libiscsi               57344  1 ib_iser
xt_limit               16384  13 
scsi_transport_iscsi   102400  2 ib_iser,libiscsi
xt_tcpudp              16384  85 
ib_ipoib               77824  0 
ipmi_ssif              24576  0 
ipmi_devintf           20480  2 
intel_rapl             20480  0 
iosf_mbi               16384  1 intel_rapl
x86_pkg_temp_thermal    16384  0 
intel_powerclamp       20480  0 
coretemp               16384  0 
dcdbas                 16384  0 
kvm_intel             151552  0 
xt_addrtype            16384  6 
kvm                   479232  1 kvm_intel
crct10dif_pclmul       16384  0 
crc32_pclmul           16384  0 
ghash_clmulni_intel    16384  0 
aesni_intel           172032  0 
aes_x86_64             20480  1 aesni_intel
lrw                    16384  1 aesni_intel
gf128mul               16384  1 lrw
glue_helper            16384  1 aesni_intel
ablk_helper            16384  1 aesni_intel
nf_conntrack_ipv4      16384  10 
cryptd                 20480  3 ghash_clmulni_intel,aesni_intel,ablk_helper
nf_defrag_ipv4         16384  1 nf_conntrack_ipv4
xt_conntrack           16384  17 
joydev                 20480  0 
ip6table_filter        16384  1 
ip6_tables             28672  1 ip6table_filter
nf_conntrack_netbios_ns    16384  0 
nf_conntrack_broadcast    16384  1 nf_conntrack_netbios_ns
nf_nat_ftp             16384  0 
nf_nat                 24576  3 nf_nat_ftp,nf_nat_ipv4,nf_nat_masquerade_ipv4
sb_edac                28672  0 
nf_conntrack_ftp       20480  1 nf_nat_ftp
edac_core              53248  1 sb_edac
nf_conntrack          106496  10 nf_nat_ftp,nf_conntrack_netbios_ns,nf_nat,nf_nat_ipv4,xt_conntrack,nf_nat_masquerade_ipv4,nf_conntrack_broadcast,nf_conntrack_ftp,nf_conntrack_ipv4,nf_conntrack_ipv6
iptable_filter         16384  1 
ip_tables              28672  2 iptable_filter,iptable_nat
x_tables               36864  16 ip6table_filter,xt_hl,xt_recent,ip_tables,xt_tcpudp,ipt_MASQUERADE,xt_limit,xt_conntrack,xt_LOG,xt_multiport,iptable_filter,ip6t_rt,ipt_REJECT,ip6_tables,xt_addrtype,ip6t_REJECT
mei_me                 20480  0 
ipmi_si                57344  1 
lpc_ich                24576  0 
mei                    90112  1 mei_me
ipmi_msghandler        49152  3 ipmi_ssif,ipmi_devintf,ipmi_si
8250_fintek            16384  0 
acpi_pad               20480  0 
wmi                    20480  0 
mac_hid                16384  0 
acpi_power_meter       20480  0 
ib_qib                393216  4 
dca                    16384  1 ib_qib
iw_nes                167936  0 
ib_mthca              131072  0 
mlx4_ib               147456  0 
mlx4_en               102400  0 
vxlan                  40960  1 mlx4_en
ip6_udp_tunnel         16384  1 vxlan
udp_tunnel             16384  1 vxlan
mlx4_core             270336  2 mlx4_en,mlx4_ib
ib_ipath              266240  0 
iw_cxgb4              172032  0 
cxgb4                 167936  1 iw_cxgb4
iw_cxgb3              126976  0 
cxgb3                 159744  1 iw_cxgb3
iw_c2                  73728  0 
rdma_ucm               24576  2 
rdma_cm                45056  2 ib_iser,rdma_ucm
iw_cm                  40960  3 iw_cxgb4,rdma_cm,iw_nes
ib_umad                24576  0 
ib_ucm                 20480  0 
ib_uverbs              49152  16 ib_ucm,rdma_ucm
shpchp                 40960  0 
ib_cm                  45056  5 rdma_cm,ib_srp,ib_ucm,ib_srpt,ib_ipoib
ib_sa                  36864  6 rdma_cm,ib_cm,mlx4_ib,ib_srp,rdma_ucm,ib_ipoib
ib_mad                 49152  7 ib_cm,ib_sa,mlx4_ib,ib_qib,ib_srpt,ib_umad,ib_mthca
ib_core                98304  21 iw_cxgb3,iw_cxgb4,rdma_cm,ib_cm,ib_sa,iw_c2,iw_cm,mlx4_ib,ib_mad,ib_qib,ib_srp,ib_ucm,iw_nes,ib_iser,ib_srpt,ib_umad,ib_uverbs,rdma_ucm,ib_ipath,ib_ipoib,ib_mthca
ib_addr                20480  3 rdma_cm,ib_core,rdma_ucm
lp                     20480  0 
parport                45056  1 lp
raid10                 49152  0 
raid456                94208  15 
async_raid6_recov      20480  1 raid456
async_memcpy           16384  2 raid456,async_raid6_recov
async_pq               16384  2 raid456,async_raid6_recov
async_xor              16384  3 async_pq,raid456,async_raid6_recov
async_tx               16384  5 async_pq,raid456,async_xor,async_memcpy,async_raid6_recov
xor                    24576  1 async_xor
hid_generic            16384  0 
bnx2x                 724992  0 
raid6_pq               98304  2 async_pq,async_raid6_recov
raid1                  40960  0 
raid0                  20480  0 
ptp                    20480  2 bnx2x,mlx4_en
usbhid                 53248  0 
pps_core               20480  1 ptp
multipath              16384  0 
ahci                   36864  50 
hid                   110592  2 hid_generic,usbhid
mdio                   16384  2 bnx2x,cxgb3
libahci                32768  1 ahci
libcrc32c              16384  2 bnx2x,iw_nes
linear                 16384  0 
== avahi-browse -r -t _stap._tcp ==
sh: 1: avahi-browse: not found
== ps awux | grep stap ==
budkahaw 40956  0.0  0.0   4448  1668 pts/67   S+   11:37   0:00 /bin/sh /opt/systemtap/3.0/bin/stap-report
budkahaw 41885  0.0  0.0   4448   784 pts/67   S+   11:38   0:00 sh -c ps awux | grep stap
budkahaw 41887  0.0  0.0  11752  2228 pts/67   S+   11:38   0:00 grep stap
budkahaw 45818  0.0  0.0   8436   264 ?        S    Jun11   0:00 make -C /lib/modules/3.19.0-28-generic/build M=/tmp/stapZAYrey modules ARCH=x86_64 CONFIG_DEBUG_INFO= -s --no-print-directory -j17
== (eu-readelf -n /boot/vmlinuz-3.19.0-28-generic || readelf -n /boot/vmlinuz-3.19.0-28-generic) | grep Build ==
eu-readelf: cannot open input file: Permission denied
readelf: Error: Input file '/boot/vmlinuz-3.19.0-28-generic' is not readable.
== hexdump -C /sys/kernel/notes ==
00000000  04 00 00 00 06 00 00 00  06 00 00 00 58 65 6e 00  |............Xen.|
00000010  6c 69 6e 75 78 00 00 00  04 00 00 00 04 00 00 00  |linux...........|
00000020  07 00 00 00 58 65 6e 00  32 2e 36 00 04 00 00 00  |....Xen.2.6.....|
00000030  08 00 00 00 05 00 00 00  58 65 6e 00 78 65 6e 2d  |........Xen.xen-|
00000040  33 2e 30 00 04 00 00 00  08 00 00 00 03 00 00 00  |3.0.............|
00000050  58 65 6e 00 00 00 00 80  ff ff ff ff 04 00 00 00  |Xen.............|
00000060  08 00 00 00 01 00 00 00  58 65 6e 00 f0 d1 d3 81  |........Xen.....|
00000070  ff ff ff ff 04 00 00 00  08 00 00 00 02 00 00 00  |................|
00000080  58 65 6e 00 00 10 00 81  ff ff ff ff 04 00 00 00  |Xen.............|
00000090  74 00 00 00 0a 00 00 00  58 65 6e 00 21 77 72 69  |t.......Xen.!wri|
000000a0  74 61 62 6c 65 5f 70 61  67 65 5f 74 61 62 6c 65  |table_page_table|
000000b0  73 7c 70 61 65 5f 70 67  64 69 72 5f 61 62 6f 76  |s|pae_pgdir_abov|
000000c0  65 5f 34 67 62 7c 77 72  69 74 61 62 6c 65 5f 64  |e_4gb|writable_d|
000000d0  65 73 63 72 69 70 74 6f  72 5f 74 61 62 6c 65 73  |escriptor_tables|
000000e0  7c 61 75 74 6f 5f 74 72  61 6e 73 6c 61 74 65 64  ||auto_translated|
000000f0  5f 70 68 79 73 6d 61 70  7c 73 75 70 65 72 76 69  |_physmap|supervi|
00000100  73 6f 72 5f 6d 6f 64 65  5f 6b 65 72 6e 65 6c 00  |sor_mode_kernel.|
00000110  04 00 00 00 04 00 00 00  11 00 00 00 58 65 6e 00  |............Xen.|
00000120  0d 09 00 00 04 00 00 00  04 00 00 00 09 00 00 00  |................|
00000130  58 65 6e 00 79 65 73 00  04 00 00 00 08 00 00 00  |Xen.yes.........|
00000140  08 00 00 00 58 65 6e 00  67 65 6e 65 72 69 63 00  |....Xen.generic.|
00000150  04 00 00 00 10 00 00 00  0d 00 00 00 58 65 6e 00  |............Xen.|
00000160  01 00 00 00 00 00 00 00  01 00 00 00 00 00 00 00  |................|
00000170  04 00 00 00 04 00 00 00  0e 00 00 00 58 65 6e 00  |............Xen.|
00000180  01 00 00 00 04 00 00 00  04 00 00 00 10 00 00 00  |................|
00000190  58 65 6e 00 01 00 00 00  04 00 00 00 08 00 00 00  |Xen.............|
000001a0  0c 00 00 00 58 65 6e 00  00 00 00 00 00 80 ff ff  |....Xen.........|
000001b0  04 00 00 00 08 00 00 00  04 00 00 00 58 65 6e 00  |............Xen.|
000001c0  00 00 00 00 00 00 00 00  04 00 00 00 14 00 00 00  |................|
000001d0  03 00 00 00 47 4e 55 00  64 ec 1d 0d 1a c6 ad 3c  |....GNU.d......<|
000001e0  80 58 65 3b e9 56 db 0f  c3 f7 c5 62              |.Xe;.V.....b|
000001ec
== hexdump -C /sys/module/8021q/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  d8 fc ef 2c 1a f4 ab 5f  d9 3d 58 f3 fc 3b b8 1a  |...,..._.=X..;..|
00000020  a3 30 98 ef                                       |.0..|
00000024
== hexdump -C /sys/module/8250_fintek/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  8e 20 f5 4e 0d 95 df 1a  33 71 45 4c f5 2b 65 bb  |. .N....3qEL.+e.|
00000020  71 36 1a 49                                       |q6.I|
00000024
== hexdump -C /sys/module/ablk_helper/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  03 e5 d9 b8 33 a7 43 24  1e 6a b3 4c 4b 83 38 c4  |....3.C$.j.LK.8.|
00000020  3d ea 8f 99                                       |=...|
00000024
== hexdump -C /sys/module/acpi_pad/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  19 79 6e 28 d5 f9 e3 6f  e0 fa 3c 21 b7 78 69 2c  |.yn(...o..<!.xi,|
00000020  37 f9 5a 5f                                       |7.Z_|
00000024
== hexdump -C /sys/module/acpi_power_meter/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  3c 8d 85 11 96 1c 16 6c  5f de cb 40 8a 22 d8 ff  |<......l_..@."..|
00000020  7f 59 d6 5c                                       |.Y.\|
00000024
== hexdump -C /sys/module/aes_x86_64/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  b7 64 65 38 5d 9c f5 80  ec 29 99 bc bb 84 c7 f8  |.de8]....)......|
00000020  bf f2 2b 8b                                       |..+.|
00000024
== hexdump -C /sys/module/aesni_intel/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  aa 72 c8 6f 5f 73 1b 26  b1 9d d1 18 83 0f 8d a1  |.r.o_s.&........|
00000020  d2 ca b3 c3                                       |....|
00000024
== hexdump -C /sys/module/ahci/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  4e a1 d2 ca fd 5d c9 b6  5a 4b 69 ca c9 1f f7 cb  |N....]..ZKi.....|
00000020  3f 41 12 3e                                       |?A.>|
00000024
== hexdump -C /sys/module/async_memcpy/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  fb ff 5d fd 7b 3e c8 71  e5 04 ea 26 83 ed e5 c9  |..].{>.q...&....|
00000020  71 45 c0 35                                       |qE.5|
00000024
== hexdump -C /sys/module/async_pq/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  62 94 4d 79 4c 0c aa dd  45 39 c5 28 19 be 31 9b  |b.MyL...E9.(..1.|
00000020  e7 59 36 f7                                       |.Y6.|
00000024
== hexdump -C /sys/module/async_raid6_recov/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  61 a0 ea 1d ea 4c 08 42  2c 2b 00 d6 a1 b5 af 14  |a....L.B,+......|
00000020  8d 1e 0e 72                                       |...r|
00000024
== hexdump -C /sys/module/async_tx/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  52 50 14 16 2e 16 6c 06  72 19 4d 92 df bd ff 3e  |RP....l.r.M....>|
00000020  62 ad ba ab                                       |b...|
00000024
== hexdump -C /sys/module/async_xor/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  3d 1a 4e d8 44 d5 95 5c  ee 92 ec 6d 9c e2 a1 ea  |=.N.D..\...m....|
00000020  b9 e4 a3 a3                                       |....|
00000024
== hexdump -C /sys/module/aufs/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  73 d5 86 cc 3f 36 8d 7b  86 33 7e d9 5a 08 0f 7d  |s...?6.{.3~.Z..}|
00000020  3c 63 c9 96                                       |<c..|
00000024
== hexdump -C /sys/module/auth_rpcgss/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  20 1a d5 62 8d 6a f4 2f  44 36 52 9b 73 13 3c 3b  | ..b.j./D6R.s.<;|
00000020  dc c1 72 c2                                       |..r.|
00000024
== hexdump -C /sys/module/autofs4/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  96 54 3f 42 7d 8a ef d7  63 9e 8c 9c 63 4d ec d8  |.T?B}...c...cM..|
00000020  f4 a7 cc a3                                       |....|
00000024
== hexdump -C /sys/module/binfmt_misc/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  75 9d 77 4d 97 ab 70 77  53 70 71 f0 a7 9a d0 0b  |u.wM..pwSpq.....|
00000020  e0 c0 27 12                                       |..'.|
00000024
== hexdump -C /sys/module/bnx2x/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  c2 21 8f 5d 37 8b 7d 63  c2 8b 88 cb 01 57 62 19  |.!.]7.}c.....Wb.|
00000020  4b 59 01 a1                                       |KY..|
00000024
== hexdump -C /sys/module/br_netfilter/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  7f 9e f6 48 1b f7 6c 29  f4 e2 93 2f 4f df 78 a4  |...H..l).../O.x.|
00000020  1e 88 a8 c9                                       |....|
00000024
== hexdump -C /sys/module/bridge/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  50 c2 81 ec 2a 99 54 46  c4 7b 47 6b d0 38 f4 80  |P...*.TF.{Gk.8..|
00000020  3c 56 b8 27                                       |<V.'|
00000024
== hexdump -C /sys/module/configfs/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  cc 49 d7 a4 14 b0 58 1b  a8 0b 01 85 65 5d 2a 59  |.I....X.....e]*Y|
00000020  aa a9 a0 54                                       |...T|
00000024
== hexdump -C /sys/module/coretemp/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  70 60 84 5d 24 a1 58 e8  48 f7 3d 5c 2d 2c 7a 72  |p`.]$.X.H.=\-,zr|
00000020  83 32 cb 72                                       |.2.r|
00000024
== hexdump -C /sys/module/crc32_pclmul/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  8a 29 ff ed 3a 99 a3 8b  39 d3 2c b8 77 10 e5 d6  |.)..:...9.,.w...|
00000020  0d e7 1f 54                                       |...T|
00000024
== hexdump -C /sys/module/crct10dif_pclmul/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  d3 da 30 4e 88 5b d2 03  1e c5 e1 be 59 95 9f cb  |..0N.[......Y...|
00000020  74 8f d7 bf                                       |t...|
00000024
== hexdump -C /sys/module/cryptd/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  92 05 ee dd 3c 63 83 1d  ab 5c 84 9c 6f e4 dd 67  |....<c...\..o..g|
00000020  9f 70 f2 3a                                       |.p.:|
00000024
== hexdump -C /sys/module/cxgb3/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  0c 4f 05 b3 f1 1d 77 83  39 c6 52 a3 af 5b 35 a8  |.O....w.9.R..[5.|
00000020  af 14 a1 59                                       |...Y|
00000024
== hexdump -C /sys/module/cxgb4/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  51 c9 db f0 a8 22 9a ce  7f ca 39 ff 4e ab ec 54  |Q...."....9.N..T|
00000020  d4 17 d3 08                                       |....|
00000024
== hexdump -C /sys/module/dca/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  f9 42 af b1 59 ad 33 bb  08 99 4c d5 57 02 c1 30  |.B..Y.3...L.W..0|
00000020  9f e9 db 8e                                       |....|
00000024
== hexdump -C /sys/module/dccp/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  78 40 5c 8f ad 8e 3b 44  80 6d 4b a8 46 49 28 76  |x@\...;D.mK.FI(v|
00000020  19 02 22 cd                                       |..".|
00000024
== hexdump -C /sys/module/dccp_diag/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  8c b3 d7 71 9f d6 3f cd  80 d6 65 ad c4 db 1d 86  |...q..?...e.....|
00000020  5e fe 2b 76                                       |^.+v|
00000024
== hexdump -C /sys/module/dcdbas/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  38 e6 bf 5e 35 d4 1b 9f  00 a9 d4 55 aa 26 32 d7  |8..^5......U.&2.|
00000020  67 5e 35 7a                                       |g^5z|
00000024
== hexdump -C /sys/module/edac_core/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  8e 51 20 c8 17 b8 19 a9  77 25 0c e2 ec 44 cf 06  |.Q .....w%...D..|
00000020  f7 15 16 9a                                       |....|
00000024
== hexdump -C /sys/module/fscache/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  9e 38 18 bc 80 26 db f2  57 30 c8 72 11 41 98 f9  |.8...&..W0.r.A..|
00000020  be b7 02 a8                                       |....|
00000024
== hexdump -C /sys/module/garp/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  ca da a3 67 b7 61 bc 16  f6 40 d1 47 dc 19 46 af  |...g.a...@.G..F.|
00000020  6b 74 82 d9                                       |kt..|
00000024
== hexdump -C /sys/module/gf128mul/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  30 e2 c8 7e ee c2 1c 2a  72 e9 5d ae 44 3c 59 90  |0..~...*r.].D<Y.|
00000020  0b d3 00 ea                                       |....|
00000024
== hexdump -C /sys/module/ghash_clmulni_intel/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  13 a0 29 c4 ba 63 2b da  a1 16 c8 fb 80 55 cb e8  |..)..c+......U..|
00000020  ec 5b b2 52                                       |.[.R|
00000024
== hexdump -C /sys/module/glue_helper/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  4e 47 37 c0 59 56 62 ec  63 19 d5 b0 6b 82 dd 18  |NG7.YVb.c...k...|
00000020  4b f1 eb 83                                       |K...|
00000024
== hexdump -C /sys/module/grace/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  29 3b 5d d8 c3 7f 2e 54  ce 26 e0 ab 30 89 d6 f4  |);]....T.&..0...|
00000020  d1 22 1c 58                                       |.".X|
00000024
== hexdump -C /sys/module/hid/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  69 28 18 cd 2b 2c c2 ea  fb 3b 99 39 38 47 37 71  |i(..+,...;.98G7q|
00000020  b0 ff 72 ad                                       |..r.|
00000024
== hexdump -C /sys/module/hid_generic/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  2b b8 c0 64 be 10 59 0e  25 0b ed 52 18 dd 80 70  |+..d..Y.%..R...p|
00000020  d5 89 fb 0c                                       |....|
00000024
== hexdump -C /sys/module/ib_addr/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  78 a4 84 ef 1e 06 09 62  fa 36 99 7b 49 7a 44 e2  |x......b.6.{IzD.|
00000020  63 2b 63 2c                                       |c+c,|
00000024
== hexdump -C /sys/module/ib_cm/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  f8 60 a9 4f fe bc c8 cc  90 3b 7a e7 95 38 17 db  |.`.O.....;z..8..|
00000020  26 02 ee a4                                       |&...|
00000024
== hexdump -C /sys/module/ib_core/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  01 54 b2 d8 5a 37 c5 d5  44 42 41 b4 2b 85 d1 16  |.T..Z7..DBA.+...|
00000020  af 70 62 58                                       |.pbX|
00000024
== hexdump -C /sys/module/ib_ipath/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  26 a2 0a a7 3d 06 18 0c  ae 0d 66 12 c9 3f 8d 1a  |&...=.....f..?..|
00000020  0e c5 0e 97                                       |....|
00000024
== hexdump -C /sys/module/ib_ipoib/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  9f 80 6f 17 90 7e e2 1c  c4 5b 05 f3 44 4c 4f 72  |..o..~...[..DLOr|
00000020  7c 3c a4 1a                                       ||<..|
00000024
== hexdump -C /sys/module/ib_iser/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  48 80 24 ed 79 48 7c 70  d3 30 74 0b 89 ea 18 2a  |H.$.yH|p.0t....*|
00000020  35 31 58 a7                                       |51X.|
00000024
== hexdump -C /sys/module/ib_mad/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  21 2d 13 26 65 0c 17 e0  25 eb fa 95 bf bb 0c b6  |!-.&e...%.......|
00000020  be b3 4c ce                                       |..L.|
00000024
== hexdump -C /sys/module/ib_mthca/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  09 86 7d 9f da 57 81 81  8d 41 cd 60 ff 7e cb ee  |..}..W...A.`.~..|
00000020  c5 a0 6e bc                                       |..n.|
00000024
== hexdump -C /sys/module/ib_qib/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  31 a0 a0 32 aa 3d 4e 06  de 54 64 42 18 ba da 9c  |1..2.=N..TdB....|
00000020  61 76 67 bc                                       |avg.|
00000024
== hexdump -C /sys/module/ib_sa/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  f2 45 a9 16 93 51 c5 b2  58 52 d1 02 03 ec 6d 8f  |.E...Q..XR....m.|
00000020  9b 3e 9a b9                                       |.>..|
00000024
== hexdump -C /sys/module/ib_srp/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  03 a5 89 5b 7a 1f 9d 06  84 c4 37 cf 77 1c be 82  |...[z.....7.w...|
00000020  17 a4 c3 d8                                       |....|
00000024
== hexdump -C /sys/module/ib_srpt/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  64 69 44 66 4a 91 ed c8  02 b9 9e eb ca 3d 2e e2  |diDfJ........=..|
00000020  26 d6 b6 89                                       |&...|
00000024
== hexdump -C /sys/module/ib_ucm/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  22 36 42 92 50 98 d4 ac  6d 7a f3 59 35 29 31 c5  |"6B.P...mz.Y5)1.|
00000020  24 38 8a 7c                                       |$8.||
00000024
== hexdump -C /sys/module/ib_umad/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  f3 77 f8 73 df 98 b6 ec  8c 39 07 22 66 df e1 76  |.w.s.....9."f..v|
00000020  92 dc 9e 36                                       |...6|
00000024
== hexdump -C /sys/module/ib_uverbs/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  69 35 43 3a 0e 7c 99 a5  f3 f0 fa ca 39 ff f9 d0  |i5C:.|......9...|
00000020  9e 54 02 e1                                       |.T..|
00000024
== hexdump -C /sys/module/inet_diag/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  b7 9d e2 e1 76 e2 f4 72  cd fb f3 53 fb f7 0f 07  |....v..r...S....|
00000020  95 5d 5d 83                                       |.]].|
00000024
== hexdump -C /sys/module/intel_powerclamp/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  ef bd 1c 48 f2 b4 cf 25  d3 2c b7 1f c1 0f f4 81  |...H...%.,......|
00000020  36 7b 83 ea                                       |6{..|
00000024
== hexdump -C /sys/module/intel_rapl/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  ed 00 da 17 c0 8d ed 38  b3 44 62 7a ee 1d 7c d1  |.......8.Dbz..|.|
00000020  8d 4f 2c a7                                       |.O,.|
00000024
== hexdump -C /sys/module/iosf_mbi/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  ff 04 88 b4 67 3d 76 a5  65 69 54 62 f4 5c 09 04  |....g=v.eiTb.\..|
00000020  c1 51 aa fa                                       |.Q..|
00000024
== hexdump -C /sys/module/ip6_tables/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  89 cf 5b fb 27 39 fe dc  5f 01 4d 99 ce 9a 4f ed  |..[.'9.._.M...O.|
00000020  af bc 42 f7                                       |..B.|
00000024
== hexdump -C /sys/module/ip6_udp_tunnel/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  9d 2c 0f a7 fd 2c 11 7a  0f 40 b1 e9 d7 35 22 ae  |.,...,.z.@...5".|
00000020  73 27 ad 29                                       |s'.)|
00000024
== hexdump -C /sys/module/ip6t_REJECT/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  5e 7a 27 07 5e 64 96 1e  74 28 a9 72 f3 08 22 5e  |^z'.^d..t(.r.."^|
00000020  1a 74 67 4b                                       |.tgK|
00000024
== hexdump -C /sys/module/ip6t_rt/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  ea 53 04 84 86 85 6b cf  50 78 ca fb e9 f6 ae 9a  |.S....k.Px......|
00000020  48 8d 2a 53                                       |H.*S|
00000024
== hexdump -C /sys/module/ip6table_filter/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  57 a1 9c 88 1b 59 4b 59  53 dc 13 d9 b9 ae 9e 6f  |W....YKYS......o|
00000020  87 0d 9f 22                                       |..."|
00000024
== hexdump -C /sys/module/ip_tables/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  ef f4 f9 9e 5e 0b a0 bc  60 b5 af f5 9e 39 88 fb  |....^...`....9..|
00000020  b7 76 71 bd                                       |.vq.|
00000024
== hexdump -C /sys/module/ipmi_devintf/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  85 ae 7b 66 87 5a 22 14  e1 7e 90 71 45 4d 7c da  |..{f.Z"..~.qEM|.|
00000020  9b bc 19 a2                                       |....|
00000024
== hexdump -C /sys/module/ipmi_msghandler/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  d9 fe 02 70 58 6a 8b 27  af 82 db 9c 74 77 2b 42  |...pXj.'....tw+B|
00000020  b9 8e 7c ec                                       |..|.|
00000024
== hexdump -C /sys/module/ipmi_si/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  d4 47 8a b8 2c 06 37 a1  87 69 ca f9 bc 21 2e dc  |.G..,.7..i...!..|
00000020  bf bb 1c 3e                                       |...>|
00000024
== hexdump -C /sys/module/ipmi_ssif/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  68 f9 cd 59 f1 24 91 ba  9d 94 a5 fd 6f 5d 4c 2f  |h..Y.$......o]L/|
00000020  16 98 ef b7                                       |....|
00000024
== hexdump -C /sys/module/ipt_MASQUERADE/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  b4 22 ff 26 91 27 9f 59  2b 34 91 b2 f5 8a 50 9b  |.".&.'.Y+4....P.|
00000020  a9 f9 c7 e6                                       |....|
00000024
== hexdump -C /sys/module/ipt_REJECT/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  49 3f 8a 22 91 d3 1c a9  f6 27 b4 67 dd 79 50 3b  |I?.".....'.g.yP;|
00000020  93 a9 f6 92                                       |....|
00000024
== hexdump -C /sys/module/iptable_filter/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  b0 5f 7b 5e 38 f7 d6 fe  75 78 ba b1 cb b2 72 7a  |._{^8...ux....rz|
00000020  69 6d bb df                                       |im..|
00000024
== hexdump -C /sys/module/iptable_nat/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  90 ee 00 77 46 67 dc d8  a0 46 e1 c6 18 30 32 0a  |...wFg...F...02.|
00000020  0f a6 68 84                                       |..h.|
00000024
== hexdump -C /sys/module/iw_c2/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  35 78 75 77 c3 47 48 cf  89 b1 7f 05 4a 15 ad e4  |5xuw.GH.....J...|
00000020  8a f5 d1 50                                       |...P|
00000024
== hexdump -C /sys/module/iw_cm/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  93 2d e5 5e e2 e2 01 1b  0a 70 f0 0f 8b 35 6a 8c  |.-.^.....p...5j.|
00000020  93 73 45 a2                                       |.sE.|
00000024
== hexdump -C /sys/module/iw_cxgb3/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  38 23 78 02 9b 43 ad 86  26 83 84 c3 64 af 17 fc  |8#x..C..&...d...|
00000020  51 44 36 f5                                       |QD6.|
00000024
== hexdump -C /sys/module/iw_cxgb4/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  9c 83 35 22 41 e3 f9 f0  a2 21 b9 9b 7b 5b 56 2a  |..5"A....!..{[V*|
00000020  3c 21 29 6b                                       |<!)k|
00000024
== hexdump -C /sys/module/iw_nes/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  72 e4 b3 2a f7 a8 d4 36  b4 2a 83 fe a3 db 50 8d  |r..*...6.*....P.|
00000020  a6 30 6e 42                                       |.0nB|
00000024
== hexdump -C /sys/module/joydev/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  d1 8c 94 2d 56 19 68 45  95 ca e8 46 f2 40 7f b0  |...-V.hE...F.@..|
00000020  47 2b 7d a6                                       |G+}.|
00000024
== hexdump -C /sys/module/kvm/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  76 ea 7a 1c 72 c0 05 a5  b1 27 9c e6 1e 0f 5a 63  |v.z.r....'....Zc|
00000020  91 1e 92 86                                       |....|
00000024
== hexdump -C /sys/module/kvm_intel/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  a7 78 d4 05 86 67 09 31  24 33 6f ab 5f d0 b3 a7  |.x...g.1$3o._...|
00000020  d6 78 5d b2                                       |.x].|
00000024
== hexdump -C /sys/module/libahci/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  6b fa d5 31 9a 30 72 3a  8b 2c 09 9f 99 0f e3 67  |k..1.0r:.,.....g|
00000020  56 03 e1 9c                                       |V...|
00000024
== hexdump -C /sys/module/libcrc32c/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  39 ef 44 d8 99 99 cd dd  5b 5a 1f 53 86 85 c8 db  |9.D.....[Z.S....|
00000020  67 bf b5 c1                                       |g...|
00000024
== hexdump -C /sys/module/libiscsi/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  6b b7 c9 2a 7b e7 37 6b  a2 59 70 96 9c 8e f3 12  |k..*{.7k.Yp.....|
00000020  2f e7 f4 26                                       |/..&|
00000024
== hexdump -C /sys/module/linear/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  0d d8 66 89 c4 f2 b5 3f  ac 49 6a f6 dc 23 7d fc  |..f....?.Ij..#}.|
00000020  dc 3d e4 d7                                       |.=..|
00000024
== hexdump -C /sys/module/llc/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  7f 12 f9 79 8a 5d e7 c6  9c 62 74 dd 54 29 37 f7  |...y.]...bt.T)7.|
00000020  89 43 b2 76                                       |.C.v|
00000024
== hexdump -C /sys/module/lockd/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  28 b9 a0 b5 4c 6c d5 21  83 00 a5 c5 f5 be 6b dd  |(...Ll.!......k.|
00000020  5c 18 e5 ed                                       |\...|
00000024
== hexdump -C /sys/module/lp/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  58 19 3c 34 a4 c0 d0 01  4e c6 da 62 f0 bd e7 5c  |X.<4....N..b...\|
00000020  53 27 7d a3                                       |S'}.|
00000024
== hexdump -C /sys/module/lpc_ich/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  54 e6 8c a7 b5 3d 4e 48  e1 ee 85 b8 74 c0 5f 41  |T....=NH....t._A|
00000020  75 8d 5b 70                                       |u.[p|
00000024
== hexdump -C /sys/module/lrw/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  83 79 71 70 10 14 52 b7  e1 8b fc 47 43 46 23 b6  |.yqp..R....GCF#.|
00000020  55 31 c7 c4                                       |U1..|
00000024
== hexdump -C /sys/module/mac_hid/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  58 43 32 e1 ed da 8b 29  32 7a db 1d be c8 2b 2b  |XC2....)2z....++|
00000020  38 75 50 a5                                       |8uP.|
00000024
== hexdump -C /sys/module/mdio/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  9a 46 68 a4 78 a5 ab 2e  27 1a b1 f5 0a f5 b8 f2  |.Fh.x...'.......|
00000020  f7 d8 5b 3f                                       |..[?|
00000024
== hexdump -C /sys/module/mei/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  17 61 f6 21 63 23 1b b6  0f 63 bf 57 bc 45 4a 79  |.a.!c#...c.W.EJy|
00000020  96 ab b5 c9                                       |....|
00000024
== hexdump -C /sys/module/mei_me/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  52 2b 5b f4 22 e6 cb 8a  0a 5a 0c fb 78 0b 6c 13  |R+[."....Z..x.l.|
00000020  63 c0 35 49                                       |c.5I|
00000024
== hexdump -C /sys/module/mlx4_core/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  8c ef bd a9 df b7 b4 de  d1 d7 16 6d f4 73 d5 50  |...........m.s.P|
00000020  7a 08 e6 b7                                       |z...|
00000024
== hexdump -C /sys/module/mlx4_en/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  9b 24 ee 60 5a ae d9 a6  6d 59 d5 78 a1 da 49 d2  |.$.`Z...mY.x..I.|
00000020  b5 ed 20 d8                                       |.. .|
00000024
== hexdump -C /sys/module/mlx4_ib/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  80 9d 0b 1a 3d 9f 8e 16  83 50 31 d8 e8 1c 17 8e  |....=....P1.....|
00000020  8b 15 09 af                                       |....|
00000024
== hexdump -C /sys/module/mrp/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  26 99 21 1f f3 f0 dd 85  d2 88 d2 c6 8d 34 82 fb  |&.!..........4..|
00000020  6b e2 35 bc                                       |k.5.|
00000024
== hexdump -C /sys/module/multipath/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  b3 3a 76 38 fd db 8d a6  07 16 90 50 c9 6a de f7  |.:v8.......P.j..|
00000020  dd 6c c3 5c                                       |.l.\|
00000024
== hexdump -C /sys/module/nf_conntrack/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  8d 55 50 a1 d8 5d 32 4c  a3 5a 15 11 ae 27 bb 3d  |.UP..]2L.Z...'.=|
00000020  a0 96 89 59                                       |...Y|
00000024
== hexdump -C /sys/module/nf_conntrack_broadcast/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  e3 d0 20 01 e9 be c4 11  7a 67 51 d2 00 2c 17 09  |.. .....zgQ..,..|
00000020  e9 df 12 f2                                       |....|
00000024
== hexdump -C /sys/module/nf_conntrack_ftp/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  f8 1a ff af 3e 74 fe 08  96 9c bd eb 92 9c 29 39  |....>t........)9|
00000020  b1 58 79 ba                                       |.Xy.|
00000024
== hexdump -C /sys/module/nf_conntrack_ipv4/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  27 d4 fa ee 64 bf 39 aa  67 1c 8c 0d e0 be 78 d1  |'...d.9.g.....x.|
00000020  2e c6 bd 47                                       |...G|
00000024
== hexdump -C /sys/module/nf_conntrack_ipv6/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  42 5c 36 2d 5a 41 0d 97  35 98 c1 58 73 08 70 f1  |B\6-ZA..5..Xs.p.|
00000020  b9 6d 98 8f                                       |.m..|
00000024
== hexdump -C /sys/module/nf_conntrack_netbios_ns/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  73 0f cf 76 ca b9 ca e2  f2 19 55 7b 28 7c a1 ee  |s..v......U{(|..|
00000020  02 cd a4 4b                                       |...K|
00000024
== hexdump -C /sys/module/nf_defrag_ipv4/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  85 60 53 5f a3 c2 8f 88  1d e4 4a 80 a0 c3 96 bb  |.`S_......J.....|
00000020  da 41 ed 56                                       |.A.V|
00000024
== hexdump -C /sys/module/nf_defrag_ipv6/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  db fe 92 31 d5 fe 62 79  b7 c9 26 73 a8 37 f6 49  |...1..by..&s.7.I|
00000020  b5 42 4f cc                                       |.BO.|
00000024
== hexdump -C /sys/module/nf_log_common/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  87 e6 84 06 ea 49 ec 59  fc f7 0c f2 b0 2f 5f 14  |.....I.Y...../_.|
00000020  a8 34 a1 3a                                       |.4.:|
00000024
== hexdump -C /sys/module/nf_log_ipv4/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  26 bc 59 6f 07 e7 f5 08  d4 0c c1 66 18 51 69 59  |&.Yo.......f.QiY|
00000020  a4 d0 13 90                                       |....|
00000024
== hexdump -C /sys/module/nf_log_ipv6/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  9e 71 1d 02 b8 0c a7 9e  ea 83 e7 88 e8 8a 46 80  |.q............F.|
00000020  3f ce 48 6c                                       |?.Hl|
00000024
== hexdump -C /sys/module/nf_nat/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  93 1a c0 a5 0d 47 aa ab  b7 51 75 f1 93 69 0e 2f  |.....G...Qu..i./|
00000020  13 e9 f1 81                                       |....|
00000024
== hexdump -C /sys/module/nf_nat_ftp/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  05 1c 2e 4c ad 9d eb c7  c6 30 5f 00 53 5a 2c 36  |...L.....0_.SZ,6|
00000020  9a 8a be 83                                       |....|
00000024
== hexdump -C /sys/module/nf_nat_ipv4/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  d3 59 4f 7c 58 fa 5e 57  0d 03 9a cc f8 57 58 d0  |.YO|X.^W.....WX.|
00000020  d1 8c 63 62                                       |..cb|
00000024
== hexdump -C /sys/module/nf_nat_masquerade_ipv4/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  5c fc 9c c4 f5 12 ba 48  01 e6 1a 34 df 6f 84 55  |\......H...4.o.U|
00000020  99 35 8c 38                                       |.5.8|
00000024
== hexdump -C /sys/module/nf_reject_ipv4/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  5b 83 39 13 0e 1b 34 c8  d2 88 af 6a a2 af 92 c9  |[.9...4....j....|
00000020  1e aa 71 37                                       |..q7|
00000024
== hexdump -C /sys/module/nf_reject_ipv6/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  d0 83 f3 df 9e 3e ac 29  ac 29 c7 ca 1d d0 12 8a  |.....>.).)......|
00000020  3a b0 a8 91                                       |:...|
00000024
== hexdump -C /sys/module/nfs/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  dc 72 03 cf 62 69 70 85  4d 77 cf d4 bb cc 4b e4  |.r..bip.Mw....K.|
00000020  1e bc ef b3                                       |....|
00000024
== hexdump -C /sys/module/nfs_acl/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  ab b8 7a 5a 0d 2a 07 5a  9b 22 94 65 ad 50 67 59  |..zZ.*.Z.".e.PgY|
00000020  39 b7 fb e9                                       |9...|
00000024
== hexdump -C /sys/module/nfsd/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  12 61 c1 81 03 ec c3 a9  6b c2 9e d1 55 2b ce 73  |.a......k...U+.s|
00000020  5f f3 fd 1b                                       |_...|
00000024
== hexdump -C /sys/module/parport/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  6a ed 02 5d 47 61 70 af  59 f1 06 7b cc 5a fb 07  |j..]Gap.Y..{.Z..|
00000020  2c c3 a2 62                                       |,..b|
00000024
== hexdump -C /sys/module/pps_core/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  82 fd f4 27 73 d7 24 06  bf d1 45 a3 79 f8 d7 de  |...'s.$...E.y...|
00000020  5e 30 65 36                                       |^0e6|
00000024
== hexdump -C /sys/module/ptp/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  56 9a ad 00 b9 97 a8 32  d4 60 4a 82 79 2b 58 ad  |V......2.`J.y+X.|
00000020  d4 eb cf 9a                                       |....|
00000024
== hexdump -C /sys/module/raid0/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  9c d2 a9 e6 d1 ce a3 27  81 ce d1 78 b7 f3 f1 3f  |.......'...x...?|
00000020  de 86 7f af                                       |....|
00000024
== hexdump -C /sys/module/raid1/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  de ad 73 71 e4 9f a0 8d  e5 26 45 a7 86 17 63 6f  |..sq.....&E...co|
00000020  f0 3b 98 42                                       |.;.B|
00000024
== hexdump -C /sys/module/raid10/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  95 2d 0a b7 a9 a8 82 04  53 24 9f 91 1d 2a 84 84  |.-......S$...*..|
00000020  36 bc 36 a3                                       |6.6.|
00000024
== hexdump -C /sys/module/raid456/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  df 15 23 ce 88 1b 24 8c  b6 f2 06 22 e7 db 97 2e  |..#...$...."....|
00000020  3c c7 bf ca                                       |<...|
00000024
== hexdump -C /sys/module/raid6_pq/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  b4 75 f1 2a da 54 69 bd  cd 4a eb 98 d4 8f 8d b4  |.u.*.Ti..J......|
00000020  f6 b4 c6 38                                       |...8|
00000024
== hexdump -C /sys/module/rdma_cm/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  a2 f2 ff 08 8c 81 33 b4  a9 03 2a 95 bc 80 02 40  |......3...*....@|
00000020  66 ba 43 2e                                       |f.C.|
00000024
== hexdump -C /sys/module/rdma_ucm/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  ea ed 81 07 60 70 48 6a  0a c0 47 e7 1e 63 f8 9f  |....`pHj..G..c..|
00000020  ce 12 6b fb                                       |..k.|
00000024
== hexdump -C /sys/module/sb_edac/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  a2 3e 8e 33 67 6a 53 d3  05 40 9c a9 37 a8 42 cd  |.>.3gjS..@..7.B.|
00000020  15 12 7f 9f                                       |....|
00000024
== hexdump -C /sys/module/scsi_transport_iscsi/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  6e ee 57 c8 db e7 dc a7  e6 fc 87 2f 8b 08 bb c4  |n.W......../....|
00000020  4a ad 48 c0                                       |J.H.|
00000024
== hexdump -C /sys/module/scsi_transport_srp/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  4f f8 ae ec 21 ed f8 bb  1a e8 dd f9 3a 7e 66 63  |O...!.......:~fc|
00000020  38 3b bb c5                                       |8;..|
00000024
== hexdump -C /sys/module/shpchp/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  b7 ad ce 15 09 2c 48 f9  d1 2e 08 fa 18 24 9b 52  |.....,H......$.R|
00000020  16 02 69 cd                                       |..i.|
00000024
== hexdump -C /sys/module/stp/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  ac ba e6 d6 f3 08 ba 33  30 0f 23 52 0e d4 f1 9b  |.......30.#R....|
00000020  8e 68 6b fc                                       |.hk.|
00000024
== hexdump -C /sys/module/sunrpc/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  f6 ef f7 e6 8b 58 ca c2  bd 49 d9 39 7e 2f b0 ee  |.....X...I.9~/..|
00000020  6a 55 22 4d                                       |jU"M|
00000024
== hexdump -C /sys/module/target_core_mod/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  10 e6 c4 d9 31 4b 41 fb  d3 37 cb 69 58 7e 3c 92  |....1KA..7.iX~<.|
00000020  32 54 fe 97                                       |2T..|
00000024
== hexdump -C /sys/module/tcp_diag/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  a6 2d 20 3e de 27 f1 e2  4b 7a fd 9e b3 67 80 94  |.- >.'..Kz...g..|
00000020  d3 f8 64 d2                                       |..d.|
00000024
== hexdump -C /sys/module/udp_diag/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  d8 6b fa 84 72 65 c6 3d  29 00 51 a8 f0 8c 06 3b  |.k..re.=).Q....;|
00000020  3a 17 6c d4                                       |:.l.|
00000024
== hexdump -C /sys/module/udp_tunnel/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  09 e0 c4 fa a1 ca c9 a8  63 e2 55 13 8a b3 7b b7  |........c.U...{.|
00000020  30 62 57 27                                       |0bW'|
00000024
== hexdump -C /sys/module/ummunot/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  1d 37 7e f0 54 d2 aa 98  e9 88 dc 74 ff 15 12 e7  |.7~.T......t....|
00000020  34 4d d0 00                                       |4M..|
00000024
== hexdump -C /sys/module/unix_diag/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  31 56 06 c5 5e 59 24 3c  c5 a6 0e 51 ac 8a 5d 8e  |1V..^Y$<...Q..].|
00000020  0b 6f 53 db                                       |.oS.|
00000024
== hexdump -C /sys/module/usbhid/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  02 4c f1 89 65 a2 4e aa  1e c4 76 de e8 1c 5c 91  |.L..e.N...v...\.|
00000020  fd 6e 0b 07                                       |.n..|
00000024
== hexdump -C /sys/module/veth/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  f9 cb 61 d1 5e f7 2c 46  26 7c 49 0d af 99 83 5f  |..a.^.,F&|I...._|
00000020  c6 d2 a2 79                                       |...y|
00000024
== hexdump -C /sys/module/vxlan/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  45 32 86 e8 ea dc 61 76  77 0b c7 69 ce 80 13 7d  |E2....avw..i...}|
00000020  84 25 ba 76                                       |.%.v|
00000024
== hexdump -C /sys/module/wmi/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  30 09 25 76 ea c5 aa 58  a1 e4 92 2f 12 b3 1f 69  |0.%v...X.../...i|
00000020  5b 2c 9c 5b                                       |[,.[|
00000024
== hexdump -C /sys/module/x86_pkg_temp_thermal/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  d7 da b3 fd b9 a4 70 1f  2f d6 33 0e 7a 23 1d ae  |......p./.3.z#..|
00000020  35 7d cd 2a                                       |5}.*|
00000024
== hexdump -C /sys/module/x_tables/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  29 30 98 0d c2 f6 a8 9e  21 8d bc ba 85 d7 b0 3c  |)0......!......<|
00000020  93 39 40 be                                       |.9@.|
00000024
== hexdump -C /sys/module/xor/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  42 ec 97 35 7b 35 3a 11  61 04 39 b6 9a 95 b3 5d  |B..5{5:.a.9....]|
00000020  70 21 db bd                                       |p!..|
00000024
== hexdump -C /sys/module/xt_LOG/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  8b ce a3 9b 64 39 14 0f  f0 ba b4 30 bd 68 43 15  |....d9.....0.hC.|
00000020  f2 e1 25 ac                                       |..%.|
00000024
== hexdump -C /sys/module/xt_addrtype/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  b7 5b 5b 58 83 cd de f1  ad 36 d8 4d af a7 58 59  |.[[X.....6.M..XY|
00000020  b2 ce dd 77                                       |...w|
00000024
== hexdump -C /sys/module/xt_conntrack/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  38 49 44 99 cf 7e f5 79  0e 24 04 b6 08 c1 8c 00  |8ID..~.y.$......|
00000020  4d 35 a5 bf                                       |M5..|
00000024
== hexdump -C /sys/module/xt_hl/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  dd ba 3e aa 23 da 44 87  fd 7b 6a f0 ef b4 f2 74  |..>.#.D..{j....t|
00000020  13 45 fc 60                                       |.E.`|
00000024
== hexdump -C /sys/module/xt_limit/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  d1 e9 f2 c1 34 6a c5 2f  2e 3f 40 e8 de 67 0a 32  |....4j./.?@..g.2|
00000020  c8 8c ba 2d                                       |...-|
00000024
== hexdump -C /sys/module/xt_multiport/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  87 fc b3 c6 2b 03 5f 96  65 a6 4b b9 bb 25 c1 5d  |....+._.e.K..%.]|
00000020  c4 dc 95 1b                                       |....|
00000024
== hexdump -C /sys/module/xt_recent/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  ee e6 21 2c 2b 90 0f f3  a2 00 28 4c d1 5b 94 b0  |..!,+.....(L.[..|
00000020  24 c3 08 03                                       |$...|
00000024
== hexdump -C /sys/module/xt_tcpudp/notes/.note.gnu.build-id ==
00000000  04 00 00 00 14 00 00 00  03 00 00 00 47 4e 55 00  |............GNU.|
00000010  c3 83 fc bd 90 21 c5 09  ab 25 56 ed c9 dd 80 9d  |.....!...%V.....|
00000020  03 3b d4 35                                       |.;.5|
00000024
== aa-status ==
You do not have enough privilege to read the profile set.
apparmor module is loaded.
== NSS ==
NSS database path '/u/budkahaw/.systemtap/ssl/client' does not exist
NSS database path '/u/budkahaw/.systemtap/ssl/server' does not exist
NSS database path '/etc/systemtap/ssl/server' does not exist
NSS database path '/etc/systemtap/staprun' does not exist

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: Systemtap user space probing issue - Unknown symbol in module
  2016-07-19 15:47         ` buddhika chamith
@ 2016-07-19 18:32           ` David Smith
  2016-07-21 15:10             ` buddhika chamith
  0 siblings, 1 reply; 9+ messages in thread
From: David Smith @ 2016-07-19 18:32 UTC (permalink / raw)
  To: buddhika chamith, Frank Ch. Eigler; +Cc: systemtap

On 07/19/2016 10:47 AM, buddhika chamith wrote:
> Please find it attached. I don't have sudo access to this particular
> machine at the moment. But let me know if this is not enough
> information without running as root.
> 
> On Tue, Jul 19, 2016 at 11:30 AM, Frank Ch. Eigler <fche@redhat.com> wrote:
>>
>> chamibuddhika wrote:
>>
>>> [...]
>>> [7681057.827483] stap_610f349f374e883560aeeb9de1523c1f__13285: Unknown
>>> symbol __tracepoint_sched_process_exit (err 0)
>>> [...]
>>
>> This is reminiscent of
>> https://www.sourceware.org/ml/systemtap/2016-q2/msg00082.html but
>> those incompatibilities were worked out in a stap version << 3.0.
>> Could you submit a fuller 'stap-report' output?

What's odd is that according to your 'stap-report' output, your kernel
has CONFIG_TRACEPOINTS=y, but systemtap can't register the tracepoints
it needs.

Can you try 'perf list tracepoint' as root and see what you get?

One more thing. You said earlier you were running systemtap 3.0. It
appears that you have systemtap 2.3 installed. Did you build systemtap
3.0 yourself?

-- 
David Smith
dsmith@redhat.com
Red Hat
http://www.redhat.com
256.217.0141 (direct)
256.837.0057 (fax)

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: Systemtap user space probing issue - Unknown symbol in module
  2016-07-19 18:32           ` David Smith
@ 2016-07-21 15:10             ` buddhika chamith
  0 siblings, 0 replies; 9+ messages in thread
From: buddhika chamith @ 2016-07-21 15:10 UTC (permalink / raw)
  To: David Smith; +Cc: Frank Ch. Eigler, systemtap

Thanks. There is an older installation of systemtap in the system as
well. But I made sure that I was using the later version when running
these commands. I will uninstall the older version and see just in
case. And I will follow up with the perf output if that doesn't work
out as well.

On Tue, Jul 19, 2016 at 2:32 PM, David Smith <dsmith@redhat.com> wrote:
> On 07/19/2016 10:47 AM, buddhika chamith wrote:
>> Please find it attached. I don't have sudo access to this particular
>> machine at the moment. But let me know if this is not enough
>> information without running as root.
>>
>> On Tue, Jul 19, 2016 at 11:30 AM, Frank Ch. Eigler <fche@redhat.com> wrote:
>>>
>>> chamibuddhika wrote:
>>>
>>>> [...]
>>>> [7681057.827483] stap_610f349f374e883560aeeb9de1523c1f__13285: Unknown
>>>> symbol __tracepoint_sched_process_exit (err 0)
>>>> [...]
>>>
>>> This is reminiscent of
>>> https://www.sourceware.org/ml/systemtap/2016-q2/msg00082.html but
>>> those incompatibilities were worked out in a stap version << 3.0.
>>> Could you submit a fuller 'stap-report' output?
>
> What's odd is that according to your 'stap-report' output, your kernel
> has CONFIG_TRACEPOINTS=y, but systemtap can't register the tracepoints
> it needs.
>
> Can you try 'perf list tracepoint' as root and see what you get?
>
> One more thing. You said earlier you were running systemtap 3.0. It
> appears that you have systemtap 2.3 installed. Did you build systemtap
> 3.0 yourself?
>
> --
> David Smith
> dsmith@redhat.com
> Red Hat
> http://www.redhat.com
> 256.217.0141 (direct)
> 256.837.0057 (fax)

^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2016-07-21 15:10 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-07-18 10:58 Systemtap user space probing issue - Unknown symbol in module buddhika chamith
2016-07-18 18:11 ` David Smith
2016-07-19 15:01   ` buddhika chamith
2016-07-19 15:09     ` buddhika chamith
2016-07-19 15:30       ` Frank Ch. Eigler
2016-07-19 15:47         ` buddhika chamith
2016-07-19 18:32           ` David Smith
2016-07-21 15:10             ` buddhika chamith
2016-07-18 18:26 ` Josh Stone

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).