I have Ubuntu 14.04
with Linux-3.14.3-rt51
kernel. I need to use Systemtap
so I compiled my kernel with the following options chosen during make menuconfig
:
General setup
[*] Kprobes
[*] Kernel->user space relay support (formerly relayfs)
Kernel hacking
[*] Debug Filesystem
[*] Kernel debugging
[*] Compile the kernel with debug info
But when I run stap -v -e 'probe vfs.read {printf("read performed\n"); exit()}'
on my kernel, I see the following warnings:
WARNING: cannot find module nfs debuginfo: No DWARF information found [man warning::debuginfo]
WARNING: cannot find module sunrpc debuginfo: No DWARF information found [man warning::debuginfo]
What is wrong? Can anyone help me?