blob: 136ef8643bbade3dd2d5d84e35183c749bc00399 [file] [log] [blame]
Jens Axboe320ae512013-10-24 09:20:05 +01001#include <linux/kernel.h>
2#include <linux/module.h>
3#include <linux/init.h>
4#include <linux/blkdev.h>
5#include <linux/list.h>
6#include <linux/llist.h>
7#include <linux/smp.h>
8#include <linux/cpu.h>
9
10#include <linux/blk-mq.h>
11#include "blk-mq.h"
12
13static LIST_HEAD(blk_mq_cpu_notify_list);
Mike Galbraith2a26ebe2014-03-03 05:57:26 +010014static DEFINE_RAW_SPINLOCK(blk_mq_cpu_notify_lock);
Jens Axboe320ae512013-10-24 09:20:05 +010015
Paul Gortmakerf618ef72013-11-14 08:26:02 -070016static int blk_mq_main_cpu_notify(struct notifier_block *self,
17 unsigned long action, void *hcpu)
Jens Axboe320ae512013-10-24 09:20:05 +010018{
19 unsigned int cpu = (unsigned long) hcpu;
20 struct blk_mq_cpu_notifier *notify;
21
Mike Galbraith2a26ebe2014-03-03 05:57:26 +010022 raw_spin_lock(&blk_mq_cpu_notify_lock);
Jens Axboe320ae512013-10-24 09:20:05 +010023
24 list_for_each_entry(notify, &blk_mq_cpu_notify_list, list)
25 notify->notify(notify->data, action, cpu);
26
Mike Galbraith2a26ebe2014-03-03 05:57:26 +010027 raw_spin_unlock(&blk_mq_cpu_notify_lock);
Jens Axboe320ae512013-10-24 09:20:05 +010028 return NOTIFY_OK;
29}
30
Jens Axboe320ae512013-10-24 09:20:05 +010031void blk_mq_register_cpu_notifier(struct blk_mq_cpu_notifier *notifier)
32{
33 BUG_ON(!notifier->notify);
34
Mike Galbraith2a26ebe2014-03-03 05:57:26 +010035 raw_spin_lock(&blk_mq_cpu_notify_lock);
Jens Axboe320ae512013-10-24 09:20:05 +010036 list_add_tail(&notifier->list, &blk_mq_cpu_notify_list);
Mike Galbraith2a26ebe2014-03-03 05:57:26 +010037 raw_spin_unlock(&blk_mq_cpu_notify_lock);
Jens Axboe320ae512013-10-24 09:20:05 +010038}
39
40void blk_mq_unregister_cpu_notifier(struct blk_mq_cpu_notifier *notifier)
41{
Mike Galbraith2a26ebe2014-03-03 05:57:26 +010042 raw_spin_lock(&blk_mq_cpu_notify_lock);
Jens Axboe320ae512013-10-24 09:20:05 +010043 list_del(&notifier->list);
Mike Galbraith2a26ebe2014-03-03 05:57:26 +010044 raw_spin_unlock(&blk_mq_cpu_notify_lock);
Jens Axboe320ae512013-10-24 09:20:05 +010045}
46
47void blk_mq_init_cpu_notifier(struct blk_mq_cpu_notifier *notifier,
48 void (*fn)(void *, unsigned long, unsigned int),
49 void *data)
50{
51 notifier->notify = fn;
52 notifier->data = data;
53}
54
Jens Axboe320ae512013-10-24 09:20:05 +010055void __init blk_mq_cpu_init(void)
56{
Andrew Morton381d3ee2014-01-28 09:52:01 -070057 hotcpu_notifier(blk_mq_main_cpu_notify, 0);
Jens Axboe320ae512013-10-24 09:20:05 +010058}