mtd_blkdevs.c 13.4 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
 *
 */

#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>
I
Ingo Molnar 已提交
33
#include <linux/mutex.h>
34
#include <linux/uaccess.h>
L
Linus Torvalds 已提交
35

36
#include "mtdcore.h"
L
Linus Torvalds 已提交
37

38
static LIST_HEAD(blktrans_majors);
M
Maxim Levitsky 已提交
39 40
static DEFINE_MUTEX(blktrans_ref_mutex);

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

	dev->disk->private_data = NULL;
47
	blk_cleanup_queue(dev->rq);
M
Maxim Levitsky 已提交
48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
	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;
}

68
static void blktrans_dev_put(struct mtd_blktrans_dev *dev)
M
Maxim Levitsky 已提交
69 70 71 72 73
{
	mutex_lock(&blktrans_ref_mutex);
	kref_put(&dev->ref, blktrans_dev_release);
	mutex_unlock(&blktrans_ref_mutex);
}
L
Linus Torvalds 已提交
74 75


76
static blk_status_t do_blktrans_request(struct mtd_blktrans_ops *tr,
L
Linus Torvalds 已提交
77 78 79 80 81 82
			       struct mtd_blktrans_dev *dev,
			       struct request *req)
{
	unsigned long block, nsect;
	char *buf;

83
	block = blk_rq_pos(req) << 9 >> tr->blkshift;
84
	nsect = blk_rq_cur_bytes(req) >> tr->blkshift;
85
	buf = bio_data(req->bio);
L
Linus Torvalds 已提交
86

87 88 89 90 91
	if (req_op(req) == REQ_OP_FLUSH) {
		if (tr->flush(dev))
			return BLK_STS_IOERR;
		return BLK_STS_OK;
	}
92

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

97 98
	switch (req_op(req)) {
	case REQ_OP_DISCARD:
99 100 101
		if (tr->discard(dev, block, nsect))
			return BLK_STS_IOERR;
		return BLK_STS_OK;
102
	case REQ_OP_READ:
103
		for (; nsect > 0; nsect--, block++, buf += tr->blksize)
L
Linus Torvalds 已提交
104
			if (tr->readsect(dev, block, buf))
105
				return BLK_STS_IOERR;
106
		rq_flush_dcache_pages(req);
107
		return BLK_STS_OK;
108
	case REQ_OP_WRITE:
L
Linus Torvalds 已提交
109
		if (!tr->writesect)
110
			return BLK_STS_IOERR;
L
Linus Torvalds 已提交
111

112
		rq_flush_dcache_pages(req);
113
		for (; nsect > 0; nsect--, block++, buf += tr->blksize)
L
Linus Torvalds 已提交
114
			if (tr->writesect(dev, block, buf))
115
				return BLK_STS_IOERR;
116
		return BLK_STS_OK;
117
	default:
118
		return BLK_STS_IOERR;
L
Linus Torvalds 已提交
119 120 121
	}
}

122 123
int mtd_blktrans_cease_background(struct mtd_blktrans_dev *dev)
{
A
Artem Bityutskiy 已提交
124
	return dev->bg_stop;
125 126 127
}
EXPORT_SYMBOL_GPL(mtd_blktrans_cease_background);

128
static void mtd_blktrans_work(struct work_struct *work)
L
Linus Torvalds 已提交
129
{
130 131
	struct mtd_blktrans_dev *dev =
		container_of(work, struct mtd_blktrans_dev, work);
132
	struct mtd_blktrans_ops *tr = dev->tr;
133
	struct request_queue *rq = dev->rq;
134
	struct request *req = NULL;
135
	int background_done = 0;
L
Linus Torvalds 已提交
136 137

	spin_lock_irq(rq->queue_lock);
138

139
	while (1) {
140
		blk_status_t res;
L
Linus Torvalds 已提交
141

A
Artem Bityutskiy 已提交
142
		dev->bg_stop = false;
143
		if (!req && !(req = blk_fetch_request(rq))) {
144 145 146 147 148 149 150 151 152 153
			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 已提交
154
				background_done = !dev->bg_stop;
155 156
				continue;
			}
157
			break;
L
Linus Torvalds 已提交
158 159 160 161
		}

		spin_unlock_irq(rq->queue_lock);

I
Ingo Molnar 已提交
162
		mutex_lock(&dev->lock);
163
		res = do_blktrans_request(dev->tr, dev, req);
I
Ingo Molnar 已提交
164
		mutex_unlock(&dev->lock);
L
Linus Torvalds 已提交
165 166 167

		spin_lock_irq(rq->queue_lock);

168 169
		if (!__blk_end_request_cur(req, res))
			req = NULL;
170 171

		background_done = 0;
L
Linus Torvalds 已提交
172
	}
173

L
Linus Torvalds 已提交
174 175 176 177 178
	spin_unlock_irq(rq->queue_lock);
}

static void mtd_blktrans_request(struct request_queue *rq)
{
M
Maxim Levitsky 已提交
179 180 181 182
	struct mtd_blktrans_dev *dev;
	struct request *req = NULL;

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

M
Maxim Levitsky 已提交
184 185
	if (!dev)
		while ((req = blk_fetch_request(rq)) != NULL)
186
			__blk_end_request_all(req, BLK_STS_IOERR);
187 188
	else
		queue_work(dev->wq, &dev->work);
M
Maxim Levitsky 已提交
189
}
L
Linus Torvalds 已提交
190

A
Al Viro 已提交
191
static int blktrans_open(struct block_device *bdev, fmode_t mode)
L
Linus Torvalds 已提交
192
{
M
Maxim Levitsky 已提交
193
	struct mtd_blktrans_dev *dev = blktrans_dev_get(bdev->bd_disk);
194
	int ret = 0;
M
Maxim Levitsky 已提交
195 196

	if (!dev)
197
		return -ERESTARTSYS; /* FIXME: busy loop! -arnd*/
M
Maxim Levitsky 已提交
198

199
	mutex_lock(&mtd_table_mutex);
200
	mutex_lock(&dev->lock);
M
Maxim Levitsky 已提交
201

202
	if (dev->open)
M
Maxim Levitsky 已提交
203 204
		goto unlock;

205 206 207
	kref_get(&dev->ref);
	__module_get(dev->tr->owner);

208 209 210 211 212 213 214
	if (!dev->mtd)
		goto unlock;

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

217 218 219
	ret = __get_mtd_device(dev->mtd);
	if (ret)
		goto error_release;
220
	dev->file_mode = mode;
221

M
Maxim Levitsky 已提交
222
unlock:
223
	dev->open++;
M
Maxim Levitsky 已提交
224
	mutex_unlock(&dev->lock);
225
	mutex_unlock(&mtd_table_mutex);
M
Maxim Levitsky 已提交
226
	blktrans_dev_put(dev);
L
Linus Torvalds 已提交
227
	return ret;
228 229 230 231 232 233 234 235

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);
236
	mutex_unlock(&mtd_table_mutex);
237 238
	blktrans_dev_put(dev);
	return ret;
L
Linus Torvalds 已提交
239 240
}

241
static void blktrans_release(struct gendisk *disk, fmode_t mode)
L
Linus Torvalds 已提交
242
{
M
Maxim Levitsky 已提交
243
	struct mtd_blktrans_dev *dev = blktrans_dev_get(disk);
L
Linus Torvalds 已提交
244

M
Maxim Levitsky 已提交
245
	if (!dev)
246
		return;
L
Linus Torvalds 已提交
247

248
	mutex_lock(&mtd_table_mutex);
249
	mutex_lock(&dev->lock);
M
Maxim Levitsky 已提交
250

251
	if (--dev->open)
M
Maxim Levitsky 已提交
252 253
		goto unlock;

254 255 256 257
	kref_put(&dev->ref, blktrans_dev_release);
	module_put(dev->tr->owner);

	if (dev->mtd) {
258 259
		if (dev->tr->release)
			dev->tr->release(dev);
260 261
		__put_mtd_device(dev->mtd);
	}
M
Maxim Levitsky 已提交
262 263
unlock:
	mutex_unlock(&dev->lock);
264
	mutex_unlock(&mtd_table_mutex);
M
Maxim Levitsky 已提交
265
	blktrans_dev_put(dev);
L
Linus Torvalds 已提交
266 267
}

268 269
static int blktrans_getgeo(struct block_device *bdev, struct hd_geometry *geo)
{
M
Maxim Levitsky 已提交
270 271 272 273 274 275 276
	struct mtd_blktrans_dev *dev = blktrans_dev_get(bdev->bd_disk);
	int ret = -ENXIO;

	if (!dev)
		return ret;

	mutex_lock(&dev->lock);
277

M
Maxim Levitsky 已提交
278 279 280
	if (!dev->mtd)
		goto unlock;

281
	ret = dev->tr->getgeo ? dev->tr->getgeo(dev, geo) : -ENOTTY;
M
Maxim Levitsky 已提交
282 283 284 285
unlock:
	mutex_unlock(&dev->lock);
	blktrans_dev_put(dev);
	return ret;
286
}
L
Linus Torvalds 已提交
287

A
Al Viro 已提交
288
static int blktrans_ioctl(struct block_device *bdev, fmode_t mode,
L
Linus Torvalds 已提交
289 290
			      unsigned int cmd, unsigned long arg)
{
M
Maxim Levitsky 已提交
291 292 293 294 295 296 297 298 299 300
	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 已提交
301 302 303

	switch (cmd) {
	case BLKFLSBUF:
M
Maxim Levitsky 已提交
304
		ret = dev->tr->flush ? dev->tr->flush(dev) : 0;
305
		break;
L
Linus Torvalds 已提交
306
	default:
M
Maxim Levitsky 已提交
307
		ret = -ENOTTY;
L
Linus Torvalds 已提交
308
	}
M
Maxim Levitsky 已提交
309 310 311 312
unlock:
	mutex_unlock(&dev->lock);
	blktrans_dev_put(dev);
	return ret;
L
Linus Torvalds 已提交
313 314
}

315
static const struct block_device_operations mtd_block_ops = {
L
Linus Torvalds 已提交
316
	.owner		= THIS_MODULE,
A
Al Viro 已提交
317 318
	.open		= blktrans_open,
	.release	= blktrans_release,
319
	.ioctl		= blktrans_ioctl,
320
	.getgeo		= blktrans_getgeo,
L
Linus Torvalds 已提交
321 322 323 324 325
};

int add_mtd_blktrans_dev(struct mtd_blktrans_dev *new)
{
	struct mtd_blktrans_ops *tr = new->tr;
326
	struct mtd_blktrans_dev *d;
L
Linus Torvalds 已提交
327 328
	int last_devnum = -1;
	struct gendisk *gd;
329
	int ret;
L
Linus Torvalds 已提交
330

J
Jean Delvare 已提交
331
	if (mutex_trylock(&mtd_table_mutex)) {
I
Ingo Molnar 已提交
332
		mutex_unlock(&mtd_table_mutex);
L
Linus Torvalds 已提交
333 334 335
		BUG();
	}

M
Maxim Levitsky 已提交
336
	mutex_lock(&blktrans_ref_mutex);
337
	list_for_each_entry(d, &tr->devs, list) {
L
Linus Torvalds 已提交
338 339 340 341 342 343 344 345 346 347
		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 已提交
348
			mutex_unlock(&blktrans_ref_mutex);
L
Linus Torvalds 已提交
349 350 351 352 353
			return -EBUSY;
		} else if (d->devnum > new->devnum) {
			/* Required number was free */
			list_add_tail(&new->list, &d->list);
			goto added;
354
		}
L
Linus Torvalds 已提交
355 356
		last_devnum = d->devnum;
	}
357 358

	ret = -EBUSY;
L
Linus Torvalds 已提交
359 360 361
	if (new->devnum == -1)
		new->devnum = last_devnum+1;

362 363 364 365
	/* 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 已提交
366 367
	    (tr->part_bits && new->devnum >= 27 * 26)) {
		mutex_unlock(&blktrans_ref_mutex);
368
		goto error1;
M
Maxim Levitsky 已提交
369
	}
L
Linus Torvalds 已提交
370 371 372

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

375
	mutex_init(&new->lock);
M
Maxim Levitsky 已提交
376
	kref_init(&new->ref);
L
Linus Torvalds 已提交
377 378 379
	if (!tr->writesect)
		new->readonly = 1;

380 381
	/* Create gendisk */
	ret = -ENOMEM;
L
Linus Torvalds 已提交
382
	gd = alloc_disk(1 << tr->part_bits);
383 384 385 386 387 388

	if (!gd)
		goto error2;

	new->disk = gd;
	gd->private_data = new;
L
Linus Torvalds 已提交
389 390
	gd->major = tr->major;
	gd->first_minor = (new->devnum) << tr->part_bits;
391
	gd->fops = &mtd_block_ops;
392

393 394 395 396 397 398 399 400 401 402 403 404
	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 已提交
405

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

408 409 410 411 412 413 414
	/* 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;

415
	if (tr->flush)
416
		blk_queue_write_cache(new->rq, true, false);
417

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

421
	blk_queue_bounce_limit(new->rq, BLK_BOUNCE_HIGH);
422
	queue_flag_set_unlocked(QUEUE_FLAG_NONROT, new->rq);
423
	queue_flag_clear_unlocked(QUEUE_FLAG_ADD_RANDOM, new->rq);
424

425 426
	if (tr->discard) {
		queue_flag_set_unlocked(QUEUE_FLAG_DISCARD, new->rq);
427
		blk_queue_max_discard_sectors(new->rq, UINT_MAX);
428
	}
429 430 431

	gd->queue = new->rq;

432 433 434 435
	/* Create processing workqueue */
	new->wq = alloc_workqueue("%s%d", 0, 0,
				  tr->name, new->mtd->index);
	if (!new->wq)
436
		goto error4;
437 438
	INIT_WORK(&new->work, mtd_blktrans_work);

L
Linus Torvalds 已提交
439 440 441
	if (new->readonly)
		set_disk_ro(gd, 1);

442
	device_add_disk(&new->mtd->dev, gd);
443

444 445
	if (new->disk_attributes) {
		ret = sysfs_create_group(&disk_to_dev(gd)->kobj,
446
					new->disk_attributes);
447 448
		WARN_ON(ret);
	}
L
Linus Torvalds 已提交
449
	return 0;
450 451 452 453 454 455 456 457
error4:
	blk_cleanup_queue(new->rq);
error3:
	put_disk(new->disk);
error2:
	list_del(&new->list);
error1:
	return ret;
L
Linus Torvalds 已提交
458 459 460 461
}

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

J
Jean Delvare 已提交
464
	if (mutex_trylock(&mtd_table_mutex)) {
I
Ingo Molnar 已提交
465
		mutex_unlock(&mtd_table_mutex);
L
Linus Torvalds 已提交
466 467 468
		BUG();
	}

469 470 471 472
	if (old->disk_attributes)
		sysfs_remove_group(&disk_to_dev(old->disk)->kobj,
						old->disk_attributes);

473 474 475
	/* Stop new requests to arrive */
	del_gendisk(old->disk);

476 477
	/* Stop workqueue. This will perform any pending request. */
	destroy_workqueue(old->wq);
478

M
Maxim Levitsky 已提交
479 480 481 482 483 484
	/* 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);

485 486
	/* 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 已提交
487
	mutex_lock(&old->lock);
488 489 490 491
	if (old->open) {
		if (old->tr->release)
			old->tr->release(old);
		__put_mtd_device(old->mtd);
M
Maxim Levitsky 已提交
492 493 494 495 496 497
	}

	old->mtd = NULL;

	mutex_unlock(&old->lock);
	blktrans_dev_put(old);
L
Linus Torvalds 已提交
498 499 500 501 502
	return 0;
}

static void blktrans_notify_remove(struct mtd_info *mtd)
{
503 504
	struct mtd_blktrans_ops *tr;
	struct mtd_blktrans_dev *dev, *next;
L
Linus Torvalds 已提交
505

506 507
	list_for_each_entry(tr, &blktrans_majors, list)
		list_for_each_entry_safe(dev, next, &tr->devs, list)
L
Linus Torvalds 已提交
508 509 510 511 512 513
			if (dev->mtd == mtd)
				tr->remove_dev(dev);
}

static void blktrans_notify_add(struct mtd_info *mtd)
{
514
	struct mtd_blktrans_ops *tr;
L
Linus Torvalds 已提交
515 516 517 518

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

519
	list_for_each_entry(tr, &blktrans_majors, list)
L
Linus Torvalds 已提交
520 521 522 523 524 525 526
		tr->add_mtd(tr, mtd);
}

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

L
Linus Torvalds 已提交
528 529
int register_mtd_blktrans(struct mtd_blktrans_ops *tr)
{
530 531
	struct mtd_info *mtd;
	int ret;
L
Linus Torvalds 已提交
532

533
	/* Register the notifier if/when the first device type is
L
Linus Torvalds 已提交
534 535 536 537 538 539
	   registered, to prevent the link/init ordering from fucking
	   us over. */
	if (!blktrans_notifier.list.next)
		register_mtd_user(&blktrans_notifier);


I
Ingo Molnar 已提交
540
	mutex_lock(&mtd_table_mutex);
L
Linus Torvalds 已提交
541 542

	ret = register_blkdev(tr->major, tr->name);
543
	if (ret < 0) {
L
Linus Torvalds 已提交
544 545
		printk(KERN_WARNING "Unable to register %s block device on major %d: %d\n",
		       tr->name, tr->major, ret);
I
Ingo Molnar 已提交
546
		mutex_unlock(&mtd_table_mutex);
L
Linus Torvalds 已提交
547 548
		return ret;
	}
549

550 551 552
	if (ret)
		tr->major = ret;

553
	tr->blkshift = ffs(tr->blksize) - 1;
L
Linus Torvalds 已提交
554 555 556 557

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

558 559 560
	mtd_for_each_device(mtd)
		if (mtd->type != MTD_ABSENT)
			tr->add_mtd(tr, mtd);
L
Linus Torvalds 已提交
561

I
Ingo Molnar 已提交
562
	mutex_unlock(&mtd_table_mutex);
L
Linus Torvalds 已提交
563 564 565 566 567
	return 0;
}

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

I
Ingo Molnar 已提交
570
	mutex_lock(&mtd_table_mutex);
L
Linus Torvalds 已提交
571 572 573 574

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

575
	list_for_each_entry_safe(dev, next, &tr->devs, list)
L
Linus Torvalds 已提交
576 577 578
		tr->remove_dev(dev);

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

581
	BUG_ON(!list_empty(&tr->devs));
L
Linus Torvalds 已提交
582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602
	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'");