mirror of
https://github.com/adulau/aha.git
synced 2025-01-03 14:43:17 +00:00
Revert "[NET]: Shut up warnings in net/core/flow.c"
This reverts commit af2b4079ab
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>
This commit is contained in:
parent
1778d55edb
commit
2d0ebb3603
1 changed files with 1 additions and 7 deletions
|
@ -94,13 +94,7 @@ void smp_prepare_boot_cpu(void);
|
||||||
*/
|
*/
|
||||||
#define raw_smp_processor_id() 0
|
#define raw_smp_processor_id() 0
|
||||||
#define hard_smp_processor_id() 0
|
#define hard_smp_processor_id() 0
|
||||||
|
#define smp_call_function(func,info,retry,wait) ({ 0; })
|
||||||
static inline int smp_call_function(void (*func) (void *info), void *info,
|
|
||||||
int retry, int wait)
|
|
||||||
{
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
#define on_each_cpu(func,info,retry,wait) ({ func(info); 0; })
|
#define on_each_cpu(func,info,retry,wait) ({ func(info); 0; })
|
||||||
static inline void smp_send_reschedule(int cpu) { }
|
static inline void smp_send_reschedule(int cpu) { }
|
||||||
#define num_booting_cpus() 1
|
#define num_booting_cpus() 1
|
||||||
|
|
Loading…
Reference in a new issue