]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
Revert "[NET]: Shut up warnings in net/core/flow.c"
authorLinus Torvalds <torvalds@g5.osdl.org>
Wed, 23 Nov 2005 16:44:05 +0000 (08:44 -0800)
committerLinus Torvalds <torvalds@g5.osdl.org>
Wed, 23 Nov 2005 16:44:05 +0000 (08:44 -0800)
This reverts commit af2b4079ab154bd12e8c12b02db5f31b31babe63

Changing the #define to an inline function breaks on non-SMP builds,
since wuite a few places in the kernel do not implement the ipi handler
when compiling for UP.

Signed-off-by: Linus Torvalds <torvalds@osdl.org>
include/linux/smp.h

index b6069c8e1f04479a1dd22ef1d85ce8b965793ef2..9dfa3ee769ae2c02846a19a8f4a7b727a78baf33 100644 (file)
@@ -94,13 +94,7 @@ void smp_prepare_boot_cpu(void);
  */
 #define raw_smp_processor_id()                 0
 #define hard_smp_processor_id()                        0
-
-static inline int smp_call_function(void (*func) (void *info), void *info,
-                                   int retry, int wait)
-{
-       return 0;
-}
-
+#define smp_call_function(func,info,retry,wait)        ({ 0; })
 #define on_each_cpu(func,info,retry,wait)      ({ func(info); 0; })
 static inline void smp_send_reschedule(int cpu) { }
 #define num_booting_cpus()                     1