diff options
author | Alexey Dobriyan <adobriyan@sw.ru> | 2007-05-08 03:28:41 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-05-08 14:15:08 -0400 |
commit | ffb45122766db220d0bf3d01848d575fbbcb6430 (patch) | |
tree | a8fedf0518407ad12578a7c03aa2c3344f11ff3c /kernel/lockdep.c | |
parent | ea07890a680273b25127129fb555aac0d9324bea (diff) |
Simplify kallsyms_lookup()
Several kallsyms_lookup() pass dummy arguments but only need, say, module's
name. Make kallsyms_lookup() accept NULLs where possible.
Also, makes picture clearer about what interfaces are needed for all symbol
resolving business.
Signed-off-by: Alexey Dobriyan <adobriyan@sw.ru>
Cc: Rusty Russell <rusty@rustcorp.com.au>
Acked-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'kernel/lockdep.c')
-rw-r--r-- | kernel/lockdep.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/kernel/lockdep.c b/kernel/lockdep.c index c1e308a080b8..7f573136a905 100644 --- a/kernel/lockdep.c +++ b/kernel/lockdep.c | |||
@@ -340,10 +340,7 @@ static const char *usage_str[] = | |||
340 | 340 | ||
341 | const char * __get_key_name(struct lockdep_subclass_key *key, char *str) | 341 | const char * __get_key_name(struct lockdep_subclass_key *key, char *str) |
342 | { | 342 | { |
343 | unsigned long offs, size; | 343 | return kallsyms_lookup((unsigned long)key, NULL, NULL, NULL, str); |
344 | char *modname; | ||
345 | |||
346 | return kallsyms_lookup((unsigned long)key, &size, &offs, &modname, str); | ||
347 | } | 344 | } |
348 | 345 | ||
349 | void | 346 | void |