blob: c82e09bbc5fd0c31ddf5919db4d645462b984763 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * (C) 2003 David Woodhouse <dwmw2@infradead.org>
3 *
4 * Interface to Linux 2.5 block layer for MTD 'translation layers'.
5 *
6 */
7
8#include <linux/kernel.h>
9#include <linux/slab.h>
10#include <linux/module.h>
11#include <linux/list.h>
12#include <linux/fs.h>
13#include <linux/mtd/blktrans.h>
14#include <linux/mtd/mtd.h>
15#include <linux/blkdev.h>
16#include <linux/blkpg.h>
Rafael J. Wysocki83144182007-07-17 04:03:35 -070017#include <linux/freezer.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/spinlock.h>
19#include <linux/hdreg.h>
20#include <linux/init.h>
Ingo Molnar48b19262006-03-31 02:29:41 -080021#include <linux/mutex.h>
Eric W. Biederman99f9b242007-04-19 01:58:33 -060022#include <linux/kthread.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <asm/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
Ben Dooks356d70f2007-05-28 20:28:34 +010025#include "mtdcore.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
Ben Dooks356d70f2007-05-28 20:28:34 +010027static LIST_HEAD(blktrans_majors);
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
29struct mtd_blkcore_priv {
Christoph Hellwig3e67fe42007-04-22 20:40:57 +010030 struct task_struct *thread;
Linus Torvalds1da177e2005-04-16 15:20:36 -070031 struct request_queue *rq;
32 spinlock_t queue_lock;
33};
34
35static int do_blktrans_request(struct mtd_blktrans_ops *tr,
36 struct mtd_blktrans_dev *dev,
37 struct request *req)
38{
39 unsigned long block, nsect;
40 char *buf;
41
Tejun Heo83096eb2009-05-07 22:24:39 +090042 block = blk_rq_pos(req) << 9 >> tr->blkshift;
Tejun Heo1011c1b2009-05-07 22:24:45 +090043 nsect = blk_rq_cur_bytes(req) >> tr->blkshift;
Richard Purdie19187672006-10-27 09:09:33 +010044
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 buf = req->buffer;
46
Jens Axboe4aff5e22006-08-10 08:44:47 +020047 if (!blk_fs_request(req))
Tejun Heof06d9a22009-04-23 11:05:19 +090048 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
Tejun Heo83096eb2009-05-07 22:24:39 +090050 if (blk_rq_pos(req) + blk_rq_cur_sectors(req) >
51 get_capacity(req->rq_disk))
Tejun Heof06d9a22009-04-23 11:05:19 +090052 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
Christoph Hellwig1122a262009-09-30 13:52:12 +020054 if (blk_discard_rq(req))
55 return tr->discard(dev, block, nsect);
56
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 switch(rq_data_dir(req)) {
58 case READ:
Richard Purdie19187672006-10-27 09:09:33 +010059 for (; nsect > 0; nsect--, block++, buf += tr->blksize)
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 if (tr->readsect(dev, block, buf))
Tejun Heof06d9a22009-04-23 11:05:19 +090061 return -EIO;
Ilya Loginov2d4dc892009-11-26 09:16:19 +010062 rq_flush_dcache_pages(req);
Tejun Heof06d9a22009-04-23 11:05:19 +090063 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
65 case WRITE:
66 if (!tr->writesect)
Tejun Heof06d9a22009-04-23 11:05:19 +090067 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
Ilya Loginov2d4dc892009-11-26 09:16:19 +010069 rq_flush_dcache_pages(req);
Richard Purdie19187672006-10-27 09:09:33 +010070 for (; nsect > 0; nsect--, block++, buf += tr->blksize)
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 if (tr->writesect(dev, block, buf))
Tejun Heof06d9a22009-04-23 11:05:19 +090072 return -EIO;
73 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
75 default:
Jeff Garzik9a292302006-10-01 12:16:00 -040076 printk(KERN_NOTICE "Unknown request %u\n", rq_data_dir(req));
Tejun Heof06d9a22009-04-23 11:05:19 +090077 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 }
79}
80
81static int mtd_blktrans_thread(void *arg)
82{
83 struct mtd_blktrans_ops *tr = arg;
84 struct request_queue *rq = tr->blkcore_priv->rq;
Tejun Heo1498ada2009-05-08 11:54:11 +090085 struct request *req = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 spin_lock_irq(rq->queue_lock);
Tejun Heo1498ada2009-05-08 11:54:11 +090088
Christoph Hellwig3e67fe42007-04-22 20:40:57 +010089 while (!kthread_should_stop()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 struct mtd_blktrans_dev *dev;
Tejun Heof06d9a22009-04-23 11:05:19 +090091 int res;
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
Tejun Heo9934c8c2009-05-08 11:54:16 +090093 if (!req && !(req = blk_fetch_request(rq))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 set_current_state(TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 spin_unlock_irq(rq->queue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 schedule();
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 spin_lock_irq(rq->queue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 continue;
99 }
100
101 dev = req->rq_disk->private_data;
102 tr = dev->tr;
103
104 spin_unlock_irq(rq->queue_lock);
105
Ingo Molnar48b19262006-03-31 02:29:41 -0800106 mutex_lock(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 res = do_blktrans_request(tr, dev, req);
Ingo Molnar48b19262006-03-31 02:29:41 -0800108 mutex_unlock(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
110 spin_lock_irq(rq->queue_lock);
111
Tejun Heo1498ada2009-05-08 11:54:11 +0900112 if (!__blk_end_request_cur(req, res))
113 req = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 }
Tejun Heo1498ada2009-05-08 11:54:11 +0900115
116 if (req)
117 __blk_end_request_all(req, -EIO);
118
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 spin_unlock_irq(rq->queue_lock);
120
Christoph Hellwig3e67fe42007-04-22 20:40:57 +0100121 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122}
123
124static void mtd_blktrans_request(struct request_queue *rq)
125{
126 struct mtd_blktrans_ops *tr = rq->queuedata;
Christoph Hellwig3e67fe42007-04-22 20:40:57 +0100127 wake_up_process(tr->blkcore_priv->thread);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128}
129
130
Al Viroaf0e2a02008-03-02 10:35:06 -0500131static int blktrans_open(struct block_device *bdev, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132{
Al Viroaf0e2a02008-03-02 10:35:06 -0500133 struct mtd_blktrans_dev *dev = bdev->bd_disk->private_data;
134 struct mtd_blktrans_ops *tr = dev->tr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 int ret = -ENODEV;
136
Artem Bityutskiy8022c132009-07-10 17:02:17 +0300137 if (!get_mtd_device(NULL, dev->mtd->index))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 goto out;
139
140 if (!try_module_get(tr->owner))
141 goto out_tr;
142
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000143 /* FIXME: Locking. A hot pluggable device can go away
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 (del_mtd_device can be called for it) without its module
145 being unloaded. */
146 dev->mtd->usecount++;
147
148 ret = 0;
149 if (tr->open && (ret = tr->open(dev))) {
150 dev->mtd->usecount--;
Artem Bityutskiy8022c132009-07-10 17:02:17 +0300151 put_mtd_device(dev->mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 out_tr:
153 module_put(tr->owner);
154 }
155 out:
156 return ret;
157}
158
Al Viroaf0e2a02008-03-02 10:35:06 -0500159static int blktrans_release(struct gendisk *disk, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160{
Al Viroaf0e2a02008-03-02 10:35:06 -0500161 struct mtd_blktrans_dev *dev = disk->private_data;
162 struct mtd_blktrans_ops *tr = dev->tr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 int ret = 0;
164
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 if (tr->release)
166 ret = tr->release(dev);
167
168 if (!ret) {
169 dev->mtd->usecount--;
Artem Bityutskiy8022c132009-07-10 17:02:17 +0300170 put_mtd_device(dev->mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 module_put(tr->owner);
172 }
173
174 return ret;
175}
176
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800177static int blktrans_getgeo(struct block_device *bdev, struct hd_geometry *geo)
178{
179 struct mtd_blktrans_dev *dev = bdev->bd_disk->private_data;
180
181 if (dev->tr->getgeo)
182 return dev->tr->getgeo(dev, geo);
183 return -ENOTTY;
184}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
Al Viroaf0e2a02008-03-02 10:35:06 -0500186static int blktrans_ioctl(struct block_device *bdev, fmode_t mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 unsigned int cmd, unsigned long arg)
188{
Al Viroaf0e2a02008-03-02 10:35:06 -0500189 struct mtd_blktrans_dev *dev = bdev->bd_disk->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 struct mtd_blktrans_ops *tr = dev->tr;
191
192 switch (cmd) {
193 case BLKFLSBUF:
194 if (tr->flush)
195 return tr->flush(dev);
196 /* The core code did the work, we had nothing to do. */
197 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 default:
199 return -ENOTTY;
200 }
201}
202
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -0700203static const struct block_device_operations mtd_blktrans_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 .owner = THIS_MODULE,
Al Viroaf0e2a02008-03-02 10:35:06 -0500205 .open = blktrans_open,
206 .release = blktrans_release,
207 .locked_ioctl = blktrans_ioctl,
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800208 .getgeo = blktrans_getgeo,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209};
210
211int add_mtd_blktrans_dev(struct mtd_blktrans_dev *new)
212{
213 struct mtd_blktrans_ops *tr = new->tr;
Chris Malley71a928c2008-05-19 20:11:50 +0100214 struct mtd_blktrans_dev *d;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 int last_devnum = -1;
216 struct gendisk *gd;
217
Jean Delvareb3561ea2007-05-08 00:30:46 -0700218 if (mutex_trylock(&mtd_table_mutex)) {
Ingo Molnar48b19262006-03-31 02:29:41 -0800219 mutex_unlock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 BUG();
221 }
222
Chris Malley71a928c2008-05-19 20:11:50 +0100223 list_for_each_entry(d, &tr->devs, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 if (new->devnum == -1) {
225 /* Use first free number */
226 if (d->devnum != last_devnum+1) {
227 /* Found a free devnum. Plug it in here */
228 new->devnum = last_devnum+1;
229 list_add_tail(&new->list, &d->list);
230 goto added;
231 }
232 } else if (d->devnum == new->devnum) {
233 /* Required number taken */
234 return -EBUSY;
235 } else if (d->devnum > new->devnum) {
236 /* Required number was free */
237 list_add_tail(&new->list, &d->list);
238 goto added;
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000239 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 last_devnum = d->devnum;
241 }
242 if (new->devnum == -1)
243 new->devnum = last_devnum+1;
244
245 if ((new->devnum << tr->part_bits) > 256) {
246 return -EBUSY;
247 }
248
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 list_add_tail(&new->list, &tr->devs);
250 added:
David Woodhousece37ab42007-12-03 12:46:12 +0000251 mutex_init(&new->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 if (!tr->writesect)
253 new->readonly = 1;
254
255 gd = alloc_disk(1 << tr->part_bits);
256 if (!gd) {
257 list_del(&new->list);
258 return -ENOMEM;
259 }
260 gd->major = tr->major;
261 gd->first_minor = (new->devnum) << tr->part_bits;
262 gd->fops = &mtd_blktrans_ops;
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000263
Todd Poynor65a8de32005-07-29 20:42:07 +0100264 if (tr->part_bits)
265 if (new->devnum < 26)
266 snprintf(gd->disk_name, sizeof(gd->disk_name),
267 "%s%c", tr->name, 'a' + new->devnum);
268 else
269 snprintf(gd->disk_name, sizeof(gd->disk_name),
270 "%s%c%c", tr->name,
271 'a' - 1 + new->devnum / 26,
272 'a' + new->devnum % 26);
273 else
274 snprintf(gd->disk_name, sizeof(gd->disk_name),
275 "%s%d", tr->name, new->devnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276
277 /* 2.5 has capacity in units of 512 bytes while still
278 having BLOCK_SIZE_BITS set to 10. Just to keep us amused. */
Richard Purdie19187672006-10-27 09:09:33 +0100279 set_capacity(gd, (new->size * tr->blksize) >> 9);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280
281 gd->private_data = new;
282 new->blkcore_priv = gd;
283 gd->queue = tr->blkcore_priv->rq;
David Woodhoused6948462009-04-05 07:38:33 -0700284 gd->driverfs_dev = &new->mtd->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285
286 if (new->readonly)
287 set_disk_ro(gd, 1);
288
289 add_disk(gd);
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000290
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 return 0;
292}
293
294int del_mtd_blktrans_dev(struct mtd_blktrans_dev *old)
295{
Jean Delvareb3561ea2007-05-08 00:30:46 -0700296 if (mutex_trylock(&mtd_table_mutex)) {
Ingo Molnar48b19262006-03-31 02:29:41 -0800297 mutex_unlock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 BUG();
299 }
300
301 list_del(&old->list);
302
303 del_gendisk(old->blkcore_priv);
304 put_disk(old->blkcore_priv);
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000305
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 return 0;
307}
308
309static void blktrans_notify_remove(struct mtd_info *mtd)
310{
Chris Malley71a928c2008-05-19 20:11:50 +0100311 struct mtd_blktrans_ops *tr;
312 struct mtd_blktrans_dev *dev, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313
Chris Malley71a928c2008-05-19 20:11:50 +0100314 list_for_each_entry(tr, &blktrans_majors, list)
315 list_for_each_entry_safe(dev, next, &tr->devs, list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 if (dev->mtd == mtd)
317 tr->remove_dev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318}
319
320static void blktrans_notify_add(struct mtd_info *mtd)
321{
Chris Malley71a928c2008-05-19 20:11:50 +0100322 struct mtd_blktrans_ops *tr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323
324 if (mtd->type == MTD_ABSENT)
325 return;
326
Chris Malley71a928c2008-05-19 20:11:50 +0100327 list_for_each_entry(tr, &blktrans_majors, list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 tr->add_mtd(tr, mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329}
330
331static struct mtd_notifier blktrans_notifier = {
332 .add = blktrans_notify_add,
333 .remove = blktrans_notify_remove,
334};
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000335
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336int register_mtd_blktrans(struct mtd_blktrans_ops *tr)
337{
338 int ret, i;
339
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000340 /* Register the notifier if/when the first device type is
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 registered, to prevent the link/init ordering from fucking
342 us over. */
343 if (!blktrans_notifier.list.next)
344 register_mtd_user(&blktrans_notifier);
345
Burman Yan95b93a02006-11-15 21:10:29 +0200346 tr->blkcore_priv = kzalloc(sizeof(*tr->blkcore_priv), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 if (!tr->blkcore_priv)
348 return -ENOMEM;
349
Ingo Molnar48b19262006-03-31 02:29:41 -0800350 mutex_lock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351
352 ret = register_blkdev(tr->major, tr->name);
353 if (ret) {
354 printk(KERN_WARNING "Unable to register %s block device on major %d: %d\n",
355 tr->name, tr->major, ret);
356 kfree(tr->blkcore_priv);
Ingo Molnar48b19262006-03-31 02:29:41 -0800357 mutex_unlock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 return ret;
359 }
360 spin_lock_init(&tr->blkcore_priv->queue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361
362 tr->blkcore_priv->rq = blk_init_queue(mtd_blktrans_request, &tr->blkcore_priv->queue_lock);
363 if (!tr->blkcore_priv->rq) {
364 unregister_blkdev(tr->major, tr->name);
365 kfree(tr->blkcore_priv);
Ingo Molnar48b19262006-03-31 02:29:41 -0800366 mutex_unlock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 return -ENOMEM;
368 }
369
370 tr->blkcore_priv->rq->queuedata = tr;
Martin K. Petersene1defc42009-05-22 17:17:49 -0400371 blk_queue_logical_block_size(tr->blkcore_priv->rq, tr->blksize);
David Woodhouseeae9acd2008-08-05 18:08:25 +0100372 if (tr->discard)
Christoph Hellwig1122a262009-09-30 13:52:12 +0200373 queue_flag_set_unlocked(QUEUE_FLAG_DISCARD,
374 tr->blkcore_priv->rq);
David Woodhouseeae9acd2008-08-05 18:08:25 +0100375
Richard Purdie19187672006-10-27 09:09:33 +0100376 tr->blkshift = ffs(tr->blksize) - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377
Christoph Hellwig3e67fe42007-04-22 20:40:57 +0100378 tr->blkcore_priv->thread = kthread_run(mtd_blktrans_thread, tr,
379 "%sd", tr->name);
380 if (IS_ERR(tr->blkcore_priv->thread)) {
hartleys6f4e1372009-10-16 12:52:53 +0000381 ret = PTR_ERR(tr->blkcore_priv->thread);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 blk_cleanup_queue(tr->blkcore_priv->rq);
383 unregister_blkdev(tr->major, tr->name);
384 kfree(tr->blkcore_priv);
Ingo Molnar48b19262006-03-31 02:29:41 -0800385 mutex_unlock(&mtd_table_mutex);
Marcin Slusarz2cf3a1142009-03-28 18:44:24 +0100386 return ret;
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000387 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 INIT_LIST_HEAD(&tr->devs);
390 list_add(&tr->list, &blktrans_majors);
391
392 for (i=0; i<MAX_MTD_DEVICES; i++) {
393 if (mtd_table[i] && mtd_table[i]->type != MTD_ABSENT)
394 tr->add_mtd(tr, mtd_table[i]);
395 }
396
Ingo Molnar48b19262006-03-31 02:29:41 -0800397 mutex_unlock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398
399 return 0;
400}
401
402int deregister_mtd_blktrans(struct mtd_blktrans_ops *tr)
403{
Chris Malley71a928c2008-05-19 20:11:50 +0100404 struct mtd_blktrans_dev *dev, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405
Ingo Molnar48b19262006-03-31 02:29:41 -0800406 mutex_lock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407
408 /* Clean up the kernel thread */
Christoph Hellwig3e67fe42007-04-22 20:40:57 +0100409 kthread_stop(tr->blkcore_priv->thread);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
411 /* Remove it from the list of active majors */
412 list_del(&tr->list);
413
Chris Malley71a928c2008-05-19 20:11:50 +0100414 list_for_each_entry_safe(dev, next, &tr->devs, list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 tr->remove_dev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 blk_cleanup_queue(tr->blkcore_priv->rq);
418 unregister_blkdev(tr->major, tr->name);
419
Ingo Molnar48b19262006-03-31 02:29:41 -0800420 mutex_unlock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421
422 kfree(tr->blkcore_priv);
423
Eric Sesterhenn373ebfb2006-03-26 18:15:12 +0200424 BUG_ON(!list_empty(&tr->devs));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 return 0;
426}
427
428static void __exit mtd_blktrans_exit(void)
429{
430 /* No race here -- if someone's currently in register_mtd_blktrans
431 we're screwed anyway. */
432 if (blktrans_notifier.list.next)
433 unregister_mtd_user(&blktrans_notifier);
434}
435
436module_exit(mtd_blktrans_exit);
437
438EXPORT_SYMBOL_GPL(register_mtd_blktrans);
439EXPORT_SYMBOL_GPL(deregister_mtd_blktrans);
440EXPORT_SYMBOL_GPL(add_mtd_blktrans_dev);
441EXPORT_SYMBOL_GPL(del_mtd_blktrans_dev);
442
443MODULE_AUTHOR("David Woodhouse <dwmw2@infradead.org>");
444MODULE_LICENSE("GPL");
445MODULE_DESCRIPTION("Common interface to block layer for MTD 'translation layers'");