null_blk.c 19.8 KB
Newer Older
1
#include <linux/module.h>
2

3 4 5 6 7 8 9 10
#include <linux/moduleparam.h>
#include <linux/sched.h>
#include <linux/fs.h>
#include <linux/blkdev.h>
#include <linux/init.h>
#include <linux/slab.h>
#include <linux/blk-mq.h>
#include <linux/hrtimer.h>
11
#include <linux/lightnvm.h>
12 13 14 15 16 17 18 19 20

struct nullb_cmd {
	struct list_head list;
	struct llist_node ll_list;
	struct call_single_data csd;
	struct request *rq;
	struct bio *bio;
	unsigned int tag;
	struct nullb_queue *nq;
21
	struct hrtimer timer;
22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
};

struct nullb_queue {
	unsigned long *tag_map;
	wait_queue_head_t wait;
	unsigned int queue_depth;

	struct nullb_cmd *cmds;
};

struct nullb {
	struct list_head list;
	unsigned int index;
	struct request_queue *q;
	struct gendisk *disk;
37
	struct nvm_dev *ndev;
38 39
	struct blk_mq_tag_set *tag_set;
	struct blk_mq_tag_set __tag_set;
40 41 42 43 44 45
	struct hrtimer timer;
	unsigned int queue_depth;
	spinlock_t lock;

	struct nullb_queue *queues;
	unsigned int nr_queues;
46
	char disk_name[DISK_NAME_LEN];
47 48 49 50 51 52
};

static LIST_HEAD(nullb_list);
static struct mutex lock;
static int null_major;
static int nullb_indexes;
M
Matias Bjørling 已提交
53
static struct kmem_cache *ppa_cache;
54
static struct blk_mq_tag_set tag_set;
55 56 57 58 59

enum {
	NULL_IRQ_NONE		= 0,
	NULL_IRQ_SOFTIRQ	= 1,
	NULL_IRQ_TIMER		= 2,
60
};
61

62
enum {
63 64 65 66 67
	NULL_Q_BIO		= 0,
	NULL_Q_RQ		= 1,
	NULL_Q_MQ		= 2,
};

68
static int submit_queues;
69 70 71 72 73 74 75 76
module_param(submit_queues, int, S_IRUGO);
MODULE_PARM_DESC(submit_queues, "Number of submission queues");

static int home_node = NUMA_NO_NODE;
module_param(home_node, int, S_IRUGO);
MODULE_PARM_DESC(home_node, "Home node for the device");

static int queue_mode = NULL_Q_MQ;
77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97

static int null_param_store_val(const char *str, int *val, int min, int max)
{
	int ret, new_val;

	ret = kstrtoint(str, 10, &new_val);
	if (ret)
		return -EINVAL;

	if (new_val < min || new_val > max)
		return -EINVAL;

	*val = new_val;
	return 0;
}

static int null_set_queue_mode(const char *str, const struct kernel_param *kp)
{
	return null_param_store_val(str, &queue_mode, NULL_Q_BIO, NULL_Q_MQ);
}

98
static const struct kernel_param_ops null_queue_mode_param_ops = {
99 100 101 102 103
	.set	= null_set_queue_mode,
	.get	= param_get_int,
};

device_param_cb(queue_mode, &null_queue_mode_param_ops, &queue_mode, S_IRUGO);
104
MODULE_PARM_DESC(queue_mode, "Block interface to use (0=bio,1=rq,2=multiqueue)");
105 106 107 108 109 110 111 112 113

static int gb = 250;
module_param(gb, int, S_IRUGO);
MODULE_PARM_DESC(gb, "Size in GB");

static int bs = 512;
module_param(bs, int, S_IRUGO);
MODULE_PARM_DESC(bs, "Block size (in bytes)");

114
static int nr_devices = 1;
115 116 117
module_param(nr_devices, int, S_IRUGO);
MODULE_PARM_DESC(nr_devices, "Number of devices to register");

118 119 120 121
static bool use_lightnvm;
module_param(use_lightnvm, bool, S_IRUGO);
MODULE_PARM_DESC(use_lightnvm, "Register as a LightNVM device");

J
Jens Axboe 已提交
122 123 124 125
static bool blocking;
module_param(blocking, bool, S_IRUGO);
MODULE_PARM_DESC(blocking, "Register as a blocking blk-mq driver device");

126 127 128 129
static bool shared_tags;
module_param(shared_tags, bool, S_IRUGO);
MODULE_PARM_DESC(shared_tags, "Share tag set between devices for blk-mq");

130
static int irqmode = NULL_IRQ_SOFTIRQ;
131 132 133 134 135 136 137

static int null_set_irqmode(const char *str, const struct kernel_param *kp)
{
	return null_param_store_val(str, &irqmode, NULL_IRQ_NONE,
					NULL_IRQ_TIMER);
}

138
static const struct kernel_param_ops null_irqmode_param_ops = {
139 140 141 142 143
	.set	= null_set_irqmode,
	.get	= param_get_int,
};

device_param_cb(irqmode, &null_irqmode_param_ops, &irqmode, S_IRUGO);
144 145
MODULE_PARM_DESC(irqmode, "IRQ completion handler. 0-none, 1-softirq, 2-timer");

146 147
static unsigned long completion_nsec = 10000;
module_param(completion_nsec, ulong, S_IRUGO);
148 149 150 151 152 153
MODULE_PARM_DESC(completion_nsec, "Time in ns to complete a request in hardware. Default: 10,000ns");

static int hw_queue_depth = 64;
module_param(hw_queue_depth, int, S_IRUGO);
MODULE_PARM_DESC(hw_queue_depth, "Queue depth for each hardware queue. Default: 64");

154
static bool use_per_node_hctx = false;
155
module_param(use_per_node_hctx, bool, S_IRUGO);
156
MODULE_PARM_DESC(use_per_node_hctx, "Use per-node allocation for hardware context queues. Default: false");
157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183

static void put_tag(struct nullb_queue *nq, unsigned int tag)
{
	clear_bit_unlock(tag, nq->tag_map);

	if (waitqueue_active(&nq->wait))
		wake_up(&nq->wait);
}

static unsigned int get_tag(struct nullb_queue *nq)
{
	unsigned int tag;

	do {
		tag = find_first_zero_bit(nq->tag_map, nq->queue_depth);
		if (tag >= nq->queue_depth)
			return -1U;
	} while (test_and_set_bit_lock(tag, nq->tag_map));

	return tag;
}

static void free_cmd(struct nullb_cmd *cmd)
{
	put_tag(cmd->nq, cmd->tag);
}

184 185
static enum hrtimer_restart null_cmd_timer_expired(struct hrtimer *timer);

186 187 188 189 190 191 192 193 194 195
static struct nullb_cmd *__alloc_cmd(struct nullb_queue *nq)
{
	struct nullb_cmd *cmd;
	unsigned int tag;

	tag = get_tag(nq);
	if (tag != -1U) {
		cmd = &nq->cmds[tag];
		cmd->tag = tag;
		cmd->nq = nq;
196 197 198 199 200
		if (irqmode == NULL_IRQ_TIMER) {
			hrtimer_init(&cmd->timer, CLOCK_MONOTONIC,
				     HRTIMER_MODE_REL);
			cmd->timer.function = null_cmd_timer_expired;
		}
201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230
		return cmd;
	}

	return NULL;
}

static struct nullb_cmd *alloc_cmd(struct nullb_queue *nq, int can_wait)
{
	struct nullb_cmd *cmd;
	DEFINE_WAIT(wait);

	cmd = __alloc_cmd(nq);
	if (cmd || !can_wait)
		return cmd;

	do {
		prepare_to_wait(&nq->wait, &wait, TASK_UNINTERRUPTIBLE);
		cmd = __alloc_cmd(nq);
		if (cmd)
			break;

		io_schedule();
	} while (1);

	finish_wait(&nq->wait, &wait);
	return cmd;
}

static void end_cmd(struct nullb_cmd *cmd)
{
231 232
	struct request_queue *q = NULL;

M
Mike Krinkin 已提交
233 234 235
	if (cmd->rq)
		q = cmd->rq->q;

236 237
	switch (queue_mode)  {
	case NULL_Q_MQ:
238
		blk_mq_end_request(cmd->rq, BLK_STS_OK);
239 240 241
		return;
	case NULL_Q_RQ:
		INIT_LIST_HEAD(&cmd->rq->queuelist);
242
		blk_end_request_all(cmd->rq, BLK_STS_OK);
243 244
		break;
	case NULL_Q_BIO:
245
		bio_endio(cmd->bio);
246
		break;
247
	}
248

249 250
	free_cmd(cmd);

251
	/* Restart queue if needed, as we are freeing a tag */
252
	if (queue_mode == NULL_Q_RQ && blk_queue_stopped(q)) {
253 254 255
		unsigned long flags;

		spin_lock_irqsave(q->queue_lock, flags);
256
		blk_start_queue_async(q);
257
		spin_unlock_irqrestore(q->queue_lock, flags);
258
	}
259 260 261 262 263
}

static enum hrtimer_restart null_cmd_timer_expired(struct hrtimer *timer)
{
	end_cmd(container_of(timer, struct nullb_cmd, timer));
264 265 266 267 268 269

	return HRTIMER_NORESTART;
}

static void null_cmd_end_timer(struct nullb_cmd *cmd)
{
T
Thomas Gleixner 已提交
270
	ktime_t kt = completion_nsec;
271

272
	hrtimer_start(&cmd->timer, kt, HRTIMER_MODE_REL);
273 274 275 276
}

static void null_softirq_done_fn(struct request *rq)
{
277 278 279 280
	if (queue_mode == NULL_Q_MQ)
		end_cmd(blk_mq_rq_to_pdu(rq));
	else
		end_cmd(rq->special);
281 282 283 284 285 286 287
}

static inline void null_handle_cmd(struct nullb_cmd *cmd)
{
	/* Complete IO by inline, softirq or timer */
	switch (irqmode) {
	case NULL_IRQ_SOFTIRQ:
288 289
		switch (queue_mode)  {
		case NULL_Q_MQ:
290
			blk_mq_complete_request(cmd->rq);
291 292 293 294 295 296 297 298 299 300 301 302 303
			break;
		case NULL_Q_RQ:
			blk_complete_request(cmd->rq);
			break;
		case NULL_Q_BIO:
			/*
			 * XXX: no proper submitting cpu information available.
			 */
			end_cmd(cmd);
			break;
		}
		break;
	case NULL_IRQ_NONE:
304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321
		end_cmd(cmd);
		break;
	case NULL_IRQ_TIMER:
		null_cmd_end_timer(cmd);
		break;
	}
}

static struct nullb_queue *nullb_to_queue(struct nullb *nullb)
{
	int index = 0;

	if (nullb->nr_queues != 1)
		index = raw_smp_processor_id() / ((nr_cpu_ids + nullb->nr_queues - 1) / nullb->nr_queues);

	return &nullb->queues[index];
}

322
static blk_qc_t null_queue_bio(struct request_queue *q, struct bio *bio)
323 324 325 326 327 328 329 330 331
{
	struct nullb *nullb = q->queuedata;
	struct nullb_queue *nq = nullb_to_queue(nullb);
	struct nullb_cmd *cmd;

	cmd = alloc_cmd(nq, 1);
	cmd->bio = bio;

	null_handle_cmd(cmd);
332
	return BLK_QC_T_NONE;
333 334 335 336 337 338 339 340 341 342 343 344 345 346
}

static int null_rq_prep_fn(struct request_queue *q, struct request *req)
{
	struct nullb *nullb = q->queuedata;
	struct nullb_queue *nq = nullb_to_queue(nullb);
	struct nullb_cmd *cmd;

	cmd = alloc_cmd(nq, 0);
	if (cmd) {
		cmd->rq = req;
		req->special = cmd;
		return BLKPREP_OK;
	}
347
	blk_stop_queue(q);
348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364

	return BLKPREP_DEFER;
}

static void null_request_fn(struct request_queue *q)
{
	struct request *rq;

	while ((rq = blk_fetch_request(q)) != NULL) {
		struct nullb_cmd *cmd = rq->special;

		spin_unlock_irq(q->queue_lock);
		null_handle_cmd(cmd);
		spin_lock_irq(q->queue_lock);
	}
}

365
static blk_status_t null_queue_rq(struct blk_mq_hw_ctx *hctx,
366
			 const struct blk_mq_queue_data *bd)
367
{
368
	struct nullb_cmd *cmd = blk_mq_rq_to_pdu(bd->rq);
369

J
Jens Axboe 已提交
370 371
	might_sleep_if(hctx->flags & BLK_MQ_F_BLOCKING);

372 373 374 375
	if (irqmode == NULL_IRQ_TIMER) {
		hrtimer_init(&cmd->timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
		cmd->timer.function = null_cmd_timer_expired;
	}
376
	cmd->rq = bd->rq;
377 378
	cmd->nq = hctx->driver_data;

379
	blk_mq_start_request(bd->rq);
380

381
	null_handle_cmd(cmd);
382
	return BLK_STS_OK;
383 384
}

385
static const struct blk_mq_ops null_mq_ops = {
386
	.queue_rq       = null_queue_rq,
387
	.complete	= null_softirq_done_fn,
388 389
};

390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405
static void cleanup_queue(struct nullb_queue *nq)
{
	kfree(nq->tag_map);
	kfree(nq->cmds);
}

static void cleanup_queues(struct nullb *nullb)
{
	int i;

	for (i = 0; i < nullb->nr_queues; i++)
		cleanup_queue(&nullb->queues[i]);

	kfree(nullb->queues);
}

406 407
#ifdef CONFIG_NVM

408
static void null_lnvm_end_io(struct request *rq, blk_status_t status)
409 410 411
{
	struct nvm_rq *rqd = rq->end_io_data;

412 413
	/* XXX: lighnvm core seems to expect NVM_RSP_* values here.. */
	rqd->error = status ? -EIO : 0;
414
	nvm_end_io(rqd);
415 416 417 418

	blk_put_request(rq);
}

419
static int null_lnvm_submit_io(struct nvm_dev *dev, struct nvm_rq *rqd)
420
{
421
	struct request_queue *q = dev->q;
422 423 424
	struct request *rq;
	struct bio *bio = rqd->bio;

425 426
	rq = blk_mq_alloc_request(q,
		op_is_write(bio_op(bio)) ? REQ_OP_DRV_OUT : REQ_OP_DRV_IN, 0);
427 428 429
	if (IS_ERR(rq))
		return -ENOMEM;

430
	blk_init_request_from_bio(rq, bio);
431 432 433 434 435 436 437 438

	rq->end_io_data = rqd;

	blk_execute_rq_nowait(q, NULL, rq, 0, null_lnvm_end_io);

	return 0;
}

439
static int null_lnvm_id(struct nvm_dev *dev, struct nvm_id *id)
440 441
{
	sector_t size = gb * 1024 * 1024 * 1024ULL;
442
	sector_t blksize;
443 444 445 446
	struct nvm_id_group *grp;

	id->ver_id = 0x1;
	id->vmnt = 0;
447
	id->cap = 0x2;
448
	id->dom = 0x1;
449 450 451 452 453 454 455 456 457 458 459 460 461

	id->ppaf.blk_offset = 0;
	id->ppaf.blk_len = 16;
	id->ppaf.pg_offset = 16;
	id->ppaf.pg_len = 16;
	id->ppaf.sect_offset = 32;
	id->ppaf.sect_len = 8;
	id->ppaf.pln_offset = 40;
	id->ppaf.pln_len = 8;
	id->ppaf.lun_offset = 48;
	id->ppaf.lun_len = 8;
	id->ppaf.ch_offset = 56;
	id->ppaf.ch_len = 8;
462

463 464
	sector_div(size, bs); /* convert size to pages */
	size >>= 8; /* concert size to pgs pr blk */
465
	grp = &id->grp;
466
	grp->mtype = 0;
467
	grp->fmtype = 0;
468 469
	grp->num_ch = 1;
	grp->num_pg = 256;
470
	blksize = size;
471
	size >>= 16;
472
	grp->num_lun = size + 1;
473
	sector_div(blksize, grp->num_lun);
474 475 476
	grp->num_blk = blksize;
	grp->num_pln = 1;

477 478 479 480 481 482 483 484 485 486 487 488 489 490
	grp->fpg_sz = bs;
	grp->csecs = bs;
	grp->trdt = 25000;
	grp->trdm = 25000;
	grp->tprt = 500000;
	grp->tprm = 500000;
	grp->tbet = 1500000;
	grp->tbem = 1500000;
	grp->mpos = 0x010101; /* single plane rwe */
	grp->cpar = hw_queue_depth;

	return 0;
}

491
static void *null_lnvm_create_dma_pool(struct nvm_dev *dev, char *name)
492 493 494
{
	mempool_t *virtmem_pool;

M
Matias Bjørling 已提交
495
	virtmem_pool = mempool_create_slab_pool(64, ppa_cache);
496 497 498 499 500 501 502 503 504 505 506 507 508
	if (!virtmem_pool) {
		pr_err("null_blk: Unable to create virtual memory pool\n");
		return NULL;
	}

	return virtmem_pool;
}

static void null_lnvm_destroy_dma_pool(void *pool)
{
	mempool_destroy(pool);
}

509
static void *null_lnvm_dev_dma_alloc(struct nvm_dev *dev, void *pool,
510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532
				gfp_t mem_flags, dma_addr_t *dma_handler)
{
	return mempool_alloc(pool, mem_flags);
}

static void null_lnvm_dev_dma_free(void *pool, void *entry,
							dma_addr_t dma_handler)
{
	mempool_free(entry, pool);
}

static struct nvm_dev_ops null_lnvm_dev_ops = {
	.identity		= null_lnvm_id,
	.submit_io		= null_lnvm_submit_io,

	.create_dma_pool	= null_lnvm_create_dma_pool,
	.destroy_dma_pool	= null_lnvm_destroy_dma_pool,
	.dev_dma_alloc		= null_lnvm_dev_dma_alloc,
	.dev_dma_free		= null_lnvm_dev_dma_free,

	/* Simulate nvme protocol restriction */
	.max_phys_sect		= 64,
};
533 534 535

static int null_nvm_register(struct nullb *nullb)
{
536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553
	struct nvm_dev *dev;
	int rv;

	dev = nvm_alloc_dev(0);
	if (!dev)
		return -ENOMEM;

	dev->q = nullb->q;
	memcpy(dev->name, nullb->disk_name, DISK_NAME_LEN);
	dev->ops = &null_lnvm_dev_ops;

	rv = nvm_register(dev);
	if (rv) {
		kfree(dev);
		return rv;
	}
	nullb->ndev = dev;
	return 0;
554 555 556 557
}

static void null_nvm_unregister(struct nullb *nullb)
{
558
	nvm_unregister(nullb->ndev);
559
}
560
#else
561 562
static int null_nvm_register(struct nullb *nullb)
{
563
	pr_err("null_blk: CONFIG_NVM needs to be enabled for LightNVM\n");
564 565 566
	return -EINVAL;
}
static void null_nvm_unregister(struct nullb *nullb) {}
567 568
#endif /* CONFIG_NVM */

569 570 571 572 573 574 575 576 577
static void null_del_dev(struct nullb *nullb)
{
	list_del_init(&nullb->list);

	if (use_lightnvm)
		null_nvm_unregister(nullb);
	else
		del_gendisk(nullb->disk);
	blk_cleanup_queue(nullb->q);
578 579
	if (queue_mode == NULL_Q_MQ && nullb->tag_set == &nullb->__tag_set)
		blk_mq_free_tag_set(nullb->tag_set);
580 581 582 583 584 585
	if (!use_lightnvm)
		put_disk(nullb->disk);
	cleanup_queues(nullb);
	kfree(nullb);
}

586 587 588 589 590 591 592 593 594 595 596 597 598 599 600
static int null_open(struct block_device *bdev, fmode_t mode)
{
	return 0;
}

static void null_release(struct gendisk *disk, fmode_t mode)
{
}

static const struct block_device_operations null_fops = {
	.owner =	THIS_MODULE,
	.open =		null_open,
	.release =	null_release,
};

601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626
static void null_init_queue(struct nullb *nullb, struct nullb_queue *nq)
{
	BUG_ON(!nullb);
	BUG_ON(!nq);

	init_waitqueue_head(&nq->wait);
	nq->queue_depth = nullb->queue_depth;
}

static void null_init_queues(struct nullb *nullb)
{
	struct request_queue *q = nullb->q;
	struct blk_mq_hw_ctx *hctx;
	struct nullb_queue *nq;
	int i;

	queue_for_each_hw_ctx(q, hctx, i) {
		if (!hctx->nr_ctx || !hctx->tags)
			continue;
		nq = &nullb->queues[i];
		hctx->driver_data = nq;
		null_init_queue(nullb, nq);
		nullb->nr_queues++;
	}
}

627 628 629 630 631 632 633
static int setup_commands(struct nullb_queue *nq)
{
	struct nullb_cmd *cmd;
	int i, tag_size;

	nq->cmds = kzalloc(nq->queue_depth * sizeof(*cmd), GFP_KERNEL);
	if (!nq->cmds)
634
		return -ENOMEM;
635 636 637 638 639

	tag_size = ALIGN(nq->queue_depth, BITS_PER_LONG) / BITS_PER_LONG;
	nq->tag_map = kzalloc(tag_size * sizeof(unsigned long), GFP_KERNEL);
	if (!nq->tag_map) {
		kfree(nq->cmds);
640
		return -ENOMEM;
641 642 643 644 645 646 647 648 649 650 651 652 653 654
	}

	for (i = 0; i < nq->queue_depth; i++) {
		cmd = &nq->cmds[i];
		INIT_LIST_HEAD(&cmd->list);
		cmd->ll_list.next = NULL;
		cmd->tag = -1U;
	}

	return 0;
}

static int setup_queues(struct nullb *nullb)
{
655 656
	nullb->queues = kzalloc(submit_queues * sizeof(struct nullb_queue),
								GFP_KERNEL);
657
	if (!nullb->queues)
658
		return -ENOMEM;
659 660 661 662

	nullb->nr_queues = 0;
	nullb->queue_depth = hw_queue_depth;

663 664 665 666 667 668 669
	return 0;
}

static int init_driver_queues(struct nullb *nullb)
{
	struct nullb_queue *nq;
	int i, ret = 0;
670 671 672

	for (i = 0; i < submit_queues; i++) {
		nq = &nullb->queues[i];
673 674 675 676 677

		null_init_queue(nullb, nq);

		ret = setup_commands(nq);
		if (ret)
678
			return ret;
679 680
		nullb->nr_queues++;
	}
681
	return 0;
682 683
}

684
static int null_gendisk_register(struct nullb *nullb)
685 686 687
{
	struct gendisk *disk;
	sector_t size;
688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706

	disk = nullb->disk = alloc_disk_node(1, home_node);
	if (!disk)
		return -ENOMEM;
	size = gb * 1024 * 1024 * 1024ULL;
	set_capacity(disk, size >> 9);

	disk->flags |= GENHD_FL_EXT_DEVT | GENHD_FL_SUPPRESS_PARTITION_INFO;
	disk->major		= null_major;
	disk->first_minor	= nullb->index;
	disk->fops		= &null_fops;
	disk->private_data	= nullb;
	disk->queue		= nullb->q;
	strncpy(disk->disk_name, nullb->disk_name, DISK_NAME_LEN);

	add_disk(disk);
	return 0;
}

707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722
static int null_init_tag_set(struct blk_mq_tag_set *set)
{
	set->ops = &null_mq_ops;
	set->nr_hw_queues = submit_queues;
	set->queue_depth = hw_queue_depth;
	set->numa_node = home_node;
	set->cmd_size	= sizeof(struct nullb_cmd);
	set->flags = BLK_MQ_F_SHOULD_MERGE;
	set->driver_data = NULL;

	if (blocking)
		set->flags |= BLK_MQ_F_BLOCKING;

	return blk_mq_alloc_tag_set(set);
}

723 724 725
static int null_add_dev(void)
{
	struct nullb *nullb;
726
	int rv;
727 728

	nullb = kzalloc_node(sizeof(*nullb), GFP_KERNEL, home_node);
729 730
	if (!nullb) {
		rv = -ENOMEM;
731
		goto out;
732
	}
733 734 735

	spin_lock_init(&nullb->lock);

736 737 738
	if (queue_mode == NULL_Q_MQ && use_per_node_hctx)
		submit_queues = nr_online_nodes;

739 740
	rv = setup_queues(nullb);
	if (rv)
741
		goto out_free_nullb;
742 743

	if (queue_mode == NULL_Q_MQ) {
744 745 746 747 748 749 750 751
		if (shared_tags) {
			nullb->tag_set = &tag_set;
			rv = 0;
		} else {
			nullb->tag_set = &nullb->__tag_set;
			rv = null_init_tag_set(nullb->tag_set);
		}

752
		if (rv)
753 754
			goto out_cleanup_queues;

755
		nullb->q = blk_mq_init_queue(nullb->tag_set);
756
		if (IS_ERR(nullb->q)) {
757
			rv = -ENOMEM;
758
			goto out_cleanup_tags;
759
		}
760
		null_init_queues(nullb);
761 762
	} else if (queue_mode == NULL_Q_BIO) {
		nullb->q = blk_alloc_queue_node(GFP_KERNEL, home_node);
763 764
		if (!nullb->q) {
			rv = -ENOMEM;
765
			goto out_cleanup_queues;
766
		}
767
		blk_queue_make_request(nullb->q, null_queue_bio);
768 769 770
		rv = init_driver_queues(nullb);
		if (rv)
			goto out_cleanup_blk_queue;
771 772
	} else {
		nullb->q = blk_init_queue_node(null_request_fn, &nullb->lock, home_node);
773 774
		if (!nullb->q) {
			rv = -ENOMEM;
775
			goto out_cleanup_queues;
776
		}
777
		blk_queue_prep_rq(nullb->q, null_rq_prep_fn);
778
		blk_queue_softirq_done(nullb->q, null_softirq_done_fn);
779 780 781
		rv = init_driver_queues(nullb);
		if (rv)
			goto out_cleanup_blk_queue;
782 783 784 785
	}

	nullb->q->queuedata = nullb;
	queue_flag_set_unlocked(QUEUE_FLAG_NONROT, nullb->q);
786
	queue_flag_clear_unlocked(QUEUE_FLAG_ADD_RANDOM, nullb->q);
787 788 789 790 791 792 793 794

	mutex_lock(&lock);
	nullb->index = nullb_indexes++;
	mutex_unlock(&lock);

	blk_queue_logical_block_size(nullb->q, bs);
	blk_queue_physical_block_size(nullb->q, bs);

795 796
	sprintf(nullb->disk_name, "nullb%d", nullb->index);

797 798 799 800
	if (use_lightnvm)
		rv = null_nvm_register(nullb);
	else
		rv = null_gendisk_register(nullb);
801

802 803
	if (rv)
		goto out_cleanup_blk_queue;
804 805 806 807

	mutex_lock(&lock);
	list_add_tail(&nullb->list, &nullb_list);
	mutex_unlock(&lock);
808

809
	return 0;
810 811 812
out_cleanup_blk_queue:
	blk_cleanup_queue(nullb->q);
out_cleanup_tags:
813 814
	if (queue_mode == NULL_Q_MQ && nullb->tag_set == &nullb->__tag_set)
		blk_mq_free_tag_set(nullb->tag_set);
815 816 817 818 819
out_cleanup_queues:
	cleanup_queues(nullb);
out_free_nullb:
	kfree(nullb);
out:
820
	return rv;
821 822 823 824
}

static int __init null_init(void)
{
825
	int ret = 0;
826
	unsigned int i;
827
	struct nullb *nullb;
828

829 830 831 832 833
	if (bs > PAGE_SIZE) {
		pr_warn("null_blk: invalid block size\n");
		pr_warn("null_blk: defaults block size to %lu\n", PAGE_SIZE);
		bs = PAGE_SIZE;
	}
834

M
Matias Bjørling 已提交
835 836 837 838 839 840
	if (use_lightnvm && bs != 4096) {
		pr_warn("null_blk: LightNVM only supports 4k block size\n");
		pr_warn("null_blk: defaults block size to 4k\n");
		bs = 4096;
	}

841 842 843 844 845 846
	if (use_lightnvm && queue_mode != NULL_Q_MQ) {
		pr_warn("null_blk: LightNVM only supported for blk-mq\n");
		pr_warn("null_blk: defaults queue mode to blk-mq\n");
		queue_mode = NULL_Q_MQ;
	}

847
	if (queue_mode == NULL_Q_MQ && use_per_node_hctx) {
848
		if (submit_queues < nr_online_nodes) {
849 850
			pr_warn("null_blk: submit_queues param is set to %u.",
							nr_online_nodes);
851 852
			submit_queues = nr_online_nodes;
		}
853
	} else if (submit_queues > nr_cpu_ids)
854 855 856 857
		submit_queues = nr_cpu_ids;
	else if (!submit_queues)
		submit_queues = 1;

858 859 860 861 862 863
	if (queue_mode == NULL_Q_MQ && shared_tags) {
		ret = null_init_tag_set(&tag_set);
		if (ret)
			return ret;
	}

864 865 866
	mutex_init(&lock);

	null_major = register_blkdev(0, "nullb");
867 868 869 870
	if (null_major < 0) {
		ret = null_major;
		goto err_tagset;
	}
871

M
Matias Bjørling 已提交
872 873 874 875 876
	if (use_lightnvm) {
		ppa_cache = kmem_cache_create("ppa_cache", 64 * sizeof(u64),
								0, 0, NULL);
		if (!ppa_cache) {
			pr_err("null_blk: unable to create ppa cache\n");
877 878
			ret = -ENOMEM;
			goto err_ppa;
M
Matias Bjørling 已提交
879 880 881
		}
	}

882
	for (i = 0; i < nr_devices; i++) {
883 884 885
		ret = null_add_dev();
		if (ret)
			goto err_dev;
886 887 888 889
	}

	pr_info("null: module loaded\n");
	return 0;
890 891 892 893 894 895

err_dev:
	while (!list_empty(&nullb_list)) {
		nullb = list_entry(nullb_list.next, struct nullb, list);
		null_del_dev(nullb);
	}
M
Matias Bjørling 已提交
896
	kmem_cache_destroy(ppa_cache);
897 898
err_ppa:
	unregister_blkdev(null_major, "nullb");
899 900 901
err_tagset:
	if (queue_mode == NULL_Q_MQ && shared_tags)
		blk_mq_free_tag_set(&tag_set);
902
	return ret;
903 904 905 906 907 908 909 910 911 912 913 914 915 916
}

static void __exit null_exit(void)
{
	struct nullb *nullb;

	unregister_blkdev(null_major, "nullb");

	mutex_lock(&lock);
	while (!list_empty(&nullb_list)) {
		nullb = list_entry(nullb_list.next, struct nullb, list);
		null_del_dev(nullb);
	}
	mutex_unlock(&lock);
M
Matias Bjørling 已提交
917

918 919 920
	if (queue_mode == NULL_Q_MQ && shared_tags)
		blk_mq_free_tag_set(&tag_set);

M
Matias Bjørling 已提交
921
	kmem_cache_destroy(ppa_cache);
922 923 924 925 926 927 928
}

module_init(null_init);
module_exit(null_exit);

MODULE_AUTHOR("Jens Axboe <jaxboe@fusionio.com>");
MODULE_LICENSE("GPL");