diff options
author | Jan Kara <[email protected]> | 2014-02-24 16:39:56 +0100 |
---|---|---|
committer | Jens Axboe <[email protected]> | 2014-02-24 14:46:51 -0800 |
commit | 0ebeb79ce920bed3a4a55113534951d95a444fbb (patch) | |
tree | 9a16ca6dcd48845a15653422c0886eaf46ef660d | |
parent | 5fd77595ec62141fa71e575bdbf410e0192f87d0 (diff) |
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 <[email protected]>
Cc: Andrew Morton <[email protected]>
Cc: Christoph Hellwig <[email protected]>
Cc: Ingo Molnar <[email protected]>
Cc: Jens Axboe <[email protected]>
Signed-off-by: Frederic Weisbecker <[email protected]>
Signed-off-by: Jens Axboe <[email protected]>
-rw-r--r-- | include/linux/smp.h | 5 |
1 files changed, 1 insertions, 4 deletions
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; |