diff options
author | Ingo Molnar <mingo@elte.hu> | 2006-12-06 23:38:17 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.osdl.org> | 2006-12-07 11:39:39 -0500 |
commit | 02316067852187b8bec781bec07410e91af79627 (patch) | |
tree | 856e3f4610c91a6548bf3bf5c70ecbc0b28a4145 /kernel/profile.c | |
parent | a38a44c1a93078fc5fadc4ac2df8dea4697069e2 (diff) |
[PATCH] hotplug CPU: clean up hotcpu_notifier() use
There was lots of #ifdef noise in the kernel due to hotcpu_notifier(fn,
prio) not correctly marking 'fn' as used in the !HOTPLUG_CPU case, and thus
generating compiler warnings of unused symbols, hence forcing people to add
#ifdefs.
the compiler can skip truly unused functions just fine:
text data bss dec hex filename
1624412 728710 3674856 6027978 5bfaca vmlinux.before
1624412 728710 3674856 6027978 5bfaca vmlinux.after
[akpm@osdl.org: topology.c fix]
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'kernel/profile.c')
-rw-r--r-- | kernel/profile.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/kernel/profile.c b/kernel/profile.c index 04fd84e8cdbe..0961d93e1d91 100644 --- a/kernel/profile.c +++ b/kernel/profile.c | |||
@@ -319,7 +319,6 @@ out: | |||
319 | put_cpu(); | 319 | put_cpu(); |
320 | } | 320 | } |
321 | 321 | ||
322 | #ifdef CONFIG_HOTPLUG_CPU | ||
323 | static int __devinit profile_cpu_callback(struct notifier_block *info, | 322 | static int __devinit profile_cpu_callback(struct notifier_block *info, |
324 | unsigned long action, void *__cpu) | 323 | unsigned long action, void *__cpu) |
325 | { | 324 | { |
@@ -372,10 +371,10 @@ static int __devinit profile_cpu_callback(struct notifier_block *info, | |||
372 | } | 371 | } |
373 | return NOTIFY_OK; | 372 | return NOTIFY_OK; |
374 | } | 373 | } |
375 | #endif /* CONFIG_HOTPLUG_CPU */ | ||
376 | #else /* !CONFIG_SMP */ | 374 | #else /* !CONFIG_SMP */ |
377 | #define profile_flip_buffers() do { } while (0) | 375 | #define profile_flip_buffers() do { } while (0) |
378 | #define profile_discard_flip_buffers() do { } while (0) | 376 | #define profile_discard_flip_buffers() do { } while (0) |
377 | #define profile_cpu_callback NULL | ||
379 | 378 | ||
380 | void profile_hits(int type, void *__pc, unsigned int nr_hits) | 379 | void profile_hits(int type, void *__pc, unsigned int nr_hits) |
381 | { | 380 | { |