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