blob: 3e10442615d17274a8fcacc12a190dc68ca5b9fd [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
David Woodhouseeae9acd2008-08-05 18:08:25 +010035static int blktrans_discard_request(struct request_queue *q,
36 struct request *req)
37{
38 req->cmd_type = REQ_TYPE_LINUX_BLOCK;
39 req->cmd[0] = REQ_LB_OP_DISCARD;
40 return 0;
41}
42
Linus Torvalds1da177e2005-04-16 15:20:36 -070043static int do_blktrans_request(struct mtd_blktrans_ops *tr,
44 struct mtd_blktrans_dev *dev,
45 struct request *req)
46{
47 unsigned long block, nsect;
48 char *buf;
49
Tejun Heo83096eb2009-05-07 22:24:39 +090050 block = blk_rq_pos(req) << 9 >> tr->blkshift;
Tejun Heo1011c1b2009-05-07 22:24:45 +090051 nsect = blk_rq_cur_bytes(req) >> tr->blkshift;
Richard Purdie19187672006-10-27 09:09:33 +010052
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 buf = req->buffer;
54
David Woodhouseeae9acd2008-08-05 18:08:25 +010055 if (req->cmd_type == REQ_TYPE_LINUX_BLOCK &&
56 req->cmd[0] == REQ_LB_OP_DISCARD)
Tejun Heof06d9a22009-04-23 11:05:19 +090057 return tr->discard(dev, block, nsect);
David Woodhouseeae9acd2008-08-05 18:08:25 +010058
Jens Axboe4aff5e22006-08-10 08:44:47 +020059 if (!blk_fs_request(req))
Tejun Heof06d9a22009-04-23 11:05:19 +090060 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
Tejun Heo83096eb2009-05-07 22:24:39 +090062 if (blk_rq_pos(req) + blk_rq_cur_sectors(req) >
63 get_capacity(req->rq_disk))
Tejun Heof06d9a22009-04-23 11:05:19 +090064 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
66 switch(rq_data_dir(req)) {
67 case READ:
Richard Purdie19187672006-10-27 09:09:33 +010068 for (; nsect > 0; nsect--, block++, buf += tr->blksize)
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 if (tr->readsect(dev, block, buf))
Tejun Heof06d9a22009-04-23 11:05:19 +090070 return -EIO;
71 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
73 case WRITE:
74 if (!tr->writesect)
Tejun Heof06d9a22009-04-23 11:05:19 +090075 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
Richard Purdie19187672006-10-27 09:09:33 +010077 for (; nsect > 0; nsect--, block++, buf += tr->blksize)
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 if (tr->writesect(dev, block, buf))
Tejun Heof06d9a22009-04-23 11:05:19 +090079 return -EIO;
80 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
82 default:
Jeff Garzik9a292302006-10-01 12:16:00 -040083 printk(KERN_NOTICE "Unknown request %u\n", rq_data_dir(req));
Tejun Heof06d9a22009-04-23 11:05:19 +090084 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 }
86}
87
88static int mtd_blktrans_thread(void *arg)
89{
90 struct mtd_blktrans_ops *tr = arg;
91 struct request_queue *rq = tr->blkcore_priv->rq;
Tejun Heo1498ada2009-05-08 11:54:11 +090092 struct request *req = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
94 /* we might get involved when memory gets low, so use PF_MEMALLOC */
Rafael J. Wysocki83144182007-07-17 04:03:35 -070095 current->flags |= PF_MEMALLOC;
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 spin_lock_irq(rq->queue_lock);
Tejun Heo1498ada2009-05-08 11:54:11 +090098
Christoph Hellwig3e67fe42007-04-22 20:40:57 +010099 while (!kthread_should_stop()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 struct mtd_blktrans_dev *dev;
Tejun Heof06d9a22009-04-23 11:05:19 +0900101 int res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
Tejun Heo1498ada2009-05-08 11:54:11 +0900103 if (!req) {
104 req = elv_next_request(rq);
105 if (req)
106 blkdev_dequeue_request(req);
107 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 if (!req) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 set_current_state(TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 spin_unlock_irq(rq->queue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 schedule();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 spin_lock_irq(rq->queue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 continue;
114 }
115
116 dev = req->rq_disk->private_data;
117 tr = dev->tr;
118
119 spin_unlock_irq(rq->queue_lock);
120
Ingo Molnar48b19262006-03-31 02:29:41 -0800121 mutex_lock(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 res = do_blktrans_request(tr, dev, req);
Ingo Molnar48b19262006-03-31 02:29:41 -0800123 mutex_unlock(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
125 spin_lock_irq(rq->queue_lock);
126
Tejun Heo1498ada2009-05-08 11:54:11 +0900127 if (!__blk_end_request_cur(req, res))
128 req = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 }
Tejun Heo1498ada2009-05-08 11:54:11 +0900130
131 if (req)
132 __blk_end_request_all(req, -EIO);
133
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 spin_unlock_irq(rq->queue_lock);
135
Christoph Hellwig3e67fe42007-04-22 20:40:57 +0100136 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137}
138
139static void mtd_blktrans_request(struct request_queue *rq)
140{
141 struct mtd_blktrans_ops *tr = rq->queuedata;
Christoph Hellwig3e67fe42007-04-22 20:40:57 +0100142 wake_up_process(tr->blkcore_priv->thread);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143}
144
145
Al Viroaf0e2a02008-03-02 10:35:06 -0500146static int blktrans_open(struct block_device *bdev, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147{
Al Viroaf0e2a02008-03-02 10:35:06 -0500148 struct mtd_blktrans_dev *dev = bdev->bd_disk->private_data;
149 struct mtd_blktrans_ops *tr = dev->tr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 int ret = -ENODEV;
151
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 if (!try_module_get(dev->mtd->owner))
153 goto out;
154
155 if (!try_module_get(tr->owner))
156 goto out_tr;
157
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000158 /* FIXME: Locking. A hot pluggable device can go away
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 (del_mtd_device can be called for it) without its module
160 being unloaded. */
161 dev->mtd->usecount++;
162
163 ret = 0;
164 if (tr->open && (ret = tr->open(dev))) {
165 dev->mtd->usecount--;
166 module_put(dev->mtd->owner);
167 out_tr:
168 module_put(tr->owner);
169 }
170 out:
171 return ret;
172}
173
Al Viroaf0e2a02008-03-02 10:35:06 -0500174static int blktrans_release(struct gendisk *disk, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175{
Al Viroaf0e2a02008-03-02 10:35:06 -0500176 struct mtd_blktrans_dev *dev = disk->private_data;
177 struct mtd_blktrans_ops *tr = dev->tr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 int ret = 0;
179
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 if (tr->release)
181 ret = tr->release(dev);
182
183 if (!ret) {
184 dev->mtd->usecount--;
185 module_put(dev->mtd->owner);
186 module_put(tr->owner);
187 }
188
189 return ret;
190}
191
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800192static int blktrans_getgeo(struct block_device *bdev, struct hd_geometry *geo)
193{
194 struct mtd_blktrans_dev *dev = bdev->bd_disk->private_data;
195
196 if (dev->tr->getgeo)
197 return dev->tr->getgeo(dev, geo);
198 return -ENOTTY;
199}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200
Al Viroaf0e2a02008-03-02 10:35:06 -0500201static int blktrans_ioctl(struct block_device *bdev, fmode_t mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 unsigned int cmd, unsigned long arg)
203{
Al Viroaf0e2a02008-03-02 10:35:06 -0500204 struct mtd_blktrans_dev *dev = bdev->bd_disk->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 struct mtd_blktrans_ops *tr = dev->tr;
206
207 switch (cmd) {
208 case BLKFLSBUF:
209 if (tr->flush)
210 return tr->flush(dev);
211 /* The core code did the work, we had nothing to do. */
212 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 default:
214 return -ENOTTY;
215 }
216}
217
Ben Dooks8f026f72007-05-28 19:51:59 +0100218static struct block_device_operations mtd_blktrans_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 .owner = THIS_MODULE,
Al Viroaf0e2a02008-03-02 10:35:06 -0500220 .open = blktrans_open,
221 .release = blktrans_release,
222 .locked_ioctl = blktrans_ioctl,
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800223 .getgeo = blktrans_getgeo,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224};
225
226int add_mtd_blktrans_dev(struct mtd_blktrans_dev *new)
227{
228 struct mtd_blktrans_ops *tr = new->tr;
Chris Malley71a928c2008-05-19 20:11:50 +0100229 struct mtd_blktrans_dev *d;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 int last_devnum = -1;
231 struct gendisk *gd;
232
Jean Delvareb3561ea2007-05-08 00:30:46 -0700233 if (mutex_trylock(&mtd_table_mutex)) {
Ingo Molnar48b19262006-03-31 02:29:41 -0800234 mutex_unlock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 BUG();
236 }
237
Chris Malley71a928c2008-05-19 20:11:50 +0100238 list_for_each_entry(d, &tr->devs, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 if (new->devnum == -1) {
240 /* Use first free number */
241 if (d->devnum != last_devnum+1) {
242 /* Found a free devnum. Plug it in here */
243 new->devnum = last_devnum+1;
244 list_add_tail(&new->list, &d->list);
245 goto added;
246 }
247 } else if (d->devnum == new->devnum) {
248 /* Required number taken */
249 return -EBUSY;
250 } else if (d->devnum > new->devnum) {
251 /* Required number was free */
252 list_add_tail(&new->list, &d->list);
253 goto added;
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000254 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 last_devnum = d->devnum;
256 }
257 if (new->devnum == -1)
258 new->devnum = last_devnum+1;
259
260 if ((new->devnum << tr->part_bits) > 256) {
261 return -EBUSY;
262 }
263
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 list_add_tail(&new->list, &tr->devs);
265 added:
David Woodhousece37ab42007-12-03 12:46:12 +0000266 mutex_init(&new->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 if (!tr->writesect)
268 new->readonly = 1;
269
270 gd = alloc_disk(1 << tr->part_bits);
271 if (!gd) {
272 list_del(&new->list);
273 return -ENOMEM;
274 }
275 gd->major = tr->major;
276 gd->first_minor = (new->devnum) << tr->part_bits;
277 gd->fops = &mtd_blktrans_ops;
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000278
Todd Poynor65a8de32005-07-29 20:42:07 +0100279 if (tr->part_bits)
280 if (new->devnum < 26)
281 snprintf(gd->disk_name, sizeof(gd->disk_name),
282 "%s%c", tr->name, 'a' + new->devnum);
283 else
284 snprintf(gd->disk_name, sizeof(gd->disk_name),
285 "%s%c%c", tr->name,
286 'a' - 1 + new->devnum / 26,
287 'a' + new->devnum % 26);
288 else
289 snprintf(gd->disk_name, sizeof(gd->disk_name),
290 "%s%d", tr->name, new->devnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291
292 /* 2.5 has capacity in units of 512 bytes while still
293 having BLOCK_SIZE_BITS set to 10. Just to keep us amused. */
Richard Purdie19187672006-10-27 09:09:33 +0100294 set_capacity(gd, (new->size * tr->blksize) >> 9);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295
296 gd->private_data = new;
297 new->blkcore_priv = gd;
298 gd->queue = tr->blkcore_priv->rq;
David Brownell1f24b5a2009-03-26 00:42:41 -0700299 gd->driverfs_dev = new->mtd->dev.parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300
301 if (new->readonly)
302 set_disk_ro(gd, 1);
303
304 add_disk(gd);
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000305
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 return 0;
307}
308
309int del_mtd_blktrans_dev(struct mtd_blktrans_dev *old)
310{
Jean Delvareb3561ea2007-05-08 00:30:46 -0700311 if (mutex_trylock(&mtd_table_mutex)) {
Ingo Molnar48b19262006-03-31 02:29:41 -0800312 mutex_unlock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 BUG();
314 }
315
316 list_del(&old->list);
317
318 del_gendisk(old->blkcore_priv);
319 put_disk(old->blkcore_priv);
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000320
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 return 0;
322}
323
324static void blktrans_notify_remove(struct mtd_info *mtd)
325{
Chris Malley71a928c2008-05-19 20:11:50 +0100326 struct mtd_blktrans_ops *tr;
327 struct mtd_blktrans_dev *dev, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328
Chris Malley71a928c2008-05-19 20:11:50 +0100329 list_for_each_entry(tr, &blktrans_majors, list)
330 list_for_each_entry_safe(dev, next, &tr->devs, list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 if (dev->mtd == mtd)
332 tr->remove_dev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333}
334
335static void blktrans_notify_add(struct mtd_info *mtd)
336{
Chris Malley71a928c2008-05-19 20:11:50 +0100337 struct mtd_blktrans_ops *tr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
339 if (mtd->type == MTD_ABSENT)
340 return;
341
Chris Malley71a928c2008-05-19 20:11:50 +0100342 list_for_each_entry(tr, &blktrans_majors, list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 tr->add_mtd(tr, mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344}
345
346static struct mtd_notifier blktrans_notifier = {
347 .add = blktrans_notify_add,
348 .remove = blktrans_notify_remove,
349};
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000350
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351int register_mtd_blktrans(struct mtd_blktrans_ops *tr)
352{
353 int ret, i;
354
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000355 /* Register the notifier if/when the first device type is
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 registered, to prevent the link/init ordering from fucking
357 us over. */
358 if (!blktrans_notifier.list.next)
359 register_mtd_user(&blktrans_notifier);
360
Burman Yan95b93a02006-11-15 21:10:29 +0200361 tr->blkcore_priv = kzalloc(sizeof(*tr->blkcore_priv), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 if (!tr->blkcore_priv)
363 return -ENOMEM;
364
Ingo Molnar48b19262006-03-31 02:29:41 -0800365 mutex_lock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366
367 ret = register_blkdev(tr->major, tr->name);
368 if (ret) {
369 printk(KERN_WARNING "Unable to register %s block device on major %d: %d\n",
370 tr->name, tr->major, ret);
371 kfree(tr->blkcore_priv);
Ingo Molnar48b19262006-03-31 02:29:41 -0800372 mutex_unlock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 return ret;
374 }
375 spin_lock_init(&tr->blkcore_priv->queue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376
377 tr->blkcore_priv->rq = blk_init_queue(mtd_blktrans_request, &tr->blkcore_priv->queue_lock);
378 if (!tr->blkcore_priv->rq) {
379 unregister_blkdev(tr->major, tr->name);
380 kfree(tr->blkcore_priv);
Ingo Molnar48b19262006-03-31 02:29:41 -0800381 mutex_unlock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 return -ENOMEM;
383 }
384
385 tr->blkcore_priv->rq->queuedata = tr;
Richard Purdie19187672006-10-27 09:09:33 +0100386 blk_queue_hardsect_size(tr->blkcore_priv->rq, tr->blksize);
David Woodhouseeae9acd2008-08-05 18:08:25 +0100387 if (tr->discard)
388 blk_queue_set_discard(tr->blkcore_priv->rq,
389 blktrans_discard_request);
390
Richard Purdie19187672006-10-27 09:09:33 +0100391 tr->blkshift = ffs(tr->blksize) - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392
Christoph Hellwig3e67fe42007-04-22 20:40:57 +0100393 tr->blkcore_priv->thread = kthread_run(mtd_blktrans_thread, tr,
394 "%sd", tr->name);
395 if (IS_ERR(tr->blkcore_priv->thread)) {
Marcin Slusarz2cf3a1142009-03-28 18:44:24 +0100396 int ret = PTR_ERR(tr->blkcore_priv->thread);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 blk_cleanup_queue(tr->blkcore_priv->rq);
398 unregister_blkdev(tr->major, tr->name);
399 kfree(tr->blkcore_priv);
Ingo Molnar48b19262006-03-31 02:29:41 -0800400 mutex_unlock(&mtd_table_mutex);
Marcin Slusarz2cf3a1142009-03-28 18:44:24 +0100401 return ret;
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000402 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 INIT_LIST_HEAD(&tr->devs);
405 list_add(&tr->list, &blktrans_majors);
406
407 for (i=0; i<MAX_MTD_DEVICES; i++) {
408 if (mtd_table[i] && mtd_table[i]->type != MTD_ABSENT)
409 tr->add_mtd(tr, mtd_table[i]);
410 }
411
Ingo Molnar48b19262006-03-31 02:29:41 -0800412 mutex_unlock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413
414 return 0;
415}
416
417int deregister_mtd_blktrans(struct mtd_blktrans_ops *tr)
418{
Chris Malley71a928c2008-05-19 20:11:50 +0100419 struct mtd_blktrans_dev *dev, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420
Ingo Molnar48b19262006-03-31 02:29:41 -0800421 mutex_lock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422
423 /* Clean up the kernel thread */
Christoph Hellwig3e67fe42007-04-22 20:40:57 +0100424 kthread_stop(tr->blkcore_priv->thread);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425
426 /* Remove it from the list of active majors */
427 list_del(&tr->list);
428
Chris Malley71a928c2008-05-19 20:11:50 +0100429 list_for_each_entry_safe(dev, next, &tr->devs, list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 tr->remove_dev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 blk_cleanup_queue(tr->blkcore_priv->rq);
433 unregister_blkdev(tr->major, tr->name);
434
Ingo Molnar48b19262006-03-31 02:29:41 -0800435 mutex_unlock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436
437 kfree(tr->blkcore_priv);
438
Eric Sesterhenn373ebfb2006-03-26 18:15:12 +0200439 BUG_ON(!list_empty(&tr->devs));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 return 0;
441}
442
443static void __exit mtd_blktrans_exit(void)
444{
445 /* No race here -- if someone's currently in register_mtd_blktrans
446 we're screwed anyway. */
447 if (blktrans_notifier.list.next)
448 unregister_mtd_user(&blktrans_notifier);
449}
450
451module_exit(mtd_blktrans_exit);
452
453EXPORT_SYMBOL_GPL(register_mtd_blktrans);
454EXPORT_SYMBOL_GPL(deregister_mtd_blktrans);
455EXPORT_SYMBOL_GPL(add_mtd_blktrans_dev);
456EXPORT_SYMBOL_GPL(del_mtd_blktrans_dev);
457
458MODULE_AUTHOR("David Woodhouse <dwmw2@infradead.org>");
459MODULE_LICENSE("GPL");
460MODULE_DESCRIPTION("Common interface to block layer for MTD 'translation layers'");