From: Jan Kara Date: Mon, 24 Feb 2014 15:39:56 +0000 (+0100) Subject: smp: Remove unused list_head from csd X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=0ebeb79ce920bed3a4a55113534951d95a444fbb;p=linux-beck.git smp: Remove unused list_head from csd Now that we got rid of all the remaining code which fiddled with csd.list, lets remove it. Signed-off-by: Jan Kara Cc: Andrew Morton Cc: Christoph Hellwig Cc: Ingo Molnar Cc: Jens Axboe Signed-off-by: Frederic Weisbecker Signed-off-by: Jens Axboe --- diff --git a/include/linux/smp.h b/include/linux/smp.h index 6ae004e437ea..4991c6b12831 100644 --- a/include/linux/smp.h +++ b/include/linux/smp.h @@ -17,10 +17,7 @@ extern void cpu_idle(void); typedef void (*smp_call_func_t)(void *info); struct call_single_data { - union { - struct list_head list; - struct llist_node llist; - }; + struct llist_node llist; smp_call_func_t func; void *info; u16 flags;