diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2008-07-15 00:28:42 +0200 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-07-15 00:28:42 +0200 |
commit | 666484f0250db2e016948d63b3ef33e202e3b8d0 (patch) | |
tree | 734f48c10aa364965e4f4642ee3de51669e62be2 /block | |
parent | Merge branch 'core/rodata' of git://git.kernel.org/pub/scm/linux/kernel/git/t... (diff) | |
parent | Merge branch 'linus' into core/softirq (diff) | |
download | linux-666484f0250db2e016948d63b3ef33e202e3b8d0.tar.xz linux-666484f0250db2e016948d63b3ef33e202e3b8d0.zip |
Merge branch 'core/softirq' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip
* 'core/softirq' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip:
softirq: remove irqs_disabled warning from local_bh_enable
softirq: remove initialization of static per-cpu variable
Remove argument from open_softirq which is always NULL
Diffstat (limited to 'block')
-rw-r--r-- | block/blk-core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/block/blk-core.c b/block/blk-core.c index dbc7f42b5d2b..c6e536597c8a 100644 --- a/block/blk-core.c +++ b/block/blk-core.c @@ -2048,7 +2048,7 @@ int __init blk_dev_init(void) for_each_possible_cpu(i) INIT_LIST_HEAD(&per_cpu(blk_cpu_done, i)); - open_softirq(BLOCK_SOFTIRQ, blk_done_softirq, NULL); + open_softirq(BLOCK_SOFTIRQ, blk_done_softirq); register_hotcpu_notifier(&blk_cpu_notifier); return 0; |