Revert "[NET]: Shut up warnings in net/core/flow.c"

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>

+1 -7
+1 -7
include/linux/smp.h
··· 94 94 */ 95 95 #define raw_smp_processor_id() 0 96 96 #define hard_smp_processor_id() 0 97 - 98 - static inline int smp_call_function(void (*func) (void *info), void *info, 99 - int retry, int wait) 100 - { 101 - return 0; 102 - } 103 - 97 + #define smp_call_function(func,info,retry,wait) ({ 0; }) 104 98 #define on_each_cpu(func,info,retry,wait) ({ func(info); 0; }) 105 99 static inline void smp_send_reschedule(int cpu) { } 106 100 #define num_booting_cpus() 1