From 08fff1d3716be101007b7edcddb30bf8e6a818fa Mon Sep 17 00:00:00 2001 From: Rusty Russell Date: Thu, 24 Sep 2009 09:34:40 -0600 Subject: [PATCH] --- yaml --- r: 165615 b: refs/heads/master c: fe71a3c7dc8cfe0f239c04b4fc6501f4aa56aa0a h: refs/heads/master i: 165613: a8aee368b7f390126cb87d82c75fadfc6ce59b23 165611: 0b4664cc28ece3545b9a3e00bbfd48410bf12794 165607: 79e16a9713d468294c898d900602b9bca6b59907 165599: 9a965b116ea666713413b9c30367b4824275e011 v: v3 --- [refs] | 2 +- trunk/include/linux/smp.h | 11 ----------- 2 files changed, 1 insertion(+), 12 deletions(-) diff --git a/[refs] b/[refs] index 0d8e600691ef..cb18fa5d911d 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: da83a84b53296a2ea498be8a497c86fb4a1fd2d6 +refs/heads/master: fe71a3c7dc8cfe0f239c04b4fc6501f4aa56aa0a diff --git a/trunk/include/linux/smp.h b/trunk/include/linux/smp.h index 9e3d8af09207..39c64bae776d 100644 --- a/trunk/include/linux/smp.h +++ b/trunk/include/linux/smp.h @@ -73,15 +73,6 @@ int smp_call_function(void(*func)(void *info), void *info, int wait); void smp_call_function_many(const struct cpumask *mask, void (*func)(void *info), void *info, bool wait); -/* Deprecated: Use smp_call_function_many which takes a pointer to the mask. */ -static inline int -smp_call_function_mask(cpumask_t mask, void(*func)(void *info), void *info, - int wait) -{ - smp_call_function_many(&mask, func, info, wait); - return 0; -} - void __smp_call_function_single(int cpuid, struct call_single_data *data, int wait); @@ -144,8 +135,6 @@ static inline int up_smp_call_function(void (*func)(void *), void *info) static inline void smp_send_reschedule(int cpu) { } #define num_booting_cpus() 1 #define smp_prepare_boot_cpu() do {} while (0) -#define smp_call_function_mask(mask, func, info, wait) \ - (up_smp_call_function(func, info)) #define smp_call_function_many(mask, func, info, wait) \ (up_smp_call_function(func, info)) static inline void init_call_single_data(void)