diff options
Diffstat (limited to 'block')
-rw-r--r-- | block/ll_rw_blk.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/block/ll_rw_blk.c b/block/ll_rw_blk.c index 7eb36c53f4b7..465b54312c59 100644 --- a/block/ll_rw_blk.c +++ b/block/ll_rw_blk.c | |||
@@ -3359,12 +3359,11 @@ EXPORT_SYMBOL(end_that_request_chunk); | |||
3359 | */ | 3359 | */ |
3360 | static void blk_done_softirq(struct softirq_action *h) | 3360 | static void blk_done_softirq(struct softirq_action *h) |
3361 | { | 3361 | { |
3362 | struct list_head *cpu_list; | 3362 | struct list_head *cpu_list, local_list; |
3363 | LIST_HEAD(local_list); | ||
3364 | 3363 | ||
3365 | local_irq_disable(); | 3364 | local_irq_disable(); |
3366 | cpu_list = &__get_cpu_var(blk_cpu_done); | 3365 | cpu_list = &__get_cpu_var(blk_cpu_done); |
3367 | list_splice_init(cpu_list, &local_list); | 3366 | list_replace_init(cpu_list, &local_list); |
3368 | local_irq_enable(); | 3367 | local_irq_enable(); |
3369 | 3368 | ||
3370 | while (!list_empty(&local_list)) { | 3369 | while (!list_empty(&local_list)) { |