Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 1 | #include <linux/module.h> |
Matias Bjørling | fc1bc35 | 2013-12-21 00:11:01 +0100 | [diff] [blame] | 2 | |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 3 | #include <linux/moduleparam.h> |
| 4 | #include <linux/sched.h> |
| 5 | #include <linux/fs.h> |
| 6 | #include <linux/blkdev.h> |
| 7 | #include <linux/init.h> |
| 8 | #include <linux/slab.h> |
| 9 | #include <linux/blk-mq.h> |
| 10 | #include <linux/hrtimer.h> |
Matias Bjørling | b2b7e00 | 2015-11-12 20:25:10 +0100 | [diff] [blame] | 11 | #include <linux/lightnvm.h> |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 12 | |
| 13 | struct nullb_cmd { |
| 14 | struct list_head list; |
| 15 | struct llist_node ll_list; |
| 16 | struct call_single_data csd; |
| 17 | struct request *rq; |
| 18 | struct bio *bio; |
| 19 | unsigned int tag; |
| 20 | struct nullb_queue *nq; |
Paolo Valente | 3c395a9 | 2015-12-01 11:48:17 +0100 | [diff] [blame] | 21 | struct hrtimer timer; |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 22 | }; |
| 23 | |
| 24 | struct nullb_queue { |
| 25 | unsigned long *tag_map; |
| 26 | wait_queue_head_t wait; |
| 27 | unsigned int queue_depth; |
| 28 | |
| 29 | struct nullb_cmd *cmds; |
| 30 | }; |
| 31 | |
| 32 | struct nullb { |
| 33 | struct list_head list; |
| 34 | unsigned int index; |
| 35 | struct request_queue *q; |
| 36 | struct gendisk *disk; |
Matias Bjørling | b0b4e09 | 2016-09-16 14:25:07 +0200 | [diff] [blame] | 37 | struct nvm_dev *ndev; |
Christoph Hellwig | 24d2f90 | 2014-04-15 14:14:00 -0600 | [diff] [blame] | 38 | struct blk_mq_tag_set tag_set; |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 39 | struct hrtimer timer; |
| 40 | unsigned int queue_depth; |
| 41 | spinlock_t lock; |
| 42 | |
| 43 | struct nullb_queue *queues; |
| 44 | unsigned int nr_queues; |
Matias Bjørling | b2b7e00 | 2015-11-12 20:25:10 +0100 | [diff] [blame] | 45 | char disk_name[DISK_NAME_LEN]; |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 46 | }; |
| 47 | |
| 48 | static LIST_HEAD(nullb_list); |
| 49 | static struct mutex lock; |
| 50 | static int null_major; |
| 51 | static int nullb_indexes; |
Matias Bjørling | 6bb9535 | 2015-11-19 12:50:08 +0100 | [diff] [blame] | 52 | static struct kmem_cache *ppa_cache; |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 53 | |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 54 | enum { |
| 55 | NULL_IRQ_NONE = 0, |
| 56 | NULL_IRQ_SOFTIRQ = 1, |
| 57 | NULL_IRQ_TIMER = 2, |
Christoph Hellwig | ce2c350 | 2014-02-10 03:24:40 -0800 | [diff] [blame] | 58 | }; |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 59 | |
Christoph Hellwig | ce2c350 | 2014-02-10 03:24:40 -0800 | [diff] [blame] | 60 | enum { |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 61 | NULL_Q_BIO = 0, |
| 62 | NULL_Q_RQ = 1, |
| 63 | NULL_Q_MQ = 2, |
| 64 | }; |
| 65 | |
Matias Bjorling | 2d263a78 | 2013-12-18 13:41:43 +0100 | [diff] [blame] | 66 | static int submit_queues; |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 67 | module_param(submit_queues, int, S_IRUGO); |
| 68 | MODULE_PARM_DESC(submit_queues, "Number of submission queues"); |
| 69 | |
| 70 | static int home_node = NUMA_NO_NODE; |
| 71 | module_param(home_node, int, S_IRUGO); |
| 72 | MODULE_PARM_DESC(home_node, "Home node for the device"); |
| 73 | |
| 74 | static int queue_mode = NULL_Q_MQ; |
Matias Bjorling | 709c866 | 2014-11-26 14:45:48 -0700 | [diff] [blame] | 75 | |
| 76 | static int null_param_store_val(const char *str, int *val, int min, int max) |
| 77 | { |
| 78 | int ret, new_val; |
| 79 | |
| 80 | ret = kstrtoint(str, 10, &new_val); |
| 81 | if (ret) |
| 82 | return -EINVAL; |
| 83 | |
| 84 | if (new_val < min || new_val > max) |
| 85 | return -EINVAL; |
| 86 | |
| 87 | *val = new_val; |
| 88 | return 0; |
| 89 | } |
| 90 | |
| 91 | static int null_set_queue_mode(const char *str, const struct kernel_param *kp) |
| 92 | { |
| 93 | return null_param_store_val(str, &queue_mode, NULL_Q_BIO, NULL_Q_MQ); |
| 94 | } |
| 95 | |
Luis R. Rodriguez | 9c27847 | 2015-05-27 11:09:38 +0930 | [diff] [blame] | 96 | static const struct kernel_param_ops null_queue_mode_param_ops = { |
Matias Bjorling | 709c866 | 2014-11-26 14:45:48 -0700 | [diff] [blame] | 97 | .set = null_set_queue_mode, |
| 98 | .get = param_get_int, |
| 99 | }; |
| 100 | |
| 101 | device_param_cb(queue_mode, &null_queue_mode_param_ops, &queue_mode, S_IRUGO); |
Mike Snitzer | 54ae81c | 2014-06-11 17:13:50 -0400 | [diff] [blame] | 102 | MODULE_PARM_DESC(queue_mode, "Block interface to use (0=bio,1=rq,2=multiqueue)"); |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 103 | |
| 104 | static int gb = 250; |
| 105 | module_param(gb, int, S_IRUGO); |
| 106 | MODULE_PARM_DESC(gb, "Size in GB"); |
| 107 | |
| 108 | static int bs = 512; |
| 109 | module_param(bs, int, S_IRUGO); |
| 110 | MODULE_PARM_DESC(bs, "Block size (in bytes)"); |
| 111 | |
| 112 | static int nr_devices = 2; |
| 113 | module_param(nr_devices, int, S_IRUGO); |
| 114 | MODULE_PARM_DESC(nr_devices, "Number of devices to register"); |
| 115 | |
Matias Bjørling | b2b7e00 | 2015-11-12 20:25:10 +0100 | [diff] [blame] | 116 | static bool use_lightnvm; |
| 117 | module_param(use_lightnvm, bool, S_IRUGO); |
| 118 | MODULE_PARM_DESC(use_lightnvm, "Register as a LightNVM device"); |
| 119 | |
Jens Axboe | db5bcf8 | 2017-03-30 13:44:26 -0600 | [diff] [blame] | 120 | static bool blocking; |
| 121 | module_param(blocking, bool, S_IRUGO); |
| 122 | MODULE_PARM_DESC(blocking, "Register as a blocking blk-mq driver device"); |
| 123 | |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 124 | static int irqmode = NULL_IRQ_SOFTIRQ; |
Matias Bjorling | 709c866 | 2014-11-26 14:45:48 -0700 | [diff] [blame] | 125 | |
| 126 | static int null_set_irqmode(const char *str, const struct kernel_param *kp) |
| 127 | { |
| 128 | return null_param_store_val(str, &irqmode, NULL_IRQ_NONE, |
| 129 | NULL_IRQ_TIMER); |
| 130 | } |
| 131 | |
Luis R. Rodriguez | 9c27847 | 2015-05-27 11:09:38 +0930 | [diff] [blame] | 132 | static const struct kernel_param_ops null_irqmode_param_ops = { |
Matias Bjorling | 709c866 | 2014-11-26 14:45:48 -0700 | [diff] [blame] | 133 | .set = null_set_irqmode, |
| 134 | .get = param_get_int, |
| 135 | }; |
| 136 | |
| 137 | device_param_cb(irqmode, &null_irqmode_param_ops, &irqmode, S_IRUGO); |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 138 | MODULE_PARM_DESC(irqmode, "IRQ completion handler. 0-none, 1-softirq, 2-timer"); |
| 139 | |
Arianna Avanzini | dbac117 | 2015-12-01 11:48:19 +0100 | [diff] [blame] | 140 | static unsigned long completion_nsec = 10000; |
| 141 | module_param(completion_nsec, ulong, S_IRUGO); |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 142 | MODULE_PARM_DESC(completion_nsec, "Time in ns to complete a request in hardware. Default: 10,000ns"); |
| 143 | |
| 144 | static int hw_queue_depth = 64; |
| 145 | module_param(hw_queue_depth, int, S_IRUGO); |
| 146 | MODULE_PARM_DESC(hw_queue_depth, "Queue depth for each hardware queue. Default: 64"); |
| 147 | |
Matias Bjørling | 2000524 | 2013-12-21 00:11:00 +0100 | [diff] [blame] | 148 | static bool use_per_node_hctx = false; |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 149 | module_param(use_per_node_hctx, bool, S_IRUGO); |
Matias Bjørling | 2000524 | 2013-12-21 00:11:00 +0100 | [diff] [blame] | 150 | MODULE_PARM_DESC(use_per_node_hctx, "Use per-node allocation for hardware context queues. Default: false"); |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 151 | |
| 152 | static void put_tag(struct nullb_queue *nq, unsigned int tag) |
| 153 | { |
| 154 | clear_bit_unlock(tag, nq->tag_map); |
| 155 | |
| 156 | if (waitqueue_active(&nq->wait)) |
| 157 | wake_up(&nq->wait); |
| 158 | } |
| 159 | |
| 160 | static unsigned int get_tag(struct nullb_queue *nq) |
| 161 | { |
| 162 | unsigned int tag; |
| 163 | |
| 164 | do { |
| 165 | tag = find_first_zero_bit(nq->tag_map, nq->queue_depth); |
| 166 | if (tag >= nq->queue_depth) |
| 167 | return -1U; |
| 168 | } while (test_and_set_bit_lock(tag, nq->tag_map)); |
| 169 | |
| 170 | return tag; |
| 171 | } |
| 172 | |
| 173 | static void free_cmd(struct nullb_cmd *cmd) |
| 174 | { |
| 175 | put_tag(cmd->nq, cmd->tag); |
| 176 | } |
| 177 | |
Paolo Valente | 3c395a9 | 2015-12-01 11:48:17 +0100 | [diff] [blame] | 178 | static enum hrtimer_restart null_cmd_timer_expired(struct hrtimer *timer); |
| 179 | |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 180 | static struct nullb_cmd *__alloc_cmd(struct nullb_queue *nq) |
| 181 | { |
| 182 | struct nullb_cmd *cmd; |
| 183 | unsigned int tag; |
| 184 | |
| 185 | tag = get_tag(nq); |
| 186 | if (tag != -1U) { |
| 187 | cmd = &nq->cmds[tag]; |
| 188 | cmd->tag = tag; |
| 189 | cmd->nq = nq; |
Paolo Valente | 3c395a9 | 2015-12-01 11:48:17 +0100 | [diff] [blame] | 190 | if (irqmode == NULL_IRQ_TIMER) { |
| 191 | hrtimer_init(&cmd->timer, CLOCK_MONOTONIC, |
| 192 | HRTIMER_MODE_REL); |
| 193 | cmd->timer.function = null_cmd_timer_expired; |
| 194 | } |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 195 | return cmd; |
| 196 | } |
| 197 | |
| 198 | return NULL; |
| 199 | } |
| 200 | |
| 201 | static struct nullb_cmd *alloc_cmd(struct nullb_queue *nq, int can_wait) |
| 202 | { |
| 203 | struct nullb_cmd *cmd; |
| 204 | DEFINE_WAIT(wait); |
| 205 | |
| 206 | cmd = __alloc_cmd(nq); |
| 207 | if (cmd || !can_wait) |
| 208 | return cmd; |
| 209 | |
| 210 | do { |
| 211 | prepare_to_wait(&nq->wait, &wait, TASK_UNINTERRUPTIBLE); |
| 212 | cmd = __alloc_cmd(nq); |
| 213 | if (cmd) |
| 214 | break; |
| 215 | |
| 216 | io_schedule(); |
| 217 | } while (1); |
| 218 | |
| 219 | finish_wait(&nq->wait, &wait); |
| 220 | return cmd; |
| 221 | } |
| 222 | |
| 223 | static void end_cmd(struct nullb_cmd *cmd) |
| 224 | { |
Arianna Avanzini | cf8ecc5 | 2015-12-01 11:48:18 +0100 | [diff] [blame] | 225 | struct request_queue *q = NULL; |
| 226 | |
Mike Krinkin | e827120 | 2015-12-15 12:56:40 +0300 | [diff] [blame] | 227 | if (cmd->rq) |
| 228 | q = cmd->rq->q; |
| 229 | |
Christoph Hellwig | ce2c350 | 2014-02-10 03:24:40 -0800 | [diff] [blame] | 230 | switch (queue_mode) { |
| 231 | case NULL_Q_MQ: |
Christoph Hellwig | c8a446a | 2014-09-13 16:40:10 -0700 | [diff] [blame] | 232 | blk_mq_end_request(cmd->rq, 0); |
Christoph Hellwig | ce2c350 | 2014-02-10 03:24:40 -0800 | [diff] [blame] | 233 | return; |
| 234 | case NULL_Q_RQ: |
| 235 | INIT_LIST_HEAD(&cmd->rq->queuelist); |
| 236 | blk_end_request_all(cmd->rq, 0); |
| 237 | break; |
| 238 | case NULL_Q_BIO: |
Christoph Hellwig | 4246a0b | 2015-07-20 15:29:37 +0200 | [diff] [blame] | 239 | bio_endio(cmd->bio); |
Jens Axboe | 48cc661 | 2015-12-28 13:02:47 -0700 | [diff] [blame] | 240 | break; |
Christoph Hellwig | ce2c350 | 2014-02-10 03:24:40 -0800 | [diff] [blame] | 241 | } |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 242 | |
Jens Axboe | 48cc661 | 2015-12-28 13:02:47 -0700 | [diff] [blame] | 243 | free_cmd(cmd); |
| 244 | |
Arianna Avanzini | cf8ecc5 | 2015-12-01 11:48:18 +0100 | [diff] [blame] | 245 | /* Restart queue if needed, as we are freeing a tag */ |
Jens Axboe | 48cc661 | 2015-12-28 13:02:47 -0700 | [diff] [blame] | 246 | if (queue_mode == NULL_Q_RQ && blk_queue_stopped(q)) { |
Arianna Avanzini | cf8ecc5 | 2015-12-01 11:48:18 +0100 | [diff] [blame] | 247 | unsigned long flags; |
| 248 | |
| 249 | spin_lock_irqsave(q->queue_lock, flags); |
Jens Axboe | 48cc661 | 2015-12-28 13:02:47 -0700 | [diff] [blame] | 250 | blk_start_queue_async(q); |
Arianna Avanzini | cf8ecc5 | 2015-12-01 11:48:18 +0100 | [diff] [blame] | 251 | spin_unlock_irqrestore(q->queue_lock, flags); |
| 252 | } |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 253 | } |
| 254 | |
| 255 | static enum hrtimer_restart null_cmd_timer_expired(struct hrtimer *timer) |
| 256 | { |
Arianna Avanzini | cf8ecc5 | 2015-12-01 11:48:18 +0100 | [diff] [blame] | 257 | end_cmd(container_of(timer, struct nullb_cmd, timer)); |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 258 | |
| 259 | return HRTIMER_NORESTART; |
| 260 | } |
| 261 | |
| 262 | static void null_cmd_end_timer(struct nullb_cmd *cmd) |
| 263 | { |
Thomas Gleixner | 8b0e195 | 2016-12-25 12:30:41 +0100 | [diff] [blame] | 264 | ktime_t kt = completion_nsec; |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 265 | |
Paolo Valente | 3c395a9 | 2015-12-01 11:48:17 +0100 | [diff] [blame] | 266 | hrtimer_start(&cmd->timer, kt, HRTIMER_MODE_REL); |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 267 | } |
| 268 | |
| 269 | static void null_softirq_done_fn(struct request *rq) |
| 270 | { |
Jens Axboe | d891fa7 | 2014-06-16 11:40:25 -0600 | [diff] [blame] | 271 | if (queue_mode == NULL_Q_MQ) |
| 272 | end_cmd(blk_mq_rq_to_pdu(rq)); |
| 273 | else |
| 274 | end_cmd(rq->special); |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 275 | } |
| 276 | |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 277 | static inline void null_handle_cmd(struct nullb_cmd *cmd) |
| 278 | { |
| 279 | /* Complete IO by inline, softirq or timer */ |
| 280 | switch (irqmode) { |
Christoph Hellwig | ce2c350 | 2014-02-10 03:24:40 -0800 | [diff] [blame] | 281 | case NULL_IRQ_SOFTIRQ: |
| 282 | switch (queue_mode) { |
| 283 | case NULL_Q_MQ: |
Christoph Hellwig | f4829a9 | 2015-09-27 21:01:50 +0200 | [diff] [blame] | 284 | blk_mq_complete_request(cmd->rq, cmd->rq->errors); |
Christoph Hellwig | ce2c350 | 2014-02-10 03:24:40 -0800 | [diff] [blame] | 285 | break; |
| 286 | case NULL_Q_RQ: |
| 287 | blk_complete_request(cmd->rq); |
| 288 | break; |
| 289 | case NULL_Q_BIO: |
| 290 | /* |
| 291 | * XXX: no proper submitting cpu information available. |
| 292 | */ |
| 293 | end_cmd(cmd); |
| 294 | break; |
| 295 | } |
| 296 | break; |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 297 | case NULL_IRQ_NONE: |
| 298 | end_cmd(cmd); |
| 299 | break; |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 300 | case NULL_IRQ_TIMER: |
| 301 | null_cmd_end_timer(cmd); |
| 302 | break; |
| 303 | } |
| 304 | } |
| 305 | |
| 306 | static struct nullb_queue *nullb_to_queue(struct nullb *nullb) |
| 307 | { |
| 308 | int index = 0; |
| 309 | |
| 310 | if (nullb->nr_queues != 1) |
| 311 | index = raw_smp_processor_id() / ((nr_cpu_ids + nullb->nr_queues - 1) / nullb->nr_queues); |
| 312 | |
| 313 | return &nullb->queues[index]; |
| 314 | } |
| 315 | |
Jens Axboe | dece163 | 2015-11-05 10:41:16 -0700 | [diff] [blame] | 316 | static blk_qc_t null_queue_bio(struct request_queue *q, struct bio *bio) |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 317 | { |
| 318 | struct nullb *nullb = q->queuedata; |
| 319 | struct nullb_queue *nq = nullb_to_queue(nullb); |
| 320 | struct nullb_cmd *cmd; |
| 321 | |
| 322 | cmd = alloc_cmd(nq, 1); |
| 323 | cmd->bio = bio; |
| 324 | |
| 325 | null_handle_cmd(cmd); |
Jens Axboe | dece163 | 2015-11-05 10:41:16 -0700 | [diff] [blame] | 326 | return BLK_QC_T_NONE; |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 327 | } |
| 328 | |
| 329 | static int null_rq_prep_fn(struct request_queue *q, struct request *req) |
| 330 | { |
| 331 | struct nullb *nullb = q->queuedata; |
| 332 | struct nullb_queue *nq = nullb_to_queue(nullb); |
| 333 | struct nullb_cmd *cmd; |
| 334 | |
| 335 | cmd = alloc_cmd(nq, 0); |
| 336 | if (cmd) { |
| 337 | cmd->rq = req; |
| 338 | req->special = cmd; |
| 339 | return BLKPREP_OK; |
| 340 | } |
Akinobu Mita | 8b70f45 | 2015-06-02 08:35:10 +0900 | [diff] [blame] | 341 | blk_stop_queue(q); |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 342 | |
| 343 | return BLKPREP_DEFER; |
| 344 | } |
| 345 | |
| 346 | static void null_request_fn(struct request_queue *q) |
| 347 | { |
| 348 | struct request *rq; |
| 349 | |
| 350 | while ((rq = blk_fetch_request(q)) != NULL) { |
| 351 | struct nullb_cmd *cmd = rq->special; |
| 352 | |
| 353 | spin_unlock_irq(q->queue_lock); |
| 354 | null_handle_cmd(cmd); |
| 355 | spin_lock_irq(q->queue_lock); |
| 356 | } |
| 357 | } |
| 358 | |
Jens Axboe | 74c4505 | 2014-10-29 11:14:52 -0600 | [diff] [blame] | 359 | static int null_queue_rq(struct blk_mq_hw_ctx *hctx, |
| 360 | const struct blk_mq_queue_data *bd) |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 361 | { |
Jens Axboe | 74c4505 | 2014-10-29 11:14:52 -0600 | [diff] [blame] | 362 | struct nullb_cmd *cmd = blk_mq_rq_to_pdu(bd->rq); |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 363 | |
Jens Axboe | db5bcf8 | 2017-03-30 13:44:26 -0600 | [diff] [blame] | 364 | might_sleep_if(hctx->flags & BLK_MQ_F_BLOCKING); |
| 365 | |
Paolo Valente | 3c395a9 | 2015-12-01 11:48:17 +0100 | [diff] [blame] | 366 | if (irqmode == NULL_IRQ_TIMER) { |
| 367 | hrtimer_init(&cmd->timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL); |
| 368 | cmd->timer.function = null_cmd_timer_expired; |
| 369 | } |
Jens Axboe | 74c4505 | 2014-10-29 11:14:52 -0600 | [diff] [blame] | 370 | cmd->rq = bd->rq; |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 371 | cmd->nq = hctx->driver_data; |
| 372 | |
Jens Axboe | 74c4505 | 2014-10-29 11:14:52 -0600 | [diff] [blame] | 373 | blk_mq_start_request(bd->rq); |
Christoph Hellwig | e249007 | 2014-09-13 16:40:09 -0700 | [diff] [blame] | 374 | |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 375 | null_handle_cmd(cmd); |
| 376 | return BLK_MQ_RQ_QUEUE_OK; |
| 377 | } |
| 378 | |
Matias Bjorling | 2d263a78 | 2013-12-18 13:41:43 +0100 | [diff] [blame] | 379 | static void null_init_queue(struct nullb *nullb, struct nullb_queue *nq) |
| 380 | { |
| 381 | BUG_ON(!nullb); |
| 382 | BUG_ON(!nq); |
| 383 | |
| 384 | init_waitqueue_head(&nq->wait); |
| 385 | nq->queue_depth = nullb->queue_depth; |
| 386 | } |
| 387 | |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 388 | static int null_init_hctx(struct blk_mq_hw_ctx *hctx, void *data, |
| 389 | unsigned int index) |
| 390 | { |
| 391 | struct nullb *nullb = data; |
| 392 | struct nullb_queue *nq = &nullb->queues[index]; |
| 393 | |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 394 | hctx->driver_data = nq; |
Matias Bjorling | 2d263a78 | 2013-12-18 13:41:43 +0100 | [diff] [blame] | 395 | null_init_queue(nullb, nq); |
| 396 | nullb->nr_queues++; |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 397 | |
| 398 | return 0; |
| 399 | } |
| 400 | |
Eric Biggers | f363b08 | 2017-03-30 13:39:16 -0700 | [diff] [blame] | 401 | static const struct blk_mq_ops null_mq_ops = { |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 402 | .queue_rq = null_queue_rq, |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 403 | .init_hctx = null_init_hctx, |
Christoph Hellwig | ce2c350 | 2014-02-10 03:24:40 -0800 | [diff] [blame] | 404 | .complete = null_softirq_done_fn, |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 405 | }; |
| 406 | |
Matias Bjørling | de65d2d | 2015-08-31 14:17:18 +0200 | [diff] [blame] | 407 | static void cleanup_queue(struct nullb_queue *nq) |
| 408 | { |
| 409 | kfree(nq->tag_map); |
| 410 | kfree(nq->cmds); |
| 411 | } |
| 412 | |
| 413 | static void cleanup_queues(struct nullb *nullb) |
| 414 | { |
| 415 | int i; |
| 416 | |
| 417 | for (i = 0; i < nullb->nr_queues; i++) |
| 418 | cleanup_queue(&nullb->queues[i]); |
| 419 | |
| 420 | kfree(nullb->queues); |
| 421 | } |
| 422 | |
Matias Bjørling | b2b7e00 | 2015-11-12 20:25:10 +0100 | [diff] [blame] | 423 | #ifdef CONFIG_NVM |
| 424 | |
| 425 | static void null_lnvm_end_io(struct request *rq, int error) |
| 426 | { |
| 427 | struct nvm_rq *rqd = rq->end_io_data; |
Matias Bjørling | b2b7e00 | 2015-11-12 20:25:10 +0100 | [diff] [blame] | 428 | |
Matias Bjørling | 06894ef | 2017-01-31 13:17:17 +0100 | [diff] [blame] | 429 | rqd->error = error; |
| 430 | nvm_end_io(rqd); |
Matias Bjørling | b2b7e00 | 2015-11-12 20:25:10 +0100 | [diff] [blame] | 431 | |
| 432 | blk_put_request(rq); |
| 433 | } |
| 434 | |
Matias Bjørling | 16f26c3 | 2015-12-06 11:25:48 +0100 | [diff] [blame] | 435 | static int null_lnvm_submit_io(struct nvm_dev *dev, struct nvm_rq *rqd) |
Matias Bjørling | b2b7e00 | 2015-11-12 20:25:10 +0100 | [diff] [blame] | 436 | { |
Matias Bjørling | 16f26c3 | 2015-12-06 11:25:48 +0100 | [diff] [blame] | 437 | struct request_queue *q = dev->q; |
Matias Bjørling | b2b7e00 | 2015-11-12 20:25:10 +0100 | [diff] [blame] | 438 | struct request *rq; |
| 439 | struct bio *bio = rqd->bio; |
| 440 | |
Christoph Hellwig | aebf526 | 2017-01-31 16:57:31 +0100 | [diff] [blame] | 441 | rq = blk_mq_alloc_request(q, |
| 442 | op_is_write(bio_op(bio)) ? REQ_OP_DRV_OUT : REQ_OP_DRV_IN, 0); |
Matias Bjørling | b2b7e00 | 2015-11-12 20:25:10 +0100 | [diff] [blame] | 443 | if (IS_ERR(rq)) |
| 444 | return -ENOMEM; |
| 445 | |
Bart Van Assche | 2644a3c | 2017-04-19 14:01:25 -0700 | [diff] [blame^] | 446 | blk_init_request_from_bio(rq, bio); |
Matias Bjørling | b2b7e00 | 2015-11-12 20:25:10 +0100 | [diff] [blame] | 447 | |
| 448 | rq->end_io_data = rqd; |
| 449 | |
| 450 | blk_execute_rq_nowait(q, NULL, rq, 0, null_lnvm_end_io); |
| 451 | |
| 452 | return 0; |
| 453 | } |
| 454 | |
Matias Bjørling | 16f26c3 | 2015-12-06 11:25:48 +0100 | [diff] [blame] | 455 | static int null_lnvm_id(struct nvm_dev *dev, struct nvm_id *id) |
Matias Bjørling | b2b7e00 | 2015-11-12 20:25:10 +0100 | [diff] [blame] | 456 | { |
| 457 | sector_t size = gb * 1024 * 1024 * 1024ULL; |
Matias Bjørling | 5b40db9 | 2015-11-19 12:50:09 +0100 | [diff] [blame] | 458 | sector_t blksize; |
Matias Bjørling | b2b7e00 | 2015-11-12 20:25:10 +0100 | [diff] [blame] | 459 | struct nvm_id_group *grp; |
| 460 | |
| 461 | id->ver_id = 0x1; |
| 462 | id->vmnt = 0; |
Matias Bjørling | bf64318 | 2016-02-04 15:13:27 +0100 | [diff] [blame] | 463 | id->cap = 0x2; |
Matias Bjørling | b2b7e00 | 2015-11-12 20:25:10 +0100 | [diff] [blame] | 464 | id->dom = 0x1; |
Matias Bjørling | 5b40db9 | 2015-11-19 12:50:09 +0100 | [diff] [blame] | 465 | |
| 466 | id->ppaf.blk_offset = 0; |
| 467 | id->ppaf.blk_len = 16; |
| 468 | id->ppaf.pg_offset = 16; |
| 469 | id->ppaf.pg_len = 16; |
| 470 | id->ppaf.sect_offset = 32; |
| 471 | id->ppaf.sect_len = 8; |
| 472 | id->ppaf.pln_offset = 40; |
| 473 | id->ppaf.pln_len = 8; |
| 474 | id->ppaf.lun_offset = 48; |
| 475 | id->ppaf.lun_len = 8; |
| 476 | id->ppaf.ch_offset = 56; |
| 477 | id->ppaf.ch_len = 8; |
Matias Bjørling | b2b7e00 | 2015-11-12 20:25:10 +0100 | [diff] [blame] | 478 | |
Arnd Bergmann | e93d12a | 2016-01-13 23:04:08 +0100 | [diff] [blame] | 479 | sector_div(size, bs); /* convert size to pages */ |
| 480 | size >>= 8; /* concert size to pgs pr blk */ |
Matias Bjørling | 19bd6fe | 2017-01-31 13:17:15 +0100 | [diff] [blame] | 481 | grp = &id->grp; |
Matias Bjørling | b2b7e00 | 2015-11-12 20:25:10 +0100 | [diff] [blame] | 482 | grp->mtype = 0; |
Matias Bjørling | 5b40db9 | 2015-11-19 12:50:09 +0100 | [diff] [blame] | 483 | grp->fmtype = 0; |
Matias Bjørling | b2b7e00 | 2015-11-12 20:25:10 +0100 | [diff] [blame] | 484 | grp->num_ch = 1; |
Matias Bjørling | b2b7e00 | 2015-11-12 20:25:10 +0100 | [diff] [blame] | 485 | grp->num_pg = 256; |
Matias Bjørling | 5b40db9 | 2015-11-19 12:50:09 +0100 | [diff] [blame] | 486 | blksize = size; |
Arnd Bergmann | e93d12a | 2016-01-13 23:04:08 +0100 | [diff] [blame] | 487 | size >>= 16; |
Matias Bjørling | 5b40db9 | 2015-11-19 12:50:09 +0100 | [diff] [blame] | 488 | grp->num_lun = size + 1; |
Arnd Bergmann | e93d12a | 2016-01-13 23:04:08 +0100 | [diff] [blame] | 489 | sector_div(blksize, grp->num_lun); |
Matias Bjørling | 5b40db9 | 2015-11-19 12:50:09 +0100 | [diff] [blame] | 490 | grp->num_blk = blksize; |
| 491 | grp->num_pln = 1; |
| 492 | |
Matias Bjørling | b2b7e00 | 2015-11-12 20:25:10 +0100 | [diff] [blame] | 493 | grp->fpg_sz = bs; |
| 494 | grp->csecs = bs; |
| 495 | grp->trdt = 25000; |
| 496 | grp->trdm = 25000; |
| 497 | grp->tprt = 500000; |
| 498 | grp->tprm = 500000; |
| 499 | grp->tbet = 1500000; |
| 500 | grp->tbem = 1500000; |
| 501 | grp->mpos = 0x010101; /* single plane rwe */ |
| 502 | grp->cpar = hw_queue_depth; |
| 503 | |
| 504 | return 0; |
| 505 | } |
| 506 | |
Matias Bjørling | 16f26c3 | 2015-12-06 11:25:48 +0100 | [diff] [blame] | 507 | static void *null_lnvm_create_dma_pool(struct nvm_dev *dev, char *name) |
Matias Bjørling | b2b7e00 | 2015-11-12 20:25:10 +0100 | [diff] [blame] | 508 | { |
| 509 | mempool_t *virtmem_pool; |
| 510 | |
Matias Bjørling | 6bb9535 | 2015-11-19 12:50:08 +0100 | [diff] [blame] | 511 | virtmem_pool = mempool_create_slab_pool(64, ppa_cache); |
Matias Bjørling | b2b7e00 | 2015-11-12 20:25:10 +0100 | [diff] [blame] | 512 | if (!virtmem_pool) { |
| 513 | pr_err("null_blk: Unable to create virtual memory pool\n"); |
| 514 | return NULL; |
| 515 | } |
| 516 | |
| 517 | return virtmem_pool; |
| 518 | } |
| 519 | |
| 520 | static void null_lnvm_destroy_dma_pool(void *pool) |
| 521 | { |
| 522 | mempool_destroy(pool); |
| 523 | } |
| 524 | |
Matias Bjørling | 16f26c3 | 2015-12-06 11:25:48 +0100 | [diff] [blame] | 525 | static void *null_lnvm_dev_dma_alloc(struct nvm_dev *dev, void *pool, |
Matias Bjørling | b2b7e00 | 2015-11-12 20:25:10 +0100 | [diff] [blame] | 526 | gfp_t mem_flags, dma_addr_t *dma_handler) |
| 527 | { |
| 528 | return mempool_alloc(pool, mem_flags); |
| 529 | } |
| 530 | |
| 531 | static void null_lnvm_dev_dma_free(void *pool, void *entry, |
| 532 | dma_addr_t dma_handler) |
| 533 | { |
| 534 | mempool_free(entry, pool); |
| 535 | } |
| 536 | |
| 537 | static struct nvm_dev_ops null_lnvm_dev_ops = { |
| 538 | .identity = null_lnvm_id, |
| 539 | .submit_io = null_lnvm_submit_io, |
| 540 | |
| 541 | .create_dma_pool = null_lnvm_create_dma_pool, |
| 542 | .destroy_dma_pool = null_lnvm_destroy_dma_pool, |
| 543 | .dev_dma_alloc = null_lnvm_dev_dma_alloc, |
| 544 | .dev_dma_free = null_lnvm_dev_dma_free, |
| 545 | |
| 546 | /* Simulate nvme protocol restriction */ |
| 547 | .max_phys_sect = 64, |
| 548 | }; |
Matias Bjørling | 9ae2d0a | 2016-09-16 14:25:05 +0200 | [diff] [blame] | 549 | |
| 550 | static int null_nvm_register(struct nullb *nullb) |
| 551 | { |
Matias Bjørling | b0b4e09 | 2016-09-16 14:25:07 +0200 | [diff] [blame] | 552 | struct nvm_dev *dev; |
| 553 | int rv; |
| 554 | |
| 555 | dev = nvm_alloc_dev(0); |
| 556 | if (!dev) |
| 557 | return -ENOMEM; |
| 558 | |
| 559 | dev->q = nullb->q; |
| 560 | memcpy(dev->name, nullb->disk_name, DISK_NAME_LEN); |
| 561 | dev->ops = &null_lnvm_dev_ops; |
| 562 | |
| 563 | rv = nvm_register(dev); |
| 564 | if (rv) { |
| 565 | kfree(dev); |
| 566 | return rv; |
| 567 | } |
| 568 | nullb->ndev = dev; |
| 569 | return 0; |
Matias Bjørling | 9ae2d0a | 2016-09-16 14:25:05 +0200 | [diff] [blame] | 570 | } |
| 571 | |
| 572 | static void null_nvm_unregister(struct nullb *nullb) |
| 573 | { |
Matias Bjørling | b0b4e09 | 2016-09-16 14:25:07 +0200 | [diff] [blame] | 574 | nvm_unregister(nullb->ndev); |
Matias Bjørling | 9ae2d0a | 2016-09-16 14:25:05 +0200 | [diff] [blame] | 575 | } |
Matias Bjørling | b2b7e00 | 2015-11-12 20:25:10 +0100 | [diff] [blame] | 576 | #else |
Matias Bjørling | 9ae2d0a | 2016-09-16 14:25:05 +0200 | [diff] [blame] | 577 | static int null_nvm_register(struct nullb *nullb) |
| 578 | { |
Yasuaki Ishimatsu | 92153d3 | 2016-11-16 08:26:11 -0700 | [diff] [blame] | 579 | pr_err("null_blk: CONFIG_NVM needs to be enabled for LightNVM\n"); |
Matias Bjørling | 9ae2d0a | 2016-09-16 14:25:05 +0200 | [diff] [blame] | 580 | return -EINVAL; |
| 581 | } |
| 582 | static void null_nvm_unregister(struct nullb *nullb) {} |
Matias Bjørling | b2b7e00 | 2015-11-12 20:25:10 +0100 | [diff] [blame] | 583 | #endif /* CONFIG_NVM */ |
| 584 | |
Matias Bjørling | 9ae2d0a | 2016-09-16 14:25:05 +0200 | [diff] [blame] | 585 | static void null_del_dev(struct nullb *nullb) |
| 586 | { |
| 587 | list_del_init(&nullb->list); |
| 588 | |
| 589 | if (use_lightnvm) |
| 590 | null_nvm_unregister(nullb); |
| 591 | else |
| 592 | del_gendisk(nullb->disk); |
| 593 | blk_cleanup_queue(nullb->q); |
| 594 | if (queue_mode == NULL_Q_MQ) |
| 595 | blk_mq_free_tag_set(&nullb->tag_set); |
| 596 | if (!use_lightnvm) |
| 597 | put_disk(nullb->disk); |
| 598 | cleanup_queues(nullb); |
| 599 | kfree(nullb); |
| 600 | } |
| 601 | |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 602 | static int null_open(struct block_device *bdev, fmode_t mode) |
| 603 | { |
| 604 | return 0; |
| 605 | } |
| 606 | |
| 607 | static void null_release(struct gendisk *disk, fmode_t mode) |
| 608 | { |
| 609 | } |
| 610 | |
| 611 | static const struct block_device_operations null_fops = { |
| 612 | .owner = THIS_MODULE, |
| 613 | .open = null_open, |
| 614 | .release = null_release, |
| 615 | }; |
| 616 | |
| 617 | static int setup_commands(struct nullb_queue *nq) |
| 618 | { |
| 619 | struct nullb_cmd *cmd; |
| 620 | int i, tag_size; |
| 621 | |
| 622 | nq->cmds = kzalloc(nq->queue_depth * sizeof(*cmd), GFP_KERNEL); |
| 623 | if (!nq->cmds) |
Matias Bjorling | 2d263a78 | 2013-12-18 13:41:43 +0100 | [diff] [blame] | 624 | return -ENOMEM; |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 625 | |
| 626 | tag_size = ALIGN(nq->queue_depth, BITS_PER_LONG) / BITS_PER_LONG; |
| 627 | nq->tag_map = kzalloc(tag_size * sizeof(unsigned long), GFP_KERNEL); |
| 628 | if (!nq->tag_map) { |
| 629 | kfree(nq->cmds); |
Matias Bjorling | 2d263a78 | 2013-12-18 13:41:43 +0100 | [diff] [blame] | 630 | return -ENOMEM; |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 631 | } |
| 632 | |
| 633 | for (i = 0; i < nq->queue_depth; i++) { |
| 634 | cmd = &nq->cmds[i]; |
| 635 | INIT_LIST_HEAD(&cmd->list); |
| 636 | cmd->ll_list.next = NULL; |
| 637 | cmd->tag = -1U; |
| 638 | } |
| 639 | |
| 640 | return 0; |
| 641 | } |
| 642 | |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 643 | static int setup_queues(struct nullb *nullb) |
| 644 | { |
Matias Bjorling | 2d263a78 | 2013-12-18 13:41:43 +0100 | [diff] [blame] | 645 | nullb->queues = kzalloc(submit_queues * sizeof(struct nullb_queue), |
| 646 | GFP_KERNEL); |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 647 | if (!nullb->queues) |
Matias Bjorling | 2d263a78 | 2013-12-18 13:41:43 +0100 | [diff] [blame] | 648 | return -ENOMEM; |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 649 | |
| 650 | nullb->nr_queues = 0; |
| 651 | nullb->queue_depth = hw_queue_depth; |
| 652 | |
Matias Bjorling | 2d263a78 | 2013-12-18 13:41:43 +0100 | [diff] [blame] | 653 | return 0; |
| 654 | } |
| 655 | |
| 656 | static int init_driver_queues(struct nullb *nullb) |
| 657 | { |
| 658 | struct nullb_queue *nq; |
| 659 | int i, ret = 0; |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 660 | |
| 661 | for (i = 0; i < submit_queues; i++) { |
| 662 | nq = &nullb->queues[i]; |
Matias Bjorling | 2d263a78 | 2013-12-18 13:41:43 +0100 | [diff] [blame] | 663 | |
| 664 | null_init_queue(nullb, nq); |
| 665 | |
| 666 | ret = setup_commands(nq); |
| 667 | if (ret) |
Jan Kara | 31f9690 | 2014-10-22 15:34:21 +0200 | [diff] [blame] | 668 | return ret; |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 669 | nullb->nr_queues++; |
| 670 | } |
Matias Bjorling | 2d263a78 | 2013-12-18 13:41:43 +0100 | [diff] [blame] | 671 | return 0; |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 672 | } |
| 673 | |
Matias Bjørling | 9ae2d0a | 2016-09-16 14:25:05 +0200 | [diff] [blame] | 674 | static int null_gendisk_register(struct nullb *nullb) |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 675 | { |
| 676 | struct gendisk *disk; |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 677 | sector_t size; |
Matias Bjørling | 9ae2d0a | 2016-09-16 14:25:05 +0200 | [diff] [blame] | 678 | |
| 679 | disk = nullb->disk = alloc_disk_node(1, home_node); |
| 680 | if (!disk) |
| 681 | return -ENOMEM; |
| 682 | size = gb * 1024 * 1024 * 1024ULL; |
| 683 | set_capacity(disk, size >> 9); |
| 684 | |
| 685 | disk->flags |= GENHD_FL_EXT_DEVT | GENHD_FL_SUPPRESS_PARTITION_INFO; |
| 686 | disk->major = null_major; |
| 687 | disk->first_minor = nullb->index; |
| 688 | disk->fops = &null_fops; |
| 689 | disk->private_data = nullb; |
| 690 | disk->queue = nullb->q; |
| 691 | strncpy(disk->disk_name, nullb->disk_name, DISK_NAME_LEN); |
| 692 | |
| 693 | add_disk(disk); |
| 694 | return 0; |
| 695 | } |
| 696 | |
| 697 | static int null_add_dev(void) |
| 698 | { |
| 699 | struct nullb *nullb; |
Robert Elliott | dc501dc | 2014-09-02 11:38:49 -0500 | [diff] [blame] | 700 | int rv; |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 701 | |
| 702 | nullb = kzalloc_node(sizeof(*nullb), GFP_KERNEL, home_node); |
Robert Elliott | dc501dc | 2014-09-02 11:38:49 -0500 | [diff] [blame] | 703 | if (!nullb) { |
| 704 | rv = -ENOMEM; |
Christoph Hellwig | 24d2f90 | 2014-04-15 14:14:00 -0600 | [diff] [blame] | 705 | goto out; |
Robert Elliott | dc501dc | 2014-09-02 11:38:49 -0500 | [diff] [blame] | 706 | } |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 707 | |
| 708 | spin_lock_init(&nullb->lock); |
| 709 | |
Matias Bjorling | 57053d8 | 2013-12-10 16:50:38 +0100 | [diff] [blame] | 710 | if (queue_mode == NULL_Q_MQ && use_per_node_hctx) |
| 711 | submit_queues = nr_online_nodes; |
| 712 | |
Robert Elliott | dc501dc | 2014-09-02 11:38:49 -0500 | [diff] [blame] | 713 | rv = setup_queues(nullb); |
| 714 | if (rv) |
Christoph Hellwig | 24d2f90 | 2014-04-15 14:14:00 -0600 | [diff] [blame] | 715 | goto out_free_nullb; |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 716 | |
| 717 | if (queue_mode == NULL_Q_MQ) { |
Christoph Hellwig | cdef54d | 2014-05-28 18:11:06 +0200 | [diff] [blame] | 718 | nullb->tag_set.ops = &null_mq_ops; |
Christoph Hellwig | 24d2f90 | 2014-04-15 14:14:00 -0600 | [diff] [blame] | 719 | nullb->tag_set.nr_hw_queues = submit_queues; |
| 720 | nullb->tag_set.queue_depth = hw_queue_depth; |
| 721 | nullb->tag_set.numa_node = home_node; |
| 722 | nullb->tag_set.cmd_size = sizeof(struct nullb_cmd); |
| 723 | nullb->tag_set.flags = BLK_MQ_F_SHOULD_MERGE; |
| 724 | nullb->tag_set.driver_data = nullb; |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 725 | |
Jens Axboe | db5bcf8 | 2017-03-30 13:44:26 -0600 | [diff] [blame] | 726 | if (blocking) |
| 727 | nullb->tag_set.flags |= BLK_MQ_F_BLOCKING; |
| 728 | |
Robert Elliott | dc501dc | 2014-09-02 11:38:49 -0500 | [diff] [blame] | 729 | rv = blk_mq_alloc_tag_set(&nullb->tag_set); |
| 730 | if (rv) |
Christoph Hellwig | 24d2f90 | 2014-04-15 14:14:00 -0600 | [diff] [blame] | 731 | goto out_cleanup_queues; |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 732 | |
Christoph Hellwig | 24d2f90 | 2014-04-15 14:14:00 -0600 | [diff] [blame] | 733 | nullb->q = blk_mq_init_queue(&nullb->tag_set); |
Ming Lei | 35b489d | 2015-01-02 14:25:27 +0000 | [diff] [blame] | 734 | if (IS_ERR(nullb->q)) { |
Robert Elliott | dc501dc | 2014-09-02 11:38:49 -0500 | [diff] [blame] | 735 | rv = -ENOMEM; |
Christoph Hellwig | 24d2f90 | 2014-04-15 14:14:00 -0600 | [diff] [blame] | 736 | goto out_cleanup_tags; |
Robert Elliott | dc501dc | 2014-09-02 11:38:49 -0500 | [diff] [blame] | 737 | } |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 738 | } else if (queue_mode == NULL_Q_BIO) { |
| 739 | nullb->q = blk_alloc_queue_node(GFP_KERNEL, home_node); |
Robert Elliott | dc501dc | 2014-09-02 11:38:49 -0500 | [diff] [blame] | 740 | if (!nullb->q) { |
| 741 | rv = -ENOMEM; |
Christoph Hellwig | 24d2f90 | 2014-04-15 14:14:00 -0600 | [diff] [blame] | 742 | goto out_cleanup_queues; |
Robert Elliott | dc501dc | 2014-09-02 11:38:49 -0500 | [diff] [blame] | 743 | } |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 744 | blk_queue_make_request(nullb->q, null_queue_bio); |
Jan Kara | 31f9690 | 2014-10-22 15:34:21 +0200 | [diff] [blame] | 745 | rv = init_driver_queues(nullb); |
| 746 | if (rv) |
| 747 | goto out_cleanup_blk_queue; |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 748 | } else { |
| 749 | nullb->q = blk_init_queue_node(null_request_fn, &nullb->lock, home_node); |
Robert Elliott | dc501dc | 2014-09-02 11:38:49 -0500 | [diff] [blame] | 750 | if (!nullb->q) { |
| 751 | rv = -ENOMEM; |
Christoph Hellwig | 24d2f90 | 2014-04-15 14:14:00 -0600 | [diff] [blame] | 752 | goto out_cleanup_queues; |
Robert Elliott | dc501dc | 2014-09-02 11:38:49 -0500 | [diff] [blame] | 753 | } |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 754 | blk_queue_prep_rq(nullb->q, null_rq_prep_fn); |
Christoph Hellwig | 24d2f90 | 2014-04-15 14:14:00 -0600 | [diff] [blame] | 755 | blk_queue_softirq_done(nullb->q, null_softirq_done_fn); |
Jan Kara | 31f9690 | 2014-10-22 15:34:21 +0200 | [diff] [blame] | 756 | rv = init_driver_queues(nullb); |
| 757 | if (rv) |
| 758 | goto out_cleanup_blk_queue; |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 759 | } |
| 760 | |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 761 | nullb->q->queuedata = nullb; |
| 762 | queue_flag_set_unlocked(QUEUE_FLAG_NONROT, nullb->q); |
Mike Snitzer | b277da0 | 2014-10-04 10:55:32 -0600 | [diff] [blame] | 763 | queue_flag_clear_unlocked(QUEUE_FLAG_ADD_RANDOM, nullb->q); |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 764 | |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 765 | mutex_lock(&lock); |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 766 | nullb->index = nullb_indexes++; |
| 767 | mutex_unlock(&lock); |
| 768 | |
| 769 | blk_queue_logical_block_size(nullb->q, bs); |
| 770 | blk_queue_physical_block_size(nullb->q, bs); |
| 771 | |
Matias Bjørling | b2b7e00 | 2015-11-12 20:25:10 +0100 | [diff] [blame] | 772 | sprintf(nullb->disk_name, "nullb%d", nullb->index); |
| 773 | |
Matias Bjørling | 9ae2d0a | 2016-09-16 14:25:05 +0200 | [diff] [blame] | 774 | if (use_lightnvm) |
| 775 | rv = null_nvm_register(nullb); |
| 776 | else |
| 777 | rv = null_gendisk_register(nullb); |
Matias Bjørling | b2b7e00 | 2015-11-12 20:25:10 +0100 | [diff] [blame] | 778 | |
Matias Bjørling | 9ae2d0a | 2016-09-16 14:25:05 +0200 | [diff] [blame] | 779 | if (rv) |
| 780 | goto out_cleanup_blk_queue; |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 781 | |
Matias Bjørling | a514379 | 2016-02-11 14:49:13 +0100 | [diff] [blame] | 782 | mutex_lock(&lock); |
| 783 | list_add_tail(&nullb->list, &nullb_list); |
| 784 | mutex_unlock(&lock); |
Wenwei Tao | 3681c85d | 2016-03-05 00:27:04 +0800 | [diff] [blame] | 785 | |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 786 | return 0; |
Christoph Hellwig | 24d2f90 | 2014-04-15 14:14:00 -0600 | [diff] [blame] | 787 | out_cleanup_blk_queue: |
| 788 | blk_cleanup_queue(nullb->q); |
| 789 | out_cleanup_tags: |
| 790 | if (queue_mode == NULL_Q_MQ) |
| 791 | blk_mq_free_tag_set(&nullb->tag_set); |
| 792 | out_cleanup_queues: |
| 793 | cleanup_queues(nullb); |
| 794 | out_free_nullb: |
| 795 | kfree(nullb); |
| 796 | out: |
Robert Elliott | dc501dc | 2014-09-02 11:38:49 -0500 | [diff] [blame] | 797 | return rv; |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 798 | } |
| 799 | |
| 800 | static int __init null_init(void) |
| 801 | { |
Minfei Huang | af096e2 | 2015-12-08 13:47:34 -0700 | [diff] [blame] | 802 | int ret = 0; |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 803 | unsigned int i; |
Minfei Huang | af096e2 | 2015-12-08 13:47:34 -0700 | [diff] [blame] | 804 | struct nullb *nullb; |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 805 | |
Raghavendra K T | 9967d8a | 2014-01-21 16:59:59 +0530 | [diff] [blame] | 806 | if (bs > PAGE_SIZE) { |
| 807 | pr_warn("null_blk: invalid block size\n"); |
| 808 | pr_warn("null_blk: defaults block size to %lu\n", PAGE_SIZE); |
| 809 | bs = PAGE_SIZE; |
| 810 | } |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 811 | |
Matias Bjørling | 6bb9535 | 2015-11-19 12:50:08 +0100 | [diff] [blame] | 812 | if (use_lightnvm && bs != 4096) { |
| 813 | pr_warn("null_blk: LightNVM only supports 4k block size\n"); |
| 814 | pr_warn("null_blk: defaults block size to 4k\n"); |
| 815 | bs = 4096; |
| 816 | } |
| 817 | |
Matias Bjørling | b2b7e00 | 2015-11-12 20:25:10 +0100 | [diff] [blame] | 818 | if (use_lightnvm && queue_mode != NULL_Q_MQ) { |
| 819 | pr_warn("null_blk: LightNVM only supported for blk-mq\n"); |
| 820 | pr_warn("null_blk: defaults queue mode to blk-mq\n"); |
| 821 | queue_mode = NULL_Q_MQ; |
| 822 | } |
| 823 | |
Matias Bjorling | d15ee6b | 2013-12-18 13:41:44 +0100 | [diff] [blame] | 824 | if (queue_mode == NULL_Q_MQ && use_per_node_hctx) { |
Matias Bjørling | fc1bc35 | 2013-12-21 00:11:01 +0100 | [diff] [blame] | 825 | if (submit_queues < nr_online_nodes) { |
Matias Bjorling | d15ee6b | 2013-12-18 13:41:44 +0100 | [diff] [blame] | 826 | pr_warn("null_blk: submit_queues param is set to %u.", |
| 827 | nr_online_nodes); |
Matias Bjørling | fc1bc35 | 2013-12-21 00:11:01 +0100 | [diff] [blame] | 828 | submit_queues = nr_online_nodes; |
| 829 | } |
Matias Bjorling | d15ee6b | 2013-12-18 13:41:44 +0100 | [diff] [blame] | 830 | } else if (submit_queues > nr_cpu_ids) |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 831 | submit_queues = nr_cpu_ids; |
| 832 | else if (!submit_queues) |
| 833 | submit_queues = 1; |
| 834 | |
| 835 | mutex_init(&lock); |
| 836 | |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 837 | null_major = register_blkdev(0, "nullb"); |
| 838 | if (null_major < 0) |
| 839 | return null_major; |
| 840 | |
Matias Bjørling | 6bb9535 | 2015-11-19 12:50:08 +0100 | [diff] [blame] | 841 | if (use_lightnvm) { |
| 842 | ppa_cache = kmem_cache_create("ppa_cache", 64 * sizeof(u64), |
| 843 | 0, 0, NULL); |
| 844 | if (!ppa_cache) { |
| 845 | pr_err("null_blk: unable to create ppa cache\n"); |
Minfei Huang | af096e2 | 2015-12-08 13:47:34 -0700 | [diff] [blame] | 846 | ret = -ENOMEM; |
Matias Bjørling | 6bb9535 | 2015-11-19 12:50:08 +0100 | [diff] [blame] | 847 | goto err_ppa; |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 848 | } |
| 849 | } |
| 850 | |
Minfei Huang | af096e2 | 2015-12-08 13:47:34 -0700 | [diff] [blame] | 851 | for (i = 0; i < nr_devices; i++) { |
| 852 | ret = null_add_dev(); |
| 853 | if (ret) |
| 854 | goto err_dev; |
| 855 | } |
| 856 | |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 857 | pr_info("null: module loaded\n"); |
| 858 | return 0; |
Minfei Huang | af096e2 | 2015-12-08 13:47:34 -0700 | [diff] [blame] | 859 | |
| 860 | err_dev: |
| 861 | while (!list_empty(&nullb_list)) { |
| 862 | nullb = list_entry(nullb_list.next, struct nullb, list); |
| 863 | null_del_dev(nullb); |
| 864 | } |
Matias Bjørling | 6bb9535 | 2015-11-19 12:50:08 +0100 | [diff] [blame] | 865 | kmem_cache_destroy(ppa_cache); |
Minfei Huang | af096e2 | 2015-12-08 13:47:34 -0700 | [diff] [blame] | 866 | err_ppa: |
| 867 | unregister_blkdev(null_major, "nullb"); |
| 868 | return ret; |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 869 | } |
| 870 | |
| 871 | static void __exit null_exit(void) |
| 872 | { |
| 873 | struct nullb *nullb; |
| 874 | |
| 875 | unregister_blkdev(null_major, "nullb"); |
| 876 | |
| 877 | mutex_lock(&lock); |
| 878 | while (!list_empty(&nullb_list)) { |
| 879 | nullb = list_entry(nullb_list.next, struct nullb, list); |
| 880 | null_del_dev(nullb); |
| 881 | } |
| 882 | mutex_unlock(&lock); |
Matias Bjørling | 6bb9535 | 2015-11-19 12:50:08 +0100 | [diff] [blame] | 883 | |
| 884 | kmem_cache_destroy(ppa_cache); |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 885 | } |
| 886 | |
| 887 | module_init(null_init); |
| 888 | module_exit(null_exit); |
| 889 | |
| 890 | MODULE_AUTHOR("Jens Axboe <jaxboe@fusionio.com>"); |
| 891 | MODULE_LICENSE("GPL"); |