lkml.org 
[lkml]   [2009]   [Aug]   [26]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
SubjectRe: [PATCH] tracing/profile: Fix profile_disable vs module_unload
From
Date
On Wed, 2009-08-26 at 08:46 +0200, Peter Zijlstra wrote:

> Aahh, I see the bug, its only ftrace that knows about the module, not
> tracepoints themselves, _that_ needs fixing.

You could possibly do something like:

struct module *tp_mod = __module_address(&some_tp_symbol);
struct module *cb_mod = __module_text_address(func);

if (tp_mod && tp_mod != cb_mod) {
ret = try_get_module(tp_mod);
if (ret)
goto fail;
}

in register_trace_##name() or thereabout.


\
 
 \ /
  Last update: 2009-08-26 09:05    [W:0.107 / U:0.248 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site