aboutsummaryrefslogtreecommitdiffstats
path: root/block
diff options
context:
space:
mode:
authorJens Axboe <jens.axboe@oracle.com>2009-08-06 14:53:45 -0400
committerJens Axboe <jens.axboe@oracle.com>2009-09-11 08:33:32 -0400
commita33dac26d42d6f156b3b05a929961bd8d904f6e2 (patch)
tree568bd7422522fa261f4894e68c52ab04c7d74ec2 /block
parentfca51d64c5baf64604bc1edc5c5f0e7ed176322f (diff)
block: use interrupts disabled version of raise_softirq_irqoff()
We already have interrupts disabled at that point, so use the __raise_softirq_irqoff() variant. Signed-off-by: Jens Axboe <jens.axboe@oracle.com>
Diffstat (limited to 'block')
-rw-r--r--block/blk-iopoll.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/block/blk-iopoll.c b/block/blk-iopoll.c
index b9b32652292c..ca564202ed7a 100644
--- a/block/blk-iopoll.c
+++ b/block/blk-iopoll.c
@@ -202,7 +202,7 @@ static int __cpuinit blk_iopoll_cpu_notify(struct notifier_block *self,
202 local_irq_disable(); 202 local_irq_disable();
203 list_splice_init(&per_cpu(blk_cpu_iopoll, cpu), 203 list_splice_init(&per_cpu(blk_cpu_iopoll, cpu),
204 &__get_cpu_var(blk_cpu_iopoll)); 204 &__get_cpu_var(blk_cpu_iopoll));
205 raise_softirq_irqoff(BLOCK_IOPOLL_SOFTIRQ); 205 __raise_softirq_irqoff(BLOCK_IOPOLL_SOFTIRQ);
206 local_irq_enable(); 206 local_irq_enable();
207 } 207 }
208 208