aboutsummaryrefslogtreecommitdiffstats
path: root/block
diff options
context:
space:
mode:
Diffstat (limited to 'block')
-rw-r--r--block/blk-ioc.c1
-rw-r--r--block/blk-mq-cpu.c8
-rw-r--r--block/blk-mq.c6
3 files changed, 7 insertions, 8 deletions
diff --git a/block/blk-ioc.c b/block/blk-ioc.c
index 46cd7bd18b34..242df01413f6 100644
--- a/block/blk-ioc.c
+++ b/block/blk-ioc.c
@@ -6,7 +6,6 @@
6#include <linux/init.h> 6#include <linux/init.h>
7#include <linux/bio.h> 7#include <linux/bio.h>
8#include <linux/blkdev.h> 8#include <linux/blkdev.h>
9#include <linux/bootmem.h> /* for max_pfn/max_low_pfn */
10#include <linux/slab.h> 9#include <linux/slab.h>
11 10
12#include "blk.h" 11#include "blk.h"
diff --git a/block/blk-mq-cpu.c b/block/blk-mq-cpu.c
index f8ea39d7ae54..0045ace9bdf0 100644
--- a/block/blk-mq-cpu.c
+++ b/block/blk-mq-cpu.c
@@ -13,8 +13,8 @@
13static LIST_HEAD(blk_mq_cpu_notify_list); 13static LIST_HEAD(blk_mq_cpu_notify_list);
14static DEFINE_SPINLOCK(blk_mq_cpu_notify_lock); 14static DEFINE_SPINLOCK(blk_mq_cpu_notify_lock);
15 15
16static int __cpuinit blk_mq_main_cpu_notify(struct notifier_block *self, 16static int blk_mq_main_cpu_notify(struct notifier_block *self,
17 unsigned long action, void *hcpu) 17 unsigned long action, void *hcpu)
18{ 18{
19 unsigned int cpu = (unsigned long) hcpu; 19 unsigned int cpu = (unsigned long) hcpu;
20 struct blk_mq_cpu_notifier *notify; 20 struct blk_mq_cpu_notifier *notify;
@@ -28,8 +28,8 @@ static int __cpuinit blk_mq_main_cpu_notify(struct notifier_block *self,
28 return NOTIFY_OK; 28 return NOTIFY_OK;
29} 29}
30 30
31static void __cpuinit blk_mq_cpu_notify(void *data, unsigned long action, 31static void blk_mq_cpu_notify(void *data, unsigned long action,
32 unsigned int cpu) 32 unsigned int cpu)
33{ 33{
34 if (action == CPU_DEAD || action == CPU_DEAD_FROZEN) { 34 if (action == CPU_DEAD || action == CPU_DEAD_FROZEN) {
35 /* 35 /*
diff --git a/block/blk-mq.c b/block/blk-mq.c
index c661896e2465..862f458d4760 100644
--- a/block/blk-mq.c
+++ b/block/blk-mq.c
@@ -1444,7 +1444,7 @@ void blk_mq_free_queue(struct request_queue *q)
1444EXPORT_SYMBOL(blk_mq_free_queue); 1444EXPORT_SYMBOL(blk_mq_free_queue);
1445 1445
1446/* Basically redo blk_mq_init_queue with queue frozen */ 1446/* Basically redo blk_mq_init_queue with queue frozen */
1447static void __cpuinit blk_mq_queue_reinit(struct request_queue *q) 1447static void blk_mq_queue_reinit(struct request_queue *q)
1448{ 1448{
1449 blk_mq_freeze_queue(q); 1449 blk_mq_freeze_queue(q);
1450 1450
@@ -1461,8 +1461,8 @@ static void __cpuinit blk_mq_queue_reinit(struct request_queue *q)
1461 blk_mq_unfreeze_queue(q); 1461 blk_mq_unfreeze_queue(q);
1462} 1462}
1463 1463
1464static int __cpuinit blk_mq_queue_reinit_notify(struct notifier_block *nb, 1464static int blk_mq_queue_reinit_notify(struct notifier_block *nb,
1465 unsigned long action, void *hcpu) 1465 unsigned long action, void *hcpu)
1466{ 1466{
1467 struct request_queue *q; 1467 struct request_queue *q;
1468 1468