Revision 87f3b6b6fbcbfa715f0d0db3e7a63e65716a6d4e authored by Mathieu Desnoyers on 06 October 2008, 13:30:12 UTC, committed by Linus Torvalds on 06 October 2008, 23:34:19 UTC
* Theodore Ts'o (tytso@mit.edu) wrote:
>
> I've been playing with adding some markers into ext4 to see if they
> could be useful in solving some problems along with Systemtap.  It
> appears, though, that as of 2.6.27-rc8, markers defined in code which is
> compiled directly into the kernel (i.e., not as modules) don't show up
> in Module.markers:
>
> kvm_trace_entryexit arch/x86/kvm/kvm-intel  %u %p %u %u %u %u %u %u
> kvm_trace_handler arch/x86/kvm/kvm-intel  %u %p %u %u %u %u %u %u
> kvm_trace_entryexit arch/x86/kvm/kvm-amd  %u %p %u %u %u %u %u %u
> kvm_trace_handler arch/x86/kvm/kvm-amd  %u %p %u %u %u %u %u %u
>
> (Note the lack of any of the kernel_sched_* markers, and the markers I
> added for ext4_* and jbd2_* are missing as wel.)
>
> Systemtap apparently depends on in-kernel trace_mark being recorded in
> Module.markers, and apparently it's been claimed that it used to be
> there.  Is this a bug in systemtap, or in how Module.markers is getting
> built?   And is there a file that contains the equivalent information
> for markers located in non-modules code?

I think the problem comes from "markers: fix duplicate modpost entry"
(commit d35cb360c29956510b2fe1a953bd4968536f7216)

Especially :

  -   add_marker(mod, marker, fmt);
  +   if (!mod->skip)
  +     add_marker(mod, marker, fmt);
    }
    return;
   fail:

Here is a fix that should take care if this problem.

Thanks for the bug report!

Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@polymtl.ca>
Tested-by: "Theodore Ts'o" <tytso@mit.edu>
CC: Greg KH <greg@kroah.com>
CC: David Smith <dsmith@redhat.com>
CC: Roland McGrath <roland@redhat.com>
CC: Sam Ravnborg <sam@ravnborg.org>
CC: Wenji Huang <wenji.huang@oracle.com>
CC: Takashi Nishiie <t-nishiie@np.css.fujitsu.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
1 parent afed26d
History
File Mode Size
Kconfig -rw-r--r-- 1.0 KB
Makefile -rw-r--r-- 426 bytes
af_rxrpc.c -rw-r--r-- 20.4 KB
ar-accept.c -rw-r--r-- 12.1 KB
ar-ack.c -rw-r--r-- 32.5 KB
ar-call.c -rw-r--r-- 21.2 KB
ar-connection.c -rw-r--r-- 22.6 KB
ar-connevent.c -rw-r--r-- 8.9 KB
ar-error.c -rw-r--r-- 5.8 KB
ar-input.c -rw-r--r-- 19.9 KB
ar-internal.h -rw-r--r-- 28.2 KB
ar-key.c -rw-r--r-- 8.0 KB
ar-local.c -rw-r--r-- 7.5 KB
ar-output.c -rw-r--r-- 17.9 KB
ar-peer.c -rw-r--r-- 7.5 KB
ar-proc.c -rw-r--r-- 5.1 KB
ar-recvmsg.c -rw-r--r-- 10.7 KB
ar-security.c -rw-r--r-- 5.5 KB
ar-skbuff.c -rw-r--r-- 3.4 KB
ar-transport.c -rw-r--r-- 7.1 KB
rxkad.c -rw-r--r-- 27.3 KB

back to top