diff options
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/smp.h | 46 |
1 files changed, 38 insertions, 8 deletions
diff --git a/include/linux/smp.h b/include/linux/smp.h index 55232ccf9cfd..48262f86c969 100644 --- a/include/linux/smp.h +++ b/include/linux/smp.h | |||
| @@ -7,9 +7,18 @@ | |||
| 7 | */ | 7 | */ |
| 8 | 8 | ||
| 9 | #include <linux/errno.h> | 9 | #include <linux/errno.h> |
| 10 | #include <linux/list.h> | ||
| 11 | #include <linux/cpumask.h> | ||
| 10 | 12 | ||
| 11 | extern void cpu_idle(void); | 13 | extern void cpu_idle(void); |
| 12 | 14 | ||
| 15 | struct call_single_data { | ||
| 16 | struct list_head list; | ||
| 17 | void (*func) (void *info); | ||
| 18 | void *info; | ||
| 19 | unsigned int flags; | ||
| 20 | }; | ||
| 21 | |||
| 13 | #ifdef CONFIG_SMP | 22 | #ifdef CONFIG_SMP |
| 14 | 23 | ||
| 15 | #include <linux/preempt.h> | 24 | #include <linux/preempt.h> |
| @@ -52,15 +61,34 @@ extern void smp_cpus_done(unsigned int max_cpus); | |||
| 52 | /* | 61 | /* |
| 53 | * Call a function on all other processors | 62 | * Call a function on all other processors |
| 54 | */ | 63 | */ |
| 55 | int smp_call_function(void(*func)(void *info), void *info, int retry, int wait); | 64 | int smp_call_function(void(*func)(void *info), void *info, int wait); |
| 56 | 65 | int smp_call_function_mask(cpumask_t mask, void(*func)(void *info), void *info, | |
| 66 | int wait); | ||
| 57 | int smp_call_function_single(int cpuid, void (*func) (void *info), void *info, | 67 | int smp_call_function_single(int cpuid, void (*func) (void *info), void *info, |
| 58 | int retry, int wait); | 68 | int wait); |
| 69 | void __smp_call_function_single(int cpuid, struct call_single_data *data); | ||
| 70 | |||
| 71 | /* | ||
| 72 | * Generic and arch helpers | ||
| 73 | */ | ||
| 74 | #ifdef CONFIG_USE_GENERIC_SMP_HELPERS | ||
| 75 | void generic_smp_call_function_single_interrupt(void); | ||
| 76 | void generic_smp_call_function_interrupt(void); | ||
| 77 | void init_call_single_data(void); | ||
| 78 | void ipi_call_lock(void); | ||
| 79 | void ipi_call_unlock(void); | ||
| 80 | void ipi_call_lock_irq(void); | ||
| 81 | void ipi_call_unlock_irq(void); | ||
| 82 | #else | ||
| 83 | static inline void init_call_single_data(void) | ||
| 84 | { | ||
| 85 | } | ||
| 86 | #endif | ||
| 59 | 87 | ||
| 60 | /* | 88 | /* |
| 61 | * Call a function on all processors | 89 | * Call a function on all processors |
| 62 | */ | 90 | */ |
| 63 | int on_each_cpu(void (*func) (void *info), void *info, int retry, int wait); | 91 | int on_each_cpu(void (*func) (void *info), void *info, int wait); |
| 64 | 92 | ||
| 65 | #define MSG_ALL_BUT_SELF 0x8000 /* Assume <32768 CPU's */ | 93 | #define MSG_ALL_BUT_SELF 0x8000 /* Assume <32768 CPU's */ |
| 66 | #define MSG_ALL 0x8001 | 94 | #define MSG_ALL 0x8001 |
| @@ -90,9 +118,9 @@ static inline int up_smp_call_function(void (*func)(void *), void *info) | |||
| 90 | { | 118 | { |
| 91 | return 0; | 119 | return 0; |
| 92 | } | 120 | } |
| 93 | #define smp_call_function(func, info, retry, wait) \ | 121 | #define smp_call_function(func, info, wait) \ |
| 94 | (up_smp_call_function(func, info)) | 122 | (up_smp_call_function(func, info)) |
| 95 | #define on_each_cpu(func,info,retry,wait) \ | 123 | #define on_each_cpu(func,info,wait) \ |
| 96 | ({ \ | 124 | ({ \ |
| 97 | local_irq_disable(); \ | 125 | local_irq_disable(); \ |
| 98 | func(info); \ | 126 | func(info); \ |
| @@ -102,7 +130,7 @@ static inline int up_smp_call_function(void (*func)(void *), void *info) | |||
| 102 | static inline void smp_send_reschedule(int cpu) { } | 130 | static inline void smp_send_reschedule(int cpu) { } |
| 103 | #define num_booting_cpus() 1 | 131 | #define num_booting_cpus() 1 |
| 104 | #define smp_prepare_boot_cpu() do {} while (0) | 132 | #define smp_prepare_boot_cpu() do {} while (0) |
| 105 | #define smp_call_function_single(cpuid, func, info, retry, wait) \ | 133 | #define smp_call_function_single(cpuid, func, info, wait) \ |
| 106 | ({ \ | 134 | ({ \ |
| 107 | WARN_ON(cpuid != 0); \ | 135 | WARN_ON(cpuid != 0); \ |
| 108 | local_irq_disable(); \ | 136 | local_irq_disable(); \ |
| @@ -112,7 +140,9 @@ static inline void smp_send_reschedule(int cpu) { } | |||
| 112 | }) | 140 | }) |
| 113 | #define smp_call_function_mask(mask, func, info, wait) \ | 141 | #define smp_call_function_mask(mask, func, info, wait) \ |
| 114 | (up_smp_call_function(func, info)) | 142 | (up_smp_call_function(func, info)) |
| 115 | 143 | static inline void init_call_single_data(void) | |
| 144 | { | ||
| 145 | } | ||
| 116 | #endif /* !SMP */ | 146 | #endif /* !SMP */ |
| 117 | 147 | ||
| 118 | /* | 148 | /* |
