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> |
| 11 | |
| 12 | struct nullb_cmd { |
| 13 | struct list_head list; |
| 14 | struct llist_node ll_list; |
| 15 | struct call_single_data csd; |
| 16 | struct request *rq; |
| 17 | struct bio *bio; |
| 18 | unsigned int tag; |
| 19 | struct nullb_queue *nq; |
| 20 | }; |
| 21 | |
| 22 | struct nullb_queue { |
| 23 | unsigned long *tag_map; |
| 24 | wait_queue_head_t wait; |
| 25 | unsigned int queue_depth; |
| 26 | |
| 27 | struct nullb_cmd *cmds; |
| 28 | }; |
| 29 | |
| 30 | struct nullb { |
| 31 | struct list_head list; |
| 32 | unsigned int index; |
| 33 | struct request_queue *q; |
| 34 | struct gendisk *disk; |
Christoph Hellwig | 24d2f90 | 2014-04-15 14:14:00 -0600 | [diff] [blame] | 35 | struct blk_mq_tag_set tag_set; |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 36 | struct hrtimer timer; |
| 37 | unsigned int queue_depth; |
| 38 | spinlock_t lock; |
| 39 | |
| 40 | struct nullb_queue *queues; |
| 41 | unsigned int nr_queues; |
| 42 | }; |
| 43 | |
| 44 | static LIST_HEAD(nullb_list); |
| 45 | static struct mutex lock; |
| 46 | static int null_major; |
| 47 | static int nullb_indexes; |
| 48 | |
| 49 | struct completion_queue { |
| 50 | struct llist_head list; |
| 51 | struct hrtimer timer; |
| 52 | }; |
| 53 | |
| 54 | /* |
| 55 | * These are per-cpu for now, they will need to be configured by the |
| 56 | * complete_queues parameter and appropriately mapped. |
| 57 | */ |
| 58 | static DEFINE_PER_CPU(struct completion_queue, completion_queues); |
| 59 | |
| 60 | enum { |
| 61 | NULL_IRQ_NONE = 0, |
| 62 | NULL_IRQ_SOFTIRQ = 1, |
| 63 | NULL_IRQ_TIMER = 2, |
Christoph Hellwig | ce2c350 | 2014-02-10 03:24:40 -0800 | [diff] [blame] | 64 | }; |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 65 | |
Christoph Hellwig | ce2c350 | 2014-02-10 03:24:40 -0800 | [diff] [blame] | 66 | enum { |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 67 | NULL_Q_BIO = 0, |
| 68 | NULL_Q_RQ = 1, |
| 69 | NULL_Q_MQ = 2, |
| 70 | }; |
| 71 | |
Matias Bjorling | 2d263a78 | 2013-12-18 13:41:43 +0100 | [diff] [blame] | 72 | static int submit_queues; |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 73 | module_param(submit_queues, int, S_IRUGO); |
| 74 | MODULE_PARM_DESC(submit_queues, "Number of submission queues"); |
| 75 | |
| 76 | static int home_node = NUMA_NO_NODE; |
| 77 | module_param(home_node, int, S_IRUGO); |
| 78 | MODULE_PARM_DESC(home_node, "Home node for the device"); |
| 79 | |
| 80 | static int queue_mode = NULL_Q_MQ; |
| 81 | module_param(queue_mode, int, S_IRUGO); |
Mike Snitzer | 54ae81c | 2014-06-11 17:13:50 -0400 | [diff] [blame] | 82 | 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] | 83 | |
| 84 | static int gb = 250; |
| 85 | module_param(gb, int, S_IRUGO); |
| 86 | MODULE_PARM_DESC(gb, "Size in GB"); |
| 87 | |
| 88 | static int bs = 512; |
| 89 | module_param(bs, int, S_IRUGO); |
| 90 | MODULE_PARM_DESC(bs, "Block size (in bytes)"); |
| 91 | |
| 92 | static int nr_devices = 2; |
| 93 | module_param(nr_devices, int, S_IRUGO); |
| 94 | MODULE_PARM_DESC(nr_devices, "Number of devices to register"); |
| 95 | |
| 96 | static int irqmode = NULL_IRQ_SOFTIRQ; |
| 97 | module_param(irqmode, int, S_IRUGO); |
| 98 | MODULE_PARM_DESC(irqmode, "IRQ completion handler. 0-none, 1-softirq, 2-timer"); |
| 99 | |
| 100 | static int completion_nsec = 10000; |
| 101 | module_param(completion_nsec, int, S_IRUGO); |
| 102 | MODULE_PARM_DESC(completion_nsec, "Time in ns to complete a request in hardware. Default: 10,000ns"); |
| 103 | |
| 104 | static int hw_queue_depth = 64; |
| 105 | module_param(hw_queue_depth, int, S_IRUGO); |
| 106 | MODULE_PARM_DESC(hw_queue_depth, "Queue depth for each hardware queue. Default: 64"); |
| 107 | |
Matias Bjørling | 2000524 | 2013-12-21 00:11:00 +0100 | [diff] [blame] | 108 | static bool use_per_node_hctx = false; |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 109 | module_param(use_per_node_hctx, bool, S_IRUGO); |
Matias Bjørling | 2000524 | 2013-12-21 00:11:00 +0100 | [diff] [blame] | 110 | 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] | 111 | |
| 112 | static void put_tag(struct nullb_queue *nq, unsigned int tag) |
| 113 | { |
| 114 | clear_bit_unlock(tag, nq->tag_map); |
| 115 | |
| 116 | if (waitqueue_active(&nq->wait)) |
| 117 | wake_up(&nq->wait); |
| 118 | } |
| 119 | |
| 120 | static unsigned int get_tag(struct nullb_queue *nq) |
| 121 | { |
| 122 | unsigned int tag; |
| 123 | |
| 124 | do { |
| 125 | tag = find_first_zero_bit(nq->tag_map, nq->queue_depth); |
| 126 | if (tag >= nq->queue_depth) |
| 127 | return -1U; |
| 128 | } while (test_and_set_bit_lock(tag, nq->tag_map)); |
| 129 | |
| 130 | return tag; |
| 131 | } |
| 132 | |
| 133 | static void free_cmd(struct nullb_cmd *cmd) |
| 134 | { |
| 135 | put_tag(cmd->nq, cmd->tag); |
| 136 | } |
| 137 | |
| 138 | static struct nullb_cmd *__alloc_cmd(struct nullb_queue *nq) |
| 139 | { |
| 140 | struct nullb_cmd *cmd; |
| 141 | unsigned int tag; |
| 142 | |
| 143 | tag = get_tag(nq); |
| 144 | if (tag != -1U) { |
| 145 | cmd = &nq->cmds[tag]; |
| 146 | cmd->tag = tag; |
| 147 | cmd->nq = nq; |
| 148 | return cmd; |
| 149 | } |
| 150 | |
| 151 | return NULL; |
| 152 | } |
| 153 | |
| 154 | static struct nullb_cmd *alloc_cmd(struct nullb_queue *nq, int can_wait) |
| 155 | { |
| 156 | struct nullb_cmd *cmd; |
| 157 | DEFINE_WAIT(wait); |
| 158 | |
| 159 | cmd = __alloc_cmd(nq); |
| 160 | if (cmd || !can_wait) |
| 161 | return cmd; |
| 162 | |
| 163 | do { |
| 164 | prepare_to_wait(&nq->wait, &wait, TASK_UNINTERRUPTIBLE); |
| 165 | cmd = __alloc_cmd(nq); |
| 166 | if (cmd) |
| 167 | break; |
| 168 | |
| 169 | io_schedule(); |
| 170 | } while (1); |
| 171 | |
| 172 | finish_wait(&nq->wait, &wait); |
| 173 | return cmd; |
| 174 | } |
| 175 | |
| 176 | static void end_cmd(struct nullb_cmd *cmd) |
| 177 | { |
Christoph Hellwig | ce2c350 | 2014-02-10 03:24:40 -0800 | [diff] [blame] | 178 | switch (queue_mode) { |
| 179 | case NULL_Q_MQ: |
| 180 | blk_mq_end_io(cmd->rq, 0); |
| 181 | return; |
| 182 | case NULL_Q_RQ: |
| 183 | INIT_LIST_HEAD(&cmd->rq->queuelist); |
| 184 | blk_end_request_all(cmd->rq, 0); |
| 185 | break; |
| 186 | case NULL_Q_BIO: |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 187 | bio_endio(cmd->bio, 0); |
Christoph Hellwig | ce2c350 | 2014-02-10 03:24:40 -0800 | [diff] [blame] | 188 | break; |
| 189 | } |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 190 | |
Christoph Hellwig | ce2c350 | 2014-02-10 03:24:40 -0800 | [diff] [blame] | 191 | free_cmd(cmd); |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 192 | } |
| 193 | |
| 194 | static enum hrtimer_restart null_cmd_timer_expired(struct hrtimer *timer) |
| 195 | { |
| 196 | struct completion_queue *cq; |
| 197 | struct llist_node *entry; |
| 198 | struct nullb_cmd *cmd; |
| 199 | |
| 200 | cq = &per_cpu(completion_queues, smp_processor_id()); |
| 201 | |
| 202 | while ((entry = llist_del_all(&cq->list)) != NULL) { |
Shlomo Pongratz | d7790b9 | 2014-02-06 18:33:17 +0200 | [diff] [blame] | 203 | entry = llist_reverse_order(entry); |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 204 | do { |
| 205 | cmd = container_of(entry, struct nullb_cmd, ll_list); |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 206 | entry = entry->next; |
Ming Lei | fc27691 | 2014-05-01 15:12:36 +0800 | [diff] [blame] | 207 | end_cmd(cmd); |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 208 | } while (entry); |
| 209 | } |
| 210 | |
| 211 | return HRTIMER_NORESTART; |
| 212 | } |
| 213 | |
| 214 | static void null_cmd_end_timer(struct nullb_cmd *cmd) |
| 215 | { |
| 216 | struct completion_queue *cq = &per_cpu(completion_queues, get_cpu()); |
| 217 | |
| 218 | cmd->ll_list.next = NULL; |
| 219 | if (llist_add(&cmd->ll_list, &cq->list)) { |
| 220 | ktime_t kt = ktime_set(0, completion_nsec); |
| 221 | |
| 222 | hrtimer_start(&cq->timer, kt, HRTIMER_MODE_REL); |
| 223 | } |
| 224 | |
| 225 | put_cpu(); |
| 226 | } |
| 227 | |
| 228 | static void null_softirq_done_fn(struct request *rq) |
| 229 | { |
Jens Axboe | d891fa7 | 2014-06-16 11:40:25 -0600 | [diff] [blame] | 230 | if (queue_mode == NULL_Q_MQ) |
| 231 | end_cmd(blk_mq_rq_to_pdu(rq)); |
| 232 | else |
| 233 | end_cmd(rq->special); |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 234 | } |
| 235 | |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 236 | static inline void null_handle_cmd(struct nullb_cmd *cmd) |
| 237 | { |
| 238 | /* Complete IO by inline, softirq or timer */ |
| 239 | switch (irqmode) { |
Christoph Hellwig | ce2c350 | 2014-02-10 03:24:40 -0800 | [diff] [blame] | 240 | case NULL_IRQ_SOFTIRQ: |
| 241 | switch (queue_mode) { |
| 242 | case NULL_Q_MQ: |
| 243 | blk_mq_complete_request(cmd->rq); |
| 244 | break; |
| 245 | case NULL_Q_RQ: |
| 246 | blk_complete_request(cmd->rq); |
| 247 | break; |
| 248 | case NULL_Q_BIO: |
| 249 | /* |
| 250 | * XXX: no proper submitting cpu information available. |
| 251 | */ |
| 252 | end_cmd(cmd); |
| 253 | break; |
| 254 | } |
| 255 | break; |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 256 | case NULL_IRQ_NONE: |
| 257 | end_cmd(cmd); |
| 258 | break; |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 259 | case NULL_IRQ_TIMER: |
| 260 | null_cmd_end_timer(cmd); |
| 261 | break; |
| 262 | } |
| 263 | } |
| 264 | |
| 265 | static struct nullb_queue *nullb_to_queue(struct nullb *nullb) |
| 266 | { |
| 267 | int index = 0; |
| 268 | |
| 269 | if (nullb->nr_queues != 1) |
| 270 | index = raw_smp_processor_id() / ((nr_cpu_ids + nullb->nr_queues - 1) / nullb->nr_queues); |
| 271 | |
| 272 | return &nullb->queues[index]; |
| 273 | } |
| 274 | |
| 275 | static void null_queue_bio(struct request_queue *q, struct bio *bio) |
| 276 | { |
| 277 | struct nullb *nullb = q->queuedata; |
| 278 | struct nullb_queue *nq = nullb_to_queue(nullb); |
| 279 | struct nullb_cmd *cmd; |
| 280 | |
| 281 | cmd = alloc_cmd(nq, 1); |
| 282 | cmd->bio = bio; |
| 283 | |
| 284 | null_handle_cmd(cmd); |
| 285 | } |
| 286 | |
| 287 | static int null_rq_prep_fn(struct request_queue *q, struct request *req) |
| 288 | { |
| 289 | struct nullb *nullb = q->queuedata; |
| 290 | struct nullb_queue *nq = nullb_to_queue(nullb); |
| 291 | struct nullb_cmd *cmd; |
| 292 | |
| 293 | cmd = alloc_cmd(nq, 0); |
| 294 | if (cmd) { |
| 295 | cmd->rq = req; |
| 296 | req->special = cmd; |
| 297 | return BLKPREP_OK; |
| 298 | } |
| 299 | |
| 300 | return BLKPREP_DEFER; |
| 301 | } |
| 302 | |
| 303 | static void null_request_fn(struct request_queue *q) |
| 304 | { |
| 305 | struct request *rq; |
| 306 | |
| 307 | while ((rq = blk_fetch_request(q)) != NULL) { |
| 308 | struct nullb_cmd *cmd = rq->special; |
| 309 | |
| 310 | spin_unlock_irq(q->queue_lock); |
| 311 | null_handle_cmd(cmd); |
| 312 | spin_lock_irq(q->queue_lock); |
| 313 | } |
| 314 | } |
| 315 | |
| 316 | static int null_queue_rq(struct blk_mq_hw_ctx *hctx, struct request *rq) |
| 317 | { |
Christoph Hellwig | 9d74e25 | 2014-04-14 10:30:07 +0200 | [diff] [blame] | 318 | struct nullb_cmd *cmd = blk_mq_rq_to_pdu(rq); |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 319 | |
| 320 | cmd->rq = rq; |
| 321 | cmd->nq = hctx->driver_data; |
| 322 | |
| 323 | null_handle_cmd(cmd); |
| 324 | return BLK_MQ_RQ_QUEUE_OK; |
| 325 | } |
| 326 | |
Matias Bjorling | 2d263a78 | 2013-12-18 13:41:43 +0100 | [diff] [blame] | 327 | static void null_init_queue(struct nullb *nullb, struct nullb_queue *nq) |
| 328 | { |
| 329 | BUG_ON(!nullb); |
| 330 | BUG_ON(!nq); |
| 331 | |
| 332 | init_waitqueue_head(&nq->wait); |
| 333 | nq->queue_depth = nullb->queue_depth; |
| 334 | } |
| 335 | |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 336 | static int null_init_hctx(struct blk_mq_hw_ctx *hctx, void *data, |
| 337 | unsigned int index) |
| 338 | { |
| 339 | struct nullb *nullb = data; |
| 340 | struct nullb_queue *nq = &nullb->queues[index]; |
| 341 | |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 342 | hctx->driver_data = nq; |
Matias Bjorling | 2d263a78 | 2013-12-18 13:41:43 +0100 | [diff] [blame] | 343 | null_init_queue(nullb, nq); |
| 344 | nullb->nr_queues++; |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 345 | |
| 346 | return 0; |
| 347 | } |
| 348 | |
| 349 | static struct blk_mq_ops null_mq_ops = { |
| 350 | .queue_rq = null_queue_rq, |
| 351 | .map_queue = blk_mq_map_queue, |
| 352 | .init_hctx = null_init_hctx, |
Christoph Hellwig | ce2c350 | 2014-02-10 03:24:40 -0800 | [diff] [blame] | 353 | .complete = null_softirq_done_fn, |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 354 | }; |
| 355 | |
| 356 | static void null_del_dev(struct nullb *nullb) |
| 357 | { |
| 358 | list_del_init(&nullb->list); |
| 359 | |
| 360 | del_gendisk(nullb->disk); |
Ming Lei | 518d00b | 2013-12-26 21:31:37 +0800 | [diff] [blame] | 361 | blk_cleanup_queue(nullb->q); |
Christoph Hellwig | 24d2f90 | 2014-04-15 14:14:00 -0600 | [diff] [blame] | 362 | if (queue_mode == NULL_Q_MQ) |
| 363 | blk_mq_free_tag_set(&nullb->tag_set); |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 364 | put_disk(nullb->disk); |
| 365 | kfree(nullb); |
| 366 | } |
| 367 | |
| 368 | static int null_open(struct block_device *bdev, fmode_t mode) |
| 369 | { |
| 370 | return 0; |
| 371 | } |
| 372 | |
| 373 | static void null_release(struct gendisk *disk, fmode_t mode) |
| 374 | { |
| 375 | } |
| 376 | |
| 377 | static const struct block_device_operations null_fops = { |
| 378 | .owner = THIS_MODULE, |
| 379 | .open = null_open, |
| 380 | .release = null_release, |
| 381 | }; |
| 382 | |
| 383 | static int setup_commands(struct nullb_queue *nq) |
| 384 | { |
| 385 | struct nullb_cmd *cmd; |
| 386 | int i, tag_size; |
| 387 | |
| 388 | nq->cmds = kzalloc(nq->queue_depth * sizeof(*cmd), GFP_KERNEL); |
| 389 | if (!nq->cmds) |
Matias Bjorling | 2d263a78 | 2013-12-18 13:41:43 +0100 | [diff] [blame] | 390 | return -ENOMEM; |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 391 | |
| 392 | tag_size = ALIGN(nq->queue_depth, BITS_PER_LONG) / BITS_PER_LONG; |
| 393 | nq->tag_map = kzalloc(tag_size * sizeof(unsigned long), GFP_KERNEL); |
| 394 | if (!nq->tag_map) { |
| 395 | kfree(nq->cmds); |
Matias Bjorling | 2d263a78 | 2013-12-18 13:41:43 +0100 | [diff] [blame] | 396 | return -ENOMEM; |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 397 | } |
| 398 | |
| 399 | for (i = 0; i < nq->queue_depth; i++) { |
| 400 | cmd = &nq->cmds[i]; |
| 401 | INIT_LIST_HEAD(&cmd->list); |
| 402 | cmd->ll_list.next = NULL; |
| 403 | cmd->tag = -1U; |
| 404 | } |
| 405 | |
| 406 | return 0; |
| 407 | } |
| 408 | |
| 409 | static void cleanup_queue(struct nullb_queue *nq) |
| 410 | { |
| 411 | kfree(nq->tag_map); |
| 412 | kfree(nq->cmds); |
| 413 | } |
| 414 | |
| 415 | static void cleanup_queues(struct nullb *nullb) |
| 416 | { |
| 417 | int i; |
| 418 | |
| 419 | for (i = 0; i < nullb->nr_queues; i++) |
| 420 | cleanup_queue(&nullb->queues[i]); |
| 421 | |
| 422 | kfree(nullb->queues); |
| 423 | } |
| 424 | |
| 425 | static int setup_queues(struct nullb *nullb) |
| 426 | { |
Matias Bjorling | 2d263a78 | 2013-12-18 13:41:43 +0100 | [diff] [blame] | 427 | nullb->queues = kzalloc(submit_queues * sizeof(struct nullb_queue), |
| 428 | GFP_KERNEL); |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 429 | if (!nullb->queues) |
Matias Bjorling | 2d263a78 | 2013-12-18 13:41:43 +0100 | [diff] [blame] | 430 | return -ENOMEM; |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 431 | |
| 432 | nullb->nr_queues = 0; |
| 433 | nullb->queue_depth = hw_queue_depth; |
| 434 | |
Matias Bjorling | 2d263a78 | 2013-12-18 13:41:43 +0100 | [diff] [blame] | 435 | return 0; |
| 436 | } |
| 437 | |
| 438 | static int init_driver_queues(struct nullb *nullb) |
| 439 | { |
| 440 | struct nullb_queue *nq; |
| 441 | int i, ret = 0; |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 442 | |
| 443 | for (i = 0; i < submit_queues; i++) { |
| 444 | nq = &nullb->queues[i]; |
Matias Bjorling | 2d263a78 | 2013-12-18 13:41:43 +0100 | [diff] [blame] | 445 | |
| 446 | null_init_queue(nullb, nq); |
| 447 | |
| 448 | ret = setup_commands(nq); |
| 449 | if (ret) |
| 450 | goto err_queue; |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 451 | nullb->nr_queues++; |
| 452 | } |
| 453 | |
Matias Bjorling | 2d263a78 | 2013-12-18 13:41:43 +0100 | [diff] [blame] | 454 | return 0; |
| 455 | err_queue: |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 456 | cleanup_queues(nullb); |
Matias Bjorling | 2d263a78 | 2013-12-18 13:41:43 +0100 | [diff] [blame] | 457 | return ret; |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 458 | } |
| 459 | |
| 460 | static int null_add_dev(void) |
| 461 | { |
| 462 | struct gendisk *disk; |
| 463 | struct nullb *nullb; |
| 464 | sector_t size; |
| 465 | |
| 466 | nullb = kzalloc_node(sizeof(*nullb), GFP_KERNEL, home_node); |
| 467 | if (!nullb) |
Christoph Hellwig | 24d2f90 | 2014-04-15 14:14:00 -0600 | [diff] [blame] | 468 | goto out; |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 469 | |
| 470 | spin_lock_init(&nullb->lock); |
| 471 | |
Matias Bjorling | 57053d8 | 2013-12-10 16:50:38 +0100 | [diff] [blame] | 472 | if (queue_mode == NULL_Q_MQ && use_per_node_hctx) |
| 473 | submit_queues = nr_online_nodes; |
| 474 | |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 475 | if (setup_queues(nullb)) |
Christoph Hellwig | 24d2f90 | 2014-04-15 14:14:00 -0600 | [diff] [blame] | 476 | goto out_free_nullb; |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 477 | |
| 478 | if (queue_mode == NULL_Q_MQ) { |
Christoph Hellwig | cdef54d | 2014-05-28 18:11:06 +0200 | [diff] [blame] | 479 | nullb->tag_set.ops = &null_mq_ops; |
Christoph Hellwig | 24d2f90 | 2014-04-15 14:14:00 -0600 | [diff] [blame] | 480 | nullb->tag_set.nr_hw_queues = submit_queues; |
| 481 | nullb->tag_set.queue_depth = hw_queue_depth; |
| 482 | nullb->tag_set.numa_node = home_node; |
| 483 | nullb->tag_set.cmd_size = sizeof(struct nullb_cmd); |
| 484 | nullb->tag_set.flags = BLK_MQ_F_SHOULD_MERGE; |
| 485 | nullb->tag_set.driver_data = nullb; |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 486 | |
Christoph Hellwig | 24d2f90 | 2014-04-15 14:14:00 -0600 | [diff] [blame] | 487 | if (blk_mq_alloc_tag_set(&nullb->tag_set)) |
| 488 | goto out_cleanup_queues; |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 489 | |
Christoph Hellwig | 24d2f90 | 2014-04-15 14:14:00 -0600 | [diff] [blame] | 490 | nullb->q = blk_mq_init_queue(&nullb->tag_set); |
| 491 | if (!nullb->q) |
| 492 | goto out_cleanup_tags; |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 493 | } else if (queue_mode == NULL_Q_BIO) { |
| 494 | nullb->q = blk_alloc_queue_node(GFP_KERNEL, home_node); |
Christoph Hellwig | 24d2f90 | 2014-04-15 14:14:00 -0600 | [diff] [blame] | 495 | if (!nullb->q) |
| 496 | goto out_cleanup_queues; |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 497 | blk_queue_make_request(nullb->q, null_queue_bio); |
Matias Bjorling | 2d263a78 | 2013-12-18 13:41:43 +0100 | [diff] [blame] | 498 | init_driver_queues(nullb); |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 499 | } else { |
| 500 | nullb->q = blk_init_queue_node(null_request_fn, &nullb->lock, home_node); |
Christoph Hellwig | 24d2f90 | 2014-04-15 14:14:00 -0600 | [diff] [blame] | 501 | if (!nullb->q) |
| 502 | goto out_cleanup_queues; |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 503 | blk_queue_prep_rq(nullb->q, null_rq_prep_fn); |
Christoph Hellwig | 24d2f90 | 2014-04-15 14:14:00 -0600 | [diff] [blame] | 504 | blk_queue_softirq_done(nullb->q, null_softirq_done_fn); |
Matias Bjorling | 2d263a78 | 2013-12-18 13:41:43 +0100 | [diff] [blame] | 505 | init_driver_queues(nullb); |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 506 | } |
| 507 | |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 508 | nullb->q->queuedata = nullb; |
| 509 | queue_flag_set_unlocked(QUEUE_FLAG_NONROT, nullb->q); |
| 510 | |
| 511 | disk = nullb->disk = alloc_disk_node(1, home_node); |
Christoph Hellwig | 24d2f90 | 2014-04-15 14:14:00 -0600 | [diff] [blame] | 512 | if (!disk) |
| 513 | goto out_cleanup_blk_queue; |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 514 | |
| 515 | mutex_lock(&lock); |
| 516 | list_add_tail(&nullb->list, &nullb_list); |
| 517 | nullb->index = nullb_indexes++; |
| 518 | mutex_unlock(&lock); |
| 519 | |
| 520 | blk_queue_logical_block_size(nullb->q, bs); |
| 521 | blk_queue_physical_block_size(nullb->q, bs); |
| 522 | |
| 523 | size = gb * 1024 * 1024 * 1024ULL; |
| 524 | sector_div(size, bs); |
| 525 | set_capacity(disk, size); |
| 526 | |
| 527 | disk->flags |= GENHD_FL_EXT_DEVT; |
| 528 | disk->major = null_major; |
| 529 | disk->first_minor = nullb->index; |
| 530 | disk->fops = &null_fops; |
| 531 | disk->private_data = nullb; |
| 532 | disk->queue = nullb->q; |
| 533 | sprintf(disk->disk_name, "nullb%d", nullb->index); |
| 534 | add_disk(disk); |
| 535 | return 0; |
Christoph Hellwig | 24d2f90 | 2014-04-15 14:14:00 -0600 | [diff] [blame] | 536 | |
| 537 | out_cleanup_blk_queue: |
| 538 | blk_cleanup_queue(nullb->q); |
| 539 | out_cleanup_tags: |
| 540 | if (queue_mode == NULL_Q_MQ) |
| 541 | blk_mq_free_tag_set(&nullb->tag_set); |
| 542 | out_cleanup_queues: |
| 543 | cleanup_queues(nullb); |
| 544 | out_free_nullb: |
| 545 | kfree(nullb); |
| 546 | out: |
| 547 | return -ENOMEM; |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 548 | } |
| 549 | |
| 550 | static int __init null_init(void) |
| 551 | { |
| 552 | unsigned int i; |
| 553 | |
Raghavendra K T | 9967d8a | 2014-01-21 16:59:59 +0530 | [diff] [blame] | 554 | if (bs > PAGE_SIZE) { |
| 555 | pr_warn("null_blk: invalid block size\n"); |
| 556 | pr_warn("null_blk: defaults block size to %lu\n", PAGE_SIZE); |
| 557 | bs = PAGE_SIZE; |
| 558 | } |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 559 | |
Matias Bjorling | d15ee6b | 2013-12-18 13:41:44 +0100 | [diff] [blame] | 560 | if (queue_mode == NULL_Q_MQ && use_per_node_hctx) { |
Matias Bjørling | fc1bc35 | 2013-12-21 00:11:01 +0100 | [diff] [blame] | 561 | if (submit_queues < nr_online_nodes) { |
Matias Bjorling | d15ee6b | 2013-12-18 13:41:44 +0100 | [diff] [blame] | 562 | pr_warn("null_blk: submit_queues param is set to %u.", |
| 563 | nr_online_nodes); |
Matias Bjørling | fc1bc35 | 2013-12-21 00:11:01 +0100 | [diff] [blame] | 564 | submit_queues = nr_online_nodes; |
| 565 | } |
Matias Bjorling | d15ee6b | 2013-12-18 13:41:44 +0100 | [diff] [blame] | 566 | } else if (submit_queues > nr_cpu_ids) |
Jens Axboe | f2298c0 | 2013-10-25 11:52:25 +0100 | [diff] [blame] | 567 | submit_queues = nr_cpu_ids; |
| 568 | else if (!submit_queues) |
| 569 | submit_queues = 1; |
| 570 | |
| 571 | mutex_init(&lock); |
| 572 | |
| 573 | /* Initialize a separate list for each CPU for issuing softirqs */ |
| 574 | for_each_possible_cpu(i) { |
| 575 | struct completion_queue *cq = &per_cpu(completion_queues, i); |
| 576 | |
| 577 | init_llist_head(&cq->list); |
| 578 | |
| 579 | if (irqmode != NULL_IRQ_TIMER) |
| 580 | continue; |
| 581 | |
| 582 | hrtimer_init(&cq->timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL); |
| 583 | cq->timer.function = null_cmd_timer_expired; |
| 584 | } |
| 585 | |
| 586 | null_major = register_blkdev(0, "nullb"); |
| 587 | if (null_major < 0) |
| 588 | return null_major; |
| 589 | |
| 590 | for (i = 0; i < nr_devices; i++) { |
| 591 | if (null_add_dev()) { |
| 592 | unregister_blkdev(null_major, "nullb"); |
| 593 | return -EINVAL; |
| 594 | } |
| 595 | } |
| 596 | |
| 597 | pr_info("null: module loaded\n"); |
| 598 | return 0; |
| 599 | } |
| 600 | |
| 601 | static void __exit null_exit(void) |
| 602 | { |
| 603 | struct nullb *nullb; |
| 604 | |
| 605 | unregister_blkdev(null_major, "nullb"); |
| 606 | |
| 607 | mutex_lock(&lock); |
| 608 | while (!list_empty(&nullb_list)) { |
| 609 | nullb = list_entry(nullb_list.next, struct nullb, list); |
| 610 | null_del_dev(nullb); |
| 611 | } |
| 612 | mutex_unlock(&lock); |
| 613 | } |
| 614 | |
| 615 | module_init(null_init); |
| 616 | module_exit(null_exit); |
| 617 | |
| 618 | MODULE_AUTHOR("Jens Axboe <jaxboe@fusionio.com>"); |
| 619 | MODULE_LICENSE("GPL"); |