mtd_blkdevs.c 13.3 KB
Newer Older
L
Linus Torvalds 已提交
1
/*
D
David Woodhouse 已提交
2
 * Interface to Linux block layer for MTD 'translation layers'.
L
Linus Torvalds 已提交
3
 *
D
David Woodhouse 已提交
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
 * Copyright © 2003-2010 David Woodhouse <dwmw2@infradead.org>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
L
Linus Torvalds 已提交
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
 *
 */

#include <linux/kernel.h>
#include <linux/slab.h>
#include <linux/module.h>
#include <linux/list.h>
#include <linux/fs.h>
#include <linux/mtd/blktrans.h>
#include <linux/mtd/mtd.h>
#include <linux/blkdev.h>
#include <linux/blkpg.h>
#include <linux/spinlock.h>
#include <linux/hdreg.h>
#include <linux/init.h>
I
Ingo Molnar 已提交
34
#include <linux/mutex.h>
35
#include <linux/kthread.h>
L
Linus Torvalds 已提交
36 37
#include <asm/uaccess.h>

38
#include "mtdcore.h"
L
Linus Torvalds 已提交
39

40
static LIST_HEAD(blktrans_majors);
M
Maxim Levitsky 已提交
41 42
static DEFINE_MUTEX(blktrans_ref_mutex);

43
static void blktrans_dev_release(struct kref *kref)
M
Maxim Levitsky 已提交
44 45 46 47 48
{
	struct mtd_blktrans_dev *dev =
		container_of(kref, struct mtd_blktrans_dev, ref);

	dev->disk->private_data = NULL;
49
	blk_cleanup_queue(dev->rq);
M
Maxim Levitsky 已提交
50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
	put_disk(dev->disk);
	list_del(&dev->list);
	kfree(dev);
}

static struct mtd_blktrans_dev *blktrans_dev_get(struct gendisk *disk)
{
	struct mtd_blktrans_dev *dev;

	mutex_lock(&blktrans_ref_mutex);
	dev = disk->private_data;

	if (!dev)
		goto unlock;
	kref_get(&dev->ref);
unlock:
	mutex_unlock(&blktrans_ref_mutex);
	return dev;
}

70
static void blktrans_dev_put(struct mtd_blktrans_dev *dev)
M
Maxim Levitsky 已提交
71 72 73 74 75
{
	mutex_lock(&blktrans_ref_mutex);
	kref_put(&dev->ref, blktrans_dev_release);
	mutex_unlock(&blktrans_ref_mutex);
}
L
Linus Torvalds 已提交
76 77 78 79 80 81 82 83 84


static int do_blktrans_request(struct mtd_blktrans_ops *tr,
			       struct mtd_blktrans_dev *dev,
			       struct request *req)
{
	unsigned long block, nsect;
	char *buf;

85
	block = blk_rq_pos(req) << 9 >> tr->blkshift;
86
	nsect = blk_rq_cur_bytes(req) >> tr->blkshift;
87

L
Linus Torvalds 已提交
88 89
	buf = req->buffer;

90
	if (req->cmd_type != REQ_TYPE_FS)
91
		return -EIO;
L
Linus Torvalds 已提交
92

93 94
	if (blk_rq_pos(req) + blk_rq_cur_sectors(req) >
	    get_capacity(req->rq_disk))
95
		return -EIO;
L
Linus Torvalds 已提交
96

97
	if (req->cmd_flags & REQ_DISCARD)
98 99
		return tr->discard(dev, block, nsect);

L
Linus Torvalds 已提交
100 101
	switch(rq_data_dir(req)) {
	case READ:
102
		for (; nsect > 0; nsect--, block++, buf += tr->blksize)
L
Linus Torvalds 已提交
103
			if (tr->readsect(dev, block, buf))
104
				return -EIO;
105
		rq_flush_dcache_pages(req);
106
		return 0;
L
Linus Torvalds 已提交
107 108
	case WRITE:
		if (!tr->writesect)
109
			return -EIO;
L
Linus Torvalds 已提交
110

111
		rq_flush_dcache_pages(req);
112
		for (; nsect > 0; nsect--, block++, buf += tr->blksize)
L
Linus Torvalds 已提交
113
			if (tr->writesect(dev, block, buf))
114 115
				return -EIO;
		return 0;
L
Linus Torvalds 已提交
116
	default:
J
Jeff Garzik 已提交
117
		printk(KERN_NOTICE "Unknown request %u\n", rq_data_dir(req));
118
		return -EIO;
L
Linus Torvalds 已提交
119 120 121
	}
}

122 123 124 125 126
int mtd_blktrans_cease_background(struct mtd_blktrans_dev *dev)
{
	if (kthread_should_stop())
		return 1;

A
Artem Bityutskiy 已提交
127
	return dev->bg_stop;
128 129 130
}
EXPORT_SYMBOL_GPL(mtd_blktrans_cease_background);

L
Linus Torvalds 已提交
131 132
static int mtd_blktrans_thread(void *arg)
{
133
	struct mtd_blktrans_dev *dev = arg;
134
	struct mtd_blktrans_ops *tr = dev->tr;
135
	struct request_queue *rq = dev->rq;
136
	struct request *req = NULL;
137
	int background_done = 0;
L
Linus Torvalds 已提交
138 139

	spin_lock_irq(rq->queue_lock);
140

141
	while (!kthread_should_stop()) {
142
		int res;
L
Linus Torvalds 已提交
143

A
Artem Bityutskiy 已提交
144
		dev->bg_stop = false;
145
		if (!req && !(req = blk_fetch_request(rq))) {
146 147 148 149 150 151 152 153 154 155
			if (tr->background && !background_done) {
				spin_unlock_irq(rq->queue_lock);
				mutex_lock(&dev->lock);
				tr->background(dev);
				mutex_unlock(&dev->lock);
				spin_lock_irq(rq->queue_lock);
				/*
				 * Do background processing just once per idle
				 * period.
				 */
A
Artem Bityutskiy 已提交
156
				background_done = !dev->bg_stop;
157 158
				continue;
			}
L
Linus Torvalds 已提交
159
			set_current_state(TASK_INTERRUPTIBLE);
160 161 162 163

			if (kthread_should_stop())
				set_current_state(TASK_RUNNING);

L
Linus Torvalds 已提交
164 165 166 167 168 169 170 171
			spin_unlock_irq(rq->queue_lock);
			schedule();
			spin_lock_irq(rq->queue_lock);
			continue;
		}

		spin_unlock_irq(rq->queue_lock);

I
Ingo Molnar 已提交
172
		mutex_lock(&dev->lock);
173
		res = do_blktrans_request(dev->tr, dev, req);
I
Ingo Molnar 已提交
174
		mutex_unlock(&dev->lock);
L
Linus Torvalds 已提交
175 176 177

		spin_lock_irq(rq->queue_lock);

178 179
		if (!__blk_end_request_cur(req, res))
			req = NULL;
180 181

		background_done = 0;
L
Linus Torvalds 已提交
182
	}
183 184 185 186

	if (req)
		__blk_end_request_all(req, -EIO);

L
Linus Torvalds 已提交
187 188
	spin_unlock_irq(rq->queue_lock);

189
	return 0;
L
Linus Torvalds 已提交
190 191 192 193
}

static void mtd_blktrans_request(struct request_queue *rq)
{
M
Maxim Levitsky 已提交
194 195 196 197
	struct mtd_blktrans_dev *dev;
	struct request *req = NULL;

	dev = rq->queuedata;
L
Linus Torvalds 已提交
198

M
Maxim Levitsky 已提交
199 200 201
	if (!dev)
		while ((req = blk_fetch_request(rq)) != NULL)
			__blk_end_request_all(req, -ENODEV);
A
Artem Bityutskiy 已提交
202 203
	else {
		dev->bg_stop = true;
M
Maxim Levitsky 已提交
204
		wake_up_process(dev->thread);
A
Artem Bityutskiy 已提交
205
	}
M
Maxim Levitsky 已提交
206
}
L
Linus Torvalds 已提交
207

A
Al Viro 已提交
208
static int blktrans_open(struct block_device *bdev, fmode_t mode)
L
Linus Torvalds 已提交
209
{
M
Maxim Levitsky 已提交
210
	struct mtd_blktrans_dev *dev = blktrans_dev_get(bdev->bd_disk);
211
	int ret = 0;
M
Maxim Levitsky 已提交
212 213

	if (!dev)
214
		return -ERESTARTSYS; /* FIXME: busy loop! -arnd*/
M
Maxim Levitsky 已提交
215 216 217

	mutex_lock(&dev->lock);

218
	if (dev->open++)
M
Maxim Levitsky 已提交
219 220
		goto unlock;

221 222 223
	kref_get(&dev->ref);
	__module_get(dev->tr->owner);

224 225 226 227 228 229 230
	if (!dev->mtd)
		goto unlock;

	if (dev->tr->open) {
		ret = dev->tr->open(dev);
		if (ret)
			goto error_put;
231
	}
M
Maxim Levitsky 已提交
232

233 234 235 236
	ret = __get_mtd_device(dev->mtd);
	if (ret)
		goto error_release;

M
Maxim Levitsky 已提交
237 238 239
unlock:
	mutex_unlock(&dev->lock);
	blktrans_dev_put(dev);
L
Linus Torvalds 已提交
240
	return ret;
241 242 243 244 245 246 247 248 249 250

error_release:
	if (dev->tr->release)
		dev->tr->release(dev);
error_put:
	module_put(dev->tr->owner);
	kref_put(&dev->ref, blktrans_dev_release);
	mutex_unlock(&dev->lock);
	blktrans_dev_put(dev);
	return ret;
L
Linus Torvalds 已提交
251 252
}

A
Al Viro 已提交
253
static int blktrans_release(struct gendisk *disk, fmode_t mode)
L
Linus Torvalds 已提交
254
{
M
Maxim Levitsky 已提交
255
	struct mtd_blktrans_dev *dev = blktrans_dev_get(disk);
256
	int ret = 0;
L
Linus Torvalds 已提交
257

M
Maxim Levitsky 已提交
258 259
	if (!dev)
		return ret;
L
Linus Torvalds 已提交
260

M
Maxim Levitsky 已提交
261 262
	mutex_lock(&dev->lock);

263
	if (--dev->open)
M
Maxim Levitsky 已提交
264 265
		goto unlock;

266 267 268 269 270 271 272
	kref_put(&dev->ref, blktrans_dev_release);
	module_put(dev->tr->owner);

	if (dev->mtd) {
		ret = dev->tr->release ? dev->tr->release(dev) : 0;
		__put_mtd_device(dev->mtd);
	}
M
Maxim Levitsky 已提交
273 274 275
unlock:
	mutex_unlock(&dev->lock);
	blktrans_dev_put(dev);
L
Linus Torvalds 已提交
276 277 278
	return ret;
}

279 280
static int blktrans_getgeo(struct block_device *bdev, struct hd_geometry *geo)
{
M
Maxim Levitsky 已提交
281 282 283 284 285 286 287
	struct mtd_blktrans_dev *dev = blktrans_dev_get(bdev->bd_disk);
	int ret = -ENXIO;

	if (!dev)
		return ret;

	mutex_lock(&dev->lock);
288

M
Maxim Levitsky 已提交
289 290 291 292 293 294 295 296
	if (!dev->mtd)
		goto unlock;

	ret = dev->tr->getgeo ? dev->tr->getgeo(dev, geo) : 0;
unlock:
	mutex_unlock(&dev->lock);
	blktrans_dev_put(dev);
	return ret;
297
}
L
Linus Torvalds 已提交
298

A
Al Viro 已提交
299
static int blktrans_ioctl(struct block_device *bdev, fmode_t mode,
L
Linus Torvalds 已提交
300 301
			      unsigned int cmd, unsigned long arg)
{
M
Maxim Levitsky 已提交
302 303 304 305 306 307 308 309 310 311
	struct mtd_blktrans_dev *dev = blktrans_dev_get(bdev->bd_disk);
	int ret = -ENXIO;

	if (!dev)
		return ret;

	mutex_lock(&dev->lock);

	if (!dev->mtd)
		goto unlock;
L
Linus Torvalds 已提交
312 313 314

	switch (cmd) {
	case BLKFLSBUF:
M
Maxim Levitsky 已提交
315
		ret = dev->tr->flush ? dev->tr->flush(dev) : 0;
316
		break;
L
Linus Torvalds 已提交
317
	default:
M
Maxim Levitsky 已提交
318
		ret = -ENOTTY;
L
Linus Torvalds 已提交
319
	}
M
Maxim Levitsky 已提交
320 321 322 323
unlock:
	mutex_unlock(&dev->lock);
	blktrans_dev_put(dev);
	return ret;
L
Linus Torvalds 已提交
324 325
}

326
static const struct block_device_operations mtd_blktrans_ops = {
L
Linus Torvalds 已提交
327
	.owner		= THIS_MODULE,
A
Al Viro 已提交
328 329
	.open		= blktrans_open,
	.release	= blktrans_release,
330
	.ioctl		= blktrans_ioctl,
331
	.getgeo		= blktrans_getgeo,
L
Linus Torvalds 已提交
332 333 334 335 336
};

int add_mtd_blktrans_dev(struct mtd_blktrans_dev *new)
{
	struct mtd_blktrans_ops *tr = new->tr;
337
	struct mtd_blktrans_dev *d;
L
Linus Torvalds 已提交
338 339
	int last_devnum = -1;
	struct gendisk *gd;
340
	int ret;
L
Linus Torvalds 已提交
341

J
Jean Delvare 已提交
342
	if (mutex_trylock(&mtd_table_mutex)) {
I
Ingo Molnar 已提交
343
		mutex_unlock(&mtd_table_mutex);
L
Linus Torvalds 已提交
344 345 346
		BUG();
	}

M
Maxim Levitsky 已提交
347
	mutex_lock(&blktrans_ref_mutex);
348
	list_for_each_entry(d, &tr->devs, list) {
L
Linus Torvalds 已提交
349 350 351 352 353 354 355 356 357 358
		if (new->devnum == -1) {
			/* Use first free number */
			if (d->devnum != last_devnum+1) {
				/* Found a free devnum. Plug it in here */
				new->devnum = last_devnum+1;
				list_add_tail(&new->list, &d->list);
				goto added;
			}
		} else if (d->devnum == new->devnum) {
			/* Required number taken */
M
Maxim Levitsky 已提交
359
			mutex_unlock(&blktrans_ref_mutex);
L
Linus Torvalds 已提交
360 361 362 363 364
			return -EBUSY;
		} else if (d->devnum > new->devnum) {
			/* Required number was free */
			list_add_tail(&new->list, &d->list);
			goto added;
365
		}
L
Linus Torvalds 已提交
366 367
		last_devnum = d->devnum;
	}
368 369

	ret = -EBUSY;
L
Linus Torvalds 已提交
370 371 372
	if (new->devnum == -1)
		new->devnum = last_devnum+1;

373 374 375 376
	/* Check that the device and any partitions will get valid
	 * minor numbers and that the disk naming code below can cope
	 * with this number. */
	if (new->devnum > (MINORMASK >> tr->part_bits) ||
M
Maxim Levitsky 已提交
377 378
	    (tr->part_bits && new->devnum >= 27 * 26)) {
		mutex_unlock(&blktrans_ref_mutex);
379
		goto error1;
M
Maxim Levitsky 已提交
380
	}
L
Linus Torvalds 已提交
381 382 383

	list_add_tail(&new->list, &tr->devs);
 added:
M
Maxim Levitsky 已提交
384 385
	mutex_unlock(&blktrans_ref_mutex);

386
	mutex_init(&new->lock);
M
Maxim Levitsky 已提交
387
	kref_init(&new->ref);
L
Linus Torvalds 已提交
388 389 390
	if (!tr->writesect)
		new->readonly = 1;

391 392
	/* Create gendisk */
	ret = -ENOMEM;
L
Linus Torvalds 已提交
393
	gd = alloc_disk(1 << tr->part_bits);
394 395 396 397 398 399

	if (!gd)
		goto error2;

	new->disk = gd;
	gd->private_data = new;
L
Linus Torvalds 已提交
400 401 402
	gd->major = tr->major;
	gd->first_minor = (new->devnum) << tr->part_bits;
	gd->fops = &mtd_blktrans_ops;
403

404 405 406 407 408 409 410 411 412 413 414 415
	if (tr->part_bits)
		if (new->devnum < 26)
			snprintf(gd->disk_name, sizeof(gd->disk_name),
				 "%s%c", tr->name, 'a' + new->devnum);
		else
			snprintf(gd->disk_name, sizeof(gd->disk_name),
				 "%s%c%c", tr->name,
				 'a' - 1 + new->devnum / 26,
				 'a' + new->devnum % 26);
	else
		snprintf(gd->disk_name, sizeof(gd->disk_name),
			 "%s%d", tr->name, new->devnum);
L
Linus Torvalds 已提交
416

417
	set_capacity(gd, (new->size * tr->blksize) >> 9);
L
Linus Torvalds 已提交
418

419 420 421 422 423 424 425 426 427 428
	/* Create the request queue */
	spin_lock_init(&new->queue_lock);
	new->rq = blk_init_queue(mtd_blktrans_request, &new->queue_lock);

	if (!new->rq)
		goto error3;

	new->rq->queuedata = new;
	blk_queue_logical_block_size(new->rq, tr->blksize);

429 430 431 432
	if (tr->discard) {
		queue_flag_set_unlocked(QUEUE_FLAG_DISCARD, new->rq);
		new->rq->limits.max_discard_sectors = UINT_MAX;
	}
433 434 435 436 437 438 439 440 441 442 443

	gd->queue = new->rq;

	/* Create processing thread */
	/* TODO: workqueue ? */
	new->thread = kthread_run(mtd_blktrans_thread, new,
			"%s%d", tr->name, new->mtd->index);
	if (IS_ERR(new->thread)) {
		ret = PTR_ERR(new->thread);
		goto error4;
	}
444
	gd->driverfs_dev = &new->mtd->dev;
L
Linus Torvalds 已提交
445 446 447 448 449

	if (new->readonly)
		set_disk_ro(gd, 1);

	add_disk(gd);
450

451 452
	if (new->disk_attributes) {
		ret = sysfs_create_group(&disk_to_dev(gd)->kobj,
453
					new->disk_attributes);
454 455
		WARN_ON(ret);
	}
L
Linus Torvalds 已提交
456
	return 0;
457 458 459 460 461 462 463 464
error4:
	blk_cleanup_queue(new->rq);
error3:
	put_disk(new->disk);
error2:
	list_del(&new->list);
error1:
	return ret;
L
Linus Torvalds 已提交
465 466 467 468
}

int del_mtd_blktrans_dev(struct mtd_blktrans_dev *old)
{
M
Maxim Levitsky 已提交
469 470
	unsigned long flags;

J
Jean Delvare 已提交
471
	if (mutex_trylock(&mtd_table_mutex)) {
I
Ingo Molnar 已提交
472
		mutex_unlock(&mtd_table_mutex);
L
Linus Torvalds 已提交
473 474 475
		BUG();
	}

476 477 478 479
	if (old->disk_attributes)
		sysfs_remove_group(&disk_to_dev(old->disk)->kobj,
						old->disk_attributes);

480 481 482 483
	/* Stop new requests to arrive */
	del_gendisk(old->disk);


484 485 486
	/* Stop the thread */
	kthread_stop(old->thread);

M
Maxim Levitsky 已提交
487 488 489 490 491 492
	/* Kill current requests */
	spin_lock_irqsave(&old->queue_lock, flags);
	old->rq->queuedata = NULL;
	blk_start_queue(old->rq);
	spin_unlock_irqrestore(&old->queue_lock, flags);

493 494
	/* If the device is currently open, tell trans driver to close it,
		then put mtd device, and don't touch it again */
M
Maxim Levitsky 已提交
495
	mutex_lock(&old->lock);
496 497 498 499
	if (old->open) {
		if (old->tr->release)
			old->tr->release(old);
		__put_mtd_device(old->mtd);
M
Maxim Levitsky 已提交
500 501 502 503 504 505
	}

	old->mtd = NULL;

	mutex_unlock(&old->lock);
	blktrans_dev_put(old);
L
Linus Torvalds 已提交
506 507 508 509 510
	return 0;
}

static void blktrans_notify_remove(struct mtd_info *mtd)
{
511 512
	struct mtd_blktrans_ops *tr;
	struct mtd_blktrans_dev *dev, *next;
L
Linus Torvalds 已提交
513

514 515
	list_for_each_entry(tr, &blktrans_majors, list)
		list_for_each_entry_safe(dev, next, &tr->devs, list)
L
Linus Torvalds 已提交
516 517 518 519 520 521
			if (dev->mtd == mtd)
				tr->remove_dev(dev);
}

static void blktrans_notify_add(struct mtd_info *mtd)
{
522
	struct mtd_blktrans_ops *tr;
L
Linus Torvalds 已提交
523 524 525 526

	if (mtd->type == MTD_ABSENT)
		return;

527
	list_for_each_entry(tr, &blktrans_majors, list)
L
Linus Torvalds 已提交
528 529 530 531 532 533 534
		tr->add_mtd(tr, mtd);
}

static struct mtd_notifier blktrans_notifier = {
	.add = blktrans_notify_add,
	.remove = blktrans_notify_remove,
};
535

L
Linus Torvalds 已提交
536 537
int register_mtd_blktrans(struct mtd_blktrans_ops *tr)
{
538 539
	struct mtd_info *mtd;
	int ret;
L
Linus Torvalds 已提交
540

541
	/* Register the notifier if/when the first device type is
L
Linus Torvalds 已提交
542 543 544 545 546 547
	   registered, to prevent the link/init ordering from fucking
	   us over. */
	if (!blktrans_notifier.list.next)
		register_mtd_user(&blktrans_notifier);


I
Ingo Molnar 已提交
548
	mutex_lock(&mtd_table_mutex);
L
Linus Torvalds 已提交
549 550

	ret = register_blkdev(tr->major, tr->name);
551
	if (ret < 0) {
L
Linus Torvalds 已提交
552 553
		printk(KERN_WARNING "Unable to register %s block device on major %d: %d\n",
		       tr->name, tr->major, ret);
I
Ingo Molnar 已提交
554
		mutex_unlock(&mtd_table_mutex);
L
Linus Torvalds 已提交
555 556
		return ret;
	}
557

558 559 560
	if (ret)
		tr->major = ret;

561
	tr->blkshift = ffs(tr->blksize) - 1;
L
Linus Torvalds 已提交
562 563 564 565

	INIT_LIST_HEAD(&tr->devs);
	list_add(&tr->list, &blktrans_majors);

566 567 568
	mtd_for_each_device(mtd)
		if (mtd->type != MTD_ABSENT)
			tr->add_mtd(tr, mtd);
L
Linus Torvalds 已提交
569

I
Ingo Molnar 已提交
570
	mutex_unlock(&mtd_table_mutex);
L
Linus Torvalds 已提交
571 572 573 574 575
	return 0;
}

int deregister_mtd_blktrans(struct mtd_blktrans_ops *tr)
{
576
	struct mtd_blktrans_dev *dev, *next;
L
Linus Torvalds 已提交
577

I
Ingo Molnar 已提交
578
	mutex_lock(&mtd_table_mutex);
L
Linus Torvalds 已提交
579 580 581 582

	/* Remove it from the list of active majors */
	list_del(&tr->list);

583
	list_for_each_entry_safe(dev, next, &tr->devs, list)
L
Linus Torvalds 已提交
584 585 586
		tr->remove_dev(dev);

	unregister_blkdev(tr->major, tr->name);
I
Ingo Molnar 已提交
587
	mutex_unlock(&mtd_table_mutex);
L
Linus Torvalds 已提交
588

589
	BUG_ON(!list_empty(&tr->devs));
L
Linus Torvalds 已提交
590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610
	return 0;
}

static void __exit mtd_blktrans_exit(void)
{
	/* No race here -- if someone's currently in register_mtd_blktrans
	   we're screwed anyway. */
	if (blktrans_notifier.list.next)
		unregister_mtd_user(&blktrans_notifier);
}

module_exit(mtd_blktrans_exit);

EXPORT_SYMBOL_GPL(register_mtd_blktrans);
EXPORT_SYMBOL_GPL(deregister_mtd_blktrans);
EXPORT_SYMBOL_GPL(add_mtd_blktrans_dev);
EXPORT_SYMBOL_GPL(del_mtd_blktrans_dev);

MODULE_AUTHOR("David Woodhouse <dwmw2@infradead.org>");
MODULE_LICENSE("GPL");
MODULE_DESCRIPTION("Common interface to block layer for MTD 'translation layers'");