brd.c 15.5 KB
Newer Older
N
Nick Piggin 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
/*
 * Ram backed block device driver.
 *
 * Copyright (C) 2007 Nick Piggin
 * Copyright (C) 2007 Novell Inc.
 *
 * Parts derived from drivers/block/rd.c, and drivers/block/loop.c, copyright
 * of their respective owners.
 */

#include <linux/init.h>
#include <linux/module.h>
#include <linux/moduleparam.h>
#include <linux/major.h>
#include <linux/blkdev.h>
#include <linux/bio.h>
#include <linux/highmem.h>
18
#include <linux/mutex.h>
N
Nick Piggin 已提交
19
#include <linux/radix-tree.h>
A
Al Viro 已提交
20
#include <linux/fs.h>
21
#include <linux/slab.h>
N
Nick Piggin 已提交
22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53

#include <asm/uaccess.h>

#define SECTOR_SHIFT		9
#define PAGE_SECTORS_SHIFT	(PAGE_SHIFT - SECTOR_SHIFT)
#define PAGE_SECTORS		(1 << PAGE_SECTORS_SHIFT)

/*
 * Each block ramdisk device has a radix_tree brd_pages of pages that stores
 * the pages containing the block device's contents. A brd page's ->index is
 * its offset in PAGE_SIZE units. This is similar to, but in no way connected
 * with, the kernel's pagecache or buffer cache (which sit above our block
 * device).
 */
struct brd_device {
	int		brd_number;

	struct request_queue	*brd_queue;
	struct gendisk		*brd_disk;
	struct list_head	brd_list;

	/*
	 * Backing store of pages and lock to protect it. This is the contents
	 * of the block device.
	 */
	spinlock_t		brd_lock;
	struct radix_tree_root	brd_pages;
};

/*
 * Look up and return a brd's page for a given sector.
 */
54
static DEFINE_MUTEX(brd_mutex);
N
Nick Piggin 已提交
55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89
static struct page *brd_lookup_page(struct brd_device *brd, sector_t sector)
{
	pgoff_t idx;
	struct page *page;

	/*
	 * The page lifetime is protected by the fact that we have opened the
	 * device node -- brd pages will never be deleted under us, so we
	 * don't need any further locking or refcounting.
	 *
	 * This is strictly true for the radix-tree nodes as well (ie. we
	 * don't actually need the rcu_read_lock()), however that is not a
	 * documented feature of the radix-tree API so it is better to be
	 * safe here (we don't have total exclusion from radix tree updates
	 * here, only deletes).
	 */
	rcu_read_lock();
	idx = sector >> PAGE_SECTORS_SHIFT; /* sector to page index */
	page = radix_tree_lookup(&brd->brd_pages, idx);
	rcu_read_unlock();

	BUG_ON(page && page->index != idx);

	return page;
}

/*
 * Look up and return a brd's page for a given sector.
 * If one does not exist, allocate an empty page, and insert that. Then
 * return it.
 */
static struct page *brd_insert_page(struct brd_device *brd, sector_t sector)
{
	pgoff_t idx;
	struct page *page;
N
Nick Piggin 已提交
90
	gfp_t gfp_flags;
N
Nick Piggin 已提交
91 92 93 94 95 96 97 98

	page = brd_lookup_page(brd, sector);
	if (page)
		return page;

	/*
	 * Must use NOIO because we don't want to recurse back into the
	 * block or filesystem layers from page reclaim.
N
Nick Piggin 已提交
99 100 101 102 103
	 *
	 * Cannot support XIP and highmem, because our ->direct_access
	 * routine for XIP must return memory that is always addressable.
	 * If XIP was reworked to use pfns and kmap throughout, this
	 * restriction might be able to be lifted.
N
Nick Piggin 已提交
104
	 */
N
Nick Piggin 已提交
105 106 107 108
	gfp_flags = GFP_NOIO | __GFP_ZERO;
#ifndef CONFIG_BLK_DEV_XIP
	gfp_flags |= __GFP_HIGHMEM;
#endif
P
Petr Tesarik 已提交
109
	page = alloc_page(gfp_flags);
N
Nick Piggin 已提交
110 111 112 113 114 115 116 117 118 119
	if (!page)
		return NULL;

	if (radix_tree_preload(GFP_NOIO)) {
		__free_page(page);
		return NULL;
	}

	spin_lock(&brd->brd_lock);
	idx = sector >> PAGE_SECTORS_SHIFT;
120
	page->index = idx;
N
Nick Piggin 已提交
121 122 123 124 125
	if (radix_tree_insert(&brd->brd_pages, idx, page)) {
		__free_page(page);
		page = radix_tree_lookup(&brd->brd_pages, idx);
		BUG_ON(!page);
		BUG_ON(page->index != idx);
126
	}
N
Nick Piggin 已提交
127 128 129 130 131 132 133
	spin_unlock(&brd->brd_lock);

	radix_tree_preload_end();

	return page;
}

N
Nick Piggin 已提交
134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155
static void brd_free_page(struct brd_device *brd, sector_t sector)
{
	struct page *page;
	pgoff_t idx;

	spin_lock(&brd->brd_lock);
	idx = sector >> PAGE_SECTORS_SHIFT;
	page = radix_tree_delete(&brd->brd_pages, idx);
	spin_unlock(&brd->brd_lock);
	if (page)
		__free_page(page);
}

static void brd_zero_page(struct brd_device *brd, sector_t sector)
{
	struct page *page;

	page = brd_lookup_page(brd, sector);
	if (page)
		clear_highpage(page);
}

N
Nick Piggin 已提交
156 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 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202
/*
 * Free all backing store pages and radix tree. This must only be called when
 * there are no other users of the device.
 */
#define FREE_BATCH 16
static void brd_free_pages(struct brd_device *brd)
{
	unsigned long pos = 0;
	struct page *pages[FREE_BATCH];
	int nr_pages;

	do {
		int i;

		nr_pages = radix_tree_gang_lookup(&brd->brd_pages,
				(void **)pages, pos, FREE_BATCH);

		for (i = 0; i < nr_pages; i++) {
			void *ret;

			BUG_ON(pages[i]->index < pos);
			pos = pages[i]->index;
			ret = radix_tree_delete(&brd->brd_pages, pos);
			BUG_ON(!ret || ret != pages[i]);
			__free_page(pages[i]);
		}

		pos++;

		/*
		 * This assumes radix_tree_gang_lookup always returns as
		 * many pages as possible. If the radix-tree code changes,
		 * so will this have to.
		 */
	} while (nr_pages == FREE_BATCH);
}

/*
 * copy_to_brd_setup must be called before copy_to_brd. It may sleep.
 */
static int copy_to_brd_setup(struct brd_device *brd, sector_t sector, size_t n)
{
	unsigned int offset = (sector & (PAGE_SECTORS-1)) << SECTOR_SHIFT;
	size_t copy;

	copy = min_t(size_t, n, PAGE_SIZE - offset);
	if (!brd_insert_page(brd, sector))
203
		return -ENOSPC;
N
Nick Piggin 已提交
204 205 206
	if (copy < n) {
		sector += copy >> SECTOR_SHIFT;
		if (!brd_insert_page(brd, sector))
207
			return -ENOSPC;
N
Nick Piggin 已提交
208 209 210 211
	}
	return 0;
}

N
Nick Piggin 已提交
212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229
static void discard_from_brd(struct brd_device *brd,
			sector_t sector, size_t n)
{
	while (n >= PAGE_SIZE) {
		/*
		 * Don't want to actually discard pages here because
		 * re-allocating the pages can result in writeback
		 * deadlocks under heavy load.
		 */
		if (0)
			brd_free_page(brd, sector);
		else
			brd_zero_page(brd, sector);
		sector += PAGE_SIZE >> SECTOR_SHIFT;
		n -= PAGE_SIZE;
	}
}

N
Nick Piggin 已提交
230 231 232 233 234 235 236 237 238 239 240 241 242 243 244
/*
 * Copy n bytes from src to the brd starting at sector. Does not sleep.
 */
static void copy_to_brd(struct brd_device *brd, const void *src,
			sector_t sector, size_t n)
{
	struct page *page;
	void *dst;
	unsigned int offset = (sector & (PAGE_SECTORS-1)) << SECTOR_SHIFT;
	size_t copy;

	copy = min_t(size_t, n, PAGE_SIZE - offset);
	page = brd_lookup_page(brd, sector);
	BUG_ON(!page);

245
	dst = kmap_atomic(page);
N
Nick Piggin 已提交
246
	memcpy(dst + offset, src, copy);
247
	kunmap_atomic(dst);
N
Nick Piggin 已提交
248 249 250 251 252 253 254 255

	if (copy < n) {
		src += copy;
		sector += copy >> SECTOR_SHIFT;
		copy = n - copy;
		page = brd_lookup_page(brd, sector);
		BUG_ON(!page);

256
		dst = kmap_atomic(page);
N
Nick Piggin 已提交
257
		memcpy(dst, src, copy);
258
		kunmap_atomic(dst);
N
Nick Piggin 已提交
259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275
	}
}

/*
 * Copy n bytes to dst from the brd starting at sector. Does not sleep.
 */
static void copy_from_brd(void *dst, struct brd_device *brd,
			sector_t sector, size_t n)
{
	struct page *page;
	void *src;
	unsigned int offset = (sector & (PAGE_SECTORS-1)) << SECTOR_SHIFT;
	size_t copy;

	copy = min_t(size_t, n, PAGE_SIZE - offset);
	page = brd_lookup_page(brd, sector);
	if (page) {
276
		src = kmap_atomic(page);
N
Nick Piggin 已提交
277
		memcpy(dst, src + offset, copy);
278
		kunmap_atomic(src);
N
Nick Piggin 已提交
279 280 281 282 283 284 285 286 287
	} else
		memset(dst, 0, copy);

	if (copy < n) {
		dst += copy;
		sector += copy >> SECTOR_SHIFT;
		copy = n - copy;
		page = brd_lookup_page(brd, sector);
		if (page) {
288
			src = kmap_atomic(page);
N
Nick Piggin 已提交
289
			memcpy(dst, src, copy);
290
			kunmap_atomic(src);
N
Nick Piggin 已提交
291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311
		} else
			memset(dst, 0, copy);
	}
}

/*
 * Process a single bvec of a bio.
 */
static int brd_do_bvec(struct brd_device *brd, struct page *page,
			unsigned int len, unsigned int off, int rw,
			sector_t sector)
{
	void *mem;
	int err = 0;

	if (rw != READ) {
		err = copy_to_brd_setup(brd, sector, len);
		if (err)
			goto out;
	}

312
	mem = kmap_atomic(page);
N
Nick Piggin 已提交
313 314 315
	if (rw == READ) {
		copy_from_brd(mem + off, brd, sector, len);
		flush_dcache_page(page);
N
Nick Piggin 已提交
316 317
	} else {
		flush_dcache_page(page);
N
Nick Piggin 已提交
318
		copy_to_brd(brd, mem + off, sector, len);
N
Nick Piggin 已提交
319
	}
320
	kunmap_atomic(mem);
N
Nick Piggin 已提交
321 322 323 324 325

out:
	return err;
}

326
static void brd_make_request(struct request_queue *q, struct bio *bio)
N
Nick Piggin 已提交
327 328 329 330
{
	struct block_device *bdev = bio->bi_bdev;
	struct brd_device *brd = bdev->bd_disk->private_data;
	int rw;
331
	struct bio_vec bvec;
N
Nick Piggin 已提交
332
	sector_t sector;
333
	struct bvec_iter iter;
N
Nick Piggin 已提交
334 335
	int err = -EIO;

336
	sector = bio->bi_iter.bi_sector;
K
Kent Overstreet 已提交
337
	if (bio_end_sector(bio) > get_capacity(bdev->bd_disk))
N
Nick Piggin 已提交
338 339
		goto out;

340
	if (unlikely(bio->bi_rw & REQ_DISCARD)) {
N
Nick Piggin 已提交
341
		err = 0;
342
		discard_from_brd(brd, sector, bio->bi_iter.bi_size);
N
Nick Piggin 已提交
343 344 345
		goto out;
	}

N
Nick Piggin 已提交
346 347 348 349
	rw = bio_rw(bio);
	if (rw == READA)
		rw = READ;

350 351 352 353
	bio_for_each_segment(bvec, bio, iter) {
		unsigned int len = bvec.bv_len;
		err = brd_do_bvec(brd, bvec.bv_page, len,
					bvec.bv_offset, rw, sector);
N
Nick Piggin 已提交
354 355 356 357 358 359 360 361 362
		if (err)
			break;
		sector += len >> SECTOR_SHIFT;
	}

out:
	bio_endio(bio, err);
}

M
Matthew Wilcox 已提交
363 364 365 366 367 368 369 370 371
static int brd_rw_page(struct block_device *bdev, sector_t sector,
		       struct page *page, int rw)
{
	struct brd_device *brd = bdev->bd_disk->private_data;
	int err = brd_do_bvec(brd, page, PAGE_CACHE_SIZE, 0, rw, sector);
	page_endio(page, rw & WRITE, err);
	return err;
}

N
Nick Piggin 已提交
372
#ifdef CONFIG_BLK_DEV_XIP
373 374
static long brd_direct_access(struct block_device *bdev, sector_t sector,
			void **kaddr, unsigned long *pfn, long size)
N
Nick Piggin 已提交
375 376 377 378 379 380 381 382
{
	struct brd_device *brd = bdev->bd_disk->private_data;
	struct page *page;

	if (!brd)
		return -ENODEV;
	page = brd_insert_page(brd, sector);
	if (!page)
383
		return -ENOSPC;
384 385
	*kaddr = page_address(page);
	*pfn = page_to_pfn(page);
N
Nick Piggin 已提交
386

387 388 389 390 391
	/*
	 * TODO: If size > PAGE_SIZE, we could look to see if the next page in
	 * the file happens to be mapped to the next page of physical RAM.
	 */
	return PAGE_SIZE;
N
Nick Piggin 已提交
392 393 394
}
#endif

A
Al Viro 已提交
395
static int brd_ioctl(struct block_device *bdev, fmode_t mode,
N
Nick Piggin 已提交
396 397 398 399 400 401 402 403 404 405 406 407
			unsigned int cmd, unsigned long arg)
{
	int error;
	struct brd_device *brd = bdev->bd_disk->private_data;

	if (cmd != BLKFLSBUF)
		return -ENOTTY;

	/*
	 * ram device BLKFLSBUF has special semantics, we want to actually
	 * release and destroy the ramdisk data.
	 */
408
	mutex_lock(&brd_mutex);
N
Nick Piggin 已提交
409 410 411 412
	mutex_lock(&bdev->bd_mutex);
	error = -EBUSY;
	if (bdev->bd_openers <= 1) {
		/*
A
Al Viro 已提交
413 414
		 * Kill the cache first, so it isn't written back to the
		 * device.
N
Nick Piggin 已提交
415 416 417 418
		 *
		 * Another thread might instantiate more buffercache here,
		 * but there is not much we can do to close that race.
		 */
A
Al Viro 已提交
419
		kill_bdev(bdev);
N
Nick Piggin 已提交
420 421 422 423
		brd_free_pages(brd);
		error = 0;
	}
	mutex_unlock(&bdev->bd_mutex);
424
	mutex_unlock(&brd_mutex);
N
Nick Piggin 已提交
425 426 427 428

	return error;
}

429
static const struct block_device_operations brd_fops = {
N
Nick Piggin 已提交
430
	.owner =		THIS_MODULE,
M
Matthew Wilcox 已提交
431
	.rw_page =		brd_rw_page,
432
	.ioctl =		brd_ioctl,
N
Nick Piggin 已提交
433 434 435
#ifdef CONFIG_BLK_DEV_XIP
	.direct_access =	brd_direct_access,
#endif
N
Nick Piggin 已提交
436 437 438 439 440 441 442
};

/*
 * And now the modules code and kernel interface.
 */
static int rd_nr;
int rd_size = CONFIG_BLK_DEV_RAM_SIZE;
443 444
static int max_part;
static int part_shift;
445
static int part_show = 0;
N
Namhyung Kim 已提交
446
module_param(rd_nr, int, S_IRUGO);
N
Nick Piggin 已提交
447
MODULE_PARM_DESC(rd_nr, "Maximum number of brd devices");
N
Namhyung Kim 已提交
448
module_param(rd_size, int, S_IRUGO);
N
Nick Piggin 已提交
449
MODULE_PARM_DESC(rd_size, "Size of each RAM disk in kbytes.");
N
Namhyung Kim 已提交
450
module_param(max_part, int, S_IRUGO);
451
MODULE_PARM_DESC(max_part, "Maximum number of partitions per RAM disk");
452 453
module_param(part_show, int, S_IRUGO);
MODULE_PARM_DESC(part_show, "Control RAM disk visibility in /proc/partitions");
N
Nick Piggin 已提交
454 455
MODULE_LICENSE("GPL");
MODULE_ALIAS_BLOCKDEV_MAJOR(RAMDISK_MAJOR);
456
MODULE_ALIAS("rd");
N
Nick Piggin 已提交
457 458 459 460 461 462 463 464

#ifndef MODULE
/* Legacy boot options - nonmodular */
static int __init ramdisk_size(char *str)
{
	rd_size = simple_strtol(str, NULL, 0);
	return 1;
}
465
__setup("ramdisk_size=", ramdisk_size);
N
Nick Piggin 已提交
466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490
#endif

/*
 * The device scheme is derived from loop.c. Keep them in synch where possible
 * (should share code eventually).
 */
static LIST_HEAD(brd_devices);
static DEFINE_MUTEX(brd_devices_mutex);

static struct brd_device *brd_alloc(int i)
{
	struct brd_device *brd;
	struct gendisk *disk;

	brd = kzalloc(sizeof(*brd), GFP_KERNEL);
	if (!brd)
		goto out;
	brd->brd_number		= i;
	spin_lock_init(&brd->brd_lock);
	INIT_RADIX_TREE(&brd->brd_pages, GFP_ATOMIC);

	brd->brd_queue = blk_alloc_queue(GFP_KERNEL);
	if (!brd->brd_queue)
		goto out_free_dev;
	blk_queue_make_request(brd->brd_queue, brd_make_request);
491
	blk_queue_max_hw_sectors(brd->brd_queue, 1024);
N
Nick Piggin 已提交
492 493
	blk_queue_bounce_limit(brd->brd_queue, BLK_BOUNCE_ANY);

N
Nick Piggin 已提交
494 495 496 497 498
	brd->brd_queue->limits.discard_granularity = PAGE_SIZE;
	brd->brd_queue->limits.max_discard_sectors = UINT_MAX;
	brd->brd_queue->limits.discard_zeroes_data = 1;
	queue_flag_set_unlocked(QUEUE_FLAG_DISCARD, brd->brd_queue);

499
	disk = brd->brd_disk = alloc_disk(1 << part_shift);
N
Nick Piggin 已提交
500 501 502
	if (!disk)
		goto out_free_queue;
	disk->major		= RAMDISK_MAJOR;
503
	disk->first_minor	= i << part_shift;
N
Nick Piggin 已提交
504 505 506
	disk->fops		= &brd_fops;
	disk->private_data	= brd;
	disk->queue		= brd->brd_queue;
507 508
	if (!part_show)
		disk->flags |= GENHD_FL_SUPPRESS_PARTITION_INFO;
N
Nick Piggin 已提交
509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560
	sprintf(disk->disk_name, "ram%d", i);
	set_capacity(disk, rd_size * 2);

	return brd;

out_free_queue:
	blk_cleanup_queue(brd->brd_queue);
out_free_dev:
	kfree(brd);
out:
	return NULL;
}

static void brd_free(struct brd_device *brd)
{
	put_disk(brd->brd_disk);
	blk_cleanup_queue(brd->brd_queue);
	brd_free_pages(brd);
	kfree(brd);
}

static struct brd_device *brd_init_one(int i)
{
	struct brd_device *brd;

	list_for_each_entry(brd, &brd_devices, brd_list) {
		if (brd->brd_number == i)
			goto out;
	}

	brd = brd_alloc(i);
	if (brd) {
		add_disk(brd->brd_disk);
		list_add_tail(&brd->brd_list, &brd_devices);
	}
out:
	return brd;
}

static void brd_del_one(struct brd_device *brd)
{
	list_del(&brd->brd_list);
	del_gendisk(brd->brd_disk);
	brd_free(brd);
}

static struct kobject *brd_probe(dev_t dev, int *part, void *data)
{
	struct brd_device *brd;
	struct kobject *kobj;

	mutex_lock(&brd_devices_mutex);
561
	brd = brd_init_one(MINOR(dev) >> part_shift);
562
	kobj = brd ? get_disk(brd->brd_disk) : NULL;
N
Nick Piggin 已提交
563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583
	mutex_unlock(&brd_devices_mutex);

	*part = 0;
	return kobj;
}

static int __init brd_init(void)
{
	int i, nr;
	unsigned long range;
	struct brd_device *brd, *next;

	/*
	 * brd module now has a feature to instantiate underlying device
	 * structure on-demand, provided that there is an access dev node.
	 * However, this will not work well with user space tool that doesn't
	 * know about such "feature".  In order to not break any existing
	 * tool, we do the following:
	 *
	 * (1) if rd_nr is specified, create that many upfront, and this
	 *     also becomes a hard limit.
584 585 586 587
	 * (2) if rd_nr is not specified, create CONFIG_BLK_DEV_RAM_COUNT
	 *     (default 16) rd device on module load, user can further
	 *     extend brd device by create dev node themselves and have
	 *     kernel automatically instantiate actual device on-demand.
N
Nick Piggin 已提交
588
	 */
589 590

	part_shift = 0;
N
Namhyung Kim 已提交
591
	if (max_part > 0) {
592 593
		part_shift = fls(max_part);

N
Namhyung Kim 已提交
594 595 596 597 598 599 600 601 602 603 604
		/*
		 * Adjust max_part according to part_shift as it is exported
		 * to user space so that user can decide correct minor number
		 * if [s]he want to create more devices.
		 *
		 * Note that -1 is required because partition 0 is reserved
		 * for the whole disk.
		 */
		max_part = (1UL << part_shift) - 1;
	}

605 606 607
	if ((1UL << part_shift) > DISK_MAX_PARTS)
		return -EINVAL;

608
	if (rd_nr > 1UL << (MINORBITS - part_shift))
N
Nick Piggin 已提交
609 610 611 612
		return -EINVAL;

	if (rd_nr) {
		nr = rd_nr;
613
		range = rd_nr << part_shift;
N
Nick Piggin 已提交
614 615
	} else {
		nr = CONFIG_BLK_DEV_RAM_COUNT;
616
		range = 1UL << MINORBITS;
N
Nick Piggin 已提交
617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644
	}

	if (register_blkdev(RAMDISK_MAJOR, "ramdisk"))
		return -EIO;

	for (i = 0; i < nr; i++) {
		brd = brd_alloc(i);
		if (!brd)
			goto out_free;
		list_add_tail(&brd->brd_list, &brd_devices);
	}

	/* point of no return */

	list_for_each_entry(brd, &brd_devices, brd_list)
		add_disk(brd->brd_disk);

	blk_register_region(MKDEV(RAMDISK_MAJOR, 0), range,
				  THIS_MODULE, brd_probe, NULL, NULL);

	printk(KERN_INFO "brd: module loaded\n");
	return 0;

out_free:
	list_for_each_entry_safe(brd, next, &brd_devices, brd_list) {
		list_del(&brd->brd_list);
		brd_free(brd);
	}
645
	unregister_blkdev(RAMDISK_MAJOR, "ramdisk");
N
Nick Piggin 已提交
646 647 648 649 650 651 652 653 654

	return -ENOMEM;
}

static void __exit brd_exit(void)
{
	unsigned long range;
	struct brd_device *brd, *next;

655
	range = rd_nr ? rd_nr << part_shift : 1UL << MINORBITS;
N
Nick Piggin 已提交
656 657 658 659 660 661 662 663 664 665 666

	list_for_each_entry_safe(brd, next, &brd_devices, brd_list)
		brd_del_one(brd);

	blk_unregister_region(MKDEV(RAMDISK_MAJOR, 0), range);
	unregister_blkdev(RAMDISK_MAJOR, "ramdisk");
}

module_init(brd_init);
module_exit(brd_exit);