aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/smp.h
diff options
context:
space:
mode:
authorRichard Henderson <rth@twiddle.net>2005-07-28 04:07:41 -0400
committerLinus Torvalds <torvalds@g5.osdl.org>2005-07-28 11:39:02 -0400
commit79a8810221ee9ea96c4e5a5817afb88f22ea698c (patch)
tree7e2c09f335ac6e51e6bad2299c3f9da4132d34c9 /include/linux/smp.h
parent11be00cba6be114f861123cfc6779f195a615d22 (diff)
[PATCH] alpha: fix "statement with no effect" warnings
Apparently gcc 4.0 complains about "({ 0; });", which leads to -Werror breakage in one of the alpha oprofile modules. One might could argue that this is a gcc bug, in that statement-expressions should be considered to be function-like rather than statement-like for the purposes of this warning. But it's just as easy to use an inline function in the first place, side-stepping the issue. Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include/linux/smp.h')
-rw-r--r--include/linux/smp.h20
1 files changed, 16 insertions, 4 deletions
diff --git a/include/linux/smp.h b/include/linux/smp.h
index 9dfa3ee769ae..22b451d1b93f 100644
--- a/include/linux/smp.h
+++ b/include/linux/smp.h
@@ -94,11 +94,23 @@ void smp_prepare_boot_cpu(void);
94 */ 94 */
95#define raw_smp_processor_id() 0 95#define raw_smp_processor_id() 0
96#define hard_smp_processor_id() 0 96#define hard_smp_processor_id() 0
97#define smp_call_function(func,info,retry,wait) ({ 0; })
98#define on_each_cpu(func,info,retry,wait) ({ func(info); 0; })
99static inline void smp_send_reschedule(int cpu) { }
100#define num_booting_cpus() 1 97#define num_booting_cpus() 1
101#define smp_prepare_boot_cpu() do {} while (0) 98
99static inline int smp_call_function(void (*func) (void *), void *info,
100 int retry, int wait)
101{
102 return 0;
103}
104
105static inline int on_each_cpu(void (*func) (void *), void *info,
106 int retry, int wait)
107{
108 func(info);
109 return 0;
110}
111
112static inline void smp_send_reschedule(int cpu) { }
113static inline void smp_prepare_boot_cpu(void) { }
102 114
103#endif /* !SMP */ 115#endif /* !SMP */
104 116