blob: 64e2b379a3500c7ceeef10277f64dee6a7199e4c [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
87 /* we might get involved when memory gets low, so use PF_MEMALLOC */
Rafael J. Wysocki83144182007-07-17 04:03:35 -070088 current->flags |= PF_MEMALLOC;
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 spin_lock_irq(rq->queue_lock);
Tejun Heo1498ada2009-05-08 11:54:11 +090091
Christoph Hellwig3e67fe42007-04-22 20:40:57 +010092 while (!kthread_should_stop()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 struct mtd_blktrans_dev *dev;
Tejun Heof06d9a22009-04-23 11:05:19 +090094 int res;
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
Tejun Heo9934c8c2009-05-08 11:54:16 +090096 if (!req && !(req = blk_fetch_request(rq))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 set_current_state(TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 spin_unlock_irq(rq->queue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 schedule();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 spin_lock_irq(rq->queue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 continue;
102 }
103
104 dev = req->rq_disk->private_data;
105 tr = dev->tr;
106
107 spin_unlock_irq(rq->queue_lock);
108
Ingo Molnar48b19262006-03-31 02:29:41 -0800109 mutex_lock(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 res = do_blktrans_request(tr, dev, req);
Ingo Molnar48b19262006-03-31 02:29:41 -0800111 mutex_unlock(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
113 spin_lock_irq(rq->queue_lock);
114
Tejun Heo1498ada2009-05-08 11:54:11 +0900115 if (!__blk_end_request_cur(req, res))
116 req = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 }
Tejun Heo1498ada2009-05-08 11:54:11 +0900118
119 if (req)
120 __blk_end_request_all(req, -EIO);
121
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 spin_unlock_irq(rq->queue_lock);
123
Christoph Hellwig3e67fe42007-04-22 20:40:57 +0100124 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125}
126
127static void mtd_blktrans_request(struct request_queue *rq)
128{
129 struct mtd_blktrans_ops *tr = rq->queuedata;
Christoph Hellwig3e67fe42007-04-22 20:40:57 +0100130 wake_up_process(tr->blkcore_priv->thread);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131}
132
133
Al Viroaf0e2a02008-03-02 10:35:06 -0500134static int blktrans_open(struct block_device *bdev, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135{
Al Viroaf0e2a02008-03-02 10:35:06 -0500136 struct mtd_blktrans_dev *dev = bdev->bd_disk->private_data;
137 struct mtd_blktrans_ops *tr = dev->tr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 int ret = -ENODEV;
139
Artem Bityutskiy8022c132009-07-10 17:02:17 +0300140 if (!get_mtd_device(NULL, dev->mtd->index))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 goto out;
142
143 if (!try_module_get(tr->owner))
144 goto out_tr;
145
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000146 /* FIXME: Locking. A hot pluggable device can go away
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 (del_mtd_device can be called for it) without its module
148 being unloaded. */
149 dev->mtd->usecount++;
150
151 ret = 0;
152 if (tr->open && (ret = tr->open(dev))) {
153 dev->mtd->usecount--;
Artem Bityutskiy8022c132009-07-10 17:02:17 +0300154 put_mtd_device(dev->mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 out_tr:
156 module_put(tr->owner);
157 }
158 out:
159 return ret;
160}
161
Al Viroaf0e2a02008-03-02 10:35:06 -0500162static int blktrans_release(struct gendisk *disk, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163{
Al Viroaf0e2a02008-03-02 10:35:06 -0500164 struct mtd_blktrans_dev *dev = disk->private_data;
165 struct mtd_blktrans_ops *tr = dev->tr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 int ret = 0;
167
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 if (tr->release)
169 ret = tr->release(dev);
170
171 if (!ret) {
172 dev->mtd->usecount--;
Artem Bityutskiy8022c132009-07-10 17:02:17 +0300173 put_mtd_device(dev->mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 module_put(tr->owner);
175 }
176
177 return ret;
178}
179
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800180static int blktrans_getgeo(struct block_device *bdev, struct hd_geometry *geo)
181{
182 struct mtd_blktrans_dev *dev = bdev->bd_disk->private_data;
183
184 if (dev->tr->getgeo)
185 return dev->tr->getgeo(dev, geo);
186 return -ENOTTY;
187}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188
Al Viroaf0e2a02008-03-02 10:35:06 -0500189static int blktrans_ioctl(struct block_device *bdev, fmode_t mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 unsigned int cmd, unsigned long arg)
191{
Al Viroaf0e2a02008-03-02 10:35:06 -0500192 struct mtd_blktrans_dev *dev = bdev->bd_disk->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 struct mtd_blktrans_ops *tr = dev->tr;
194
195 switch (cmd) {
196 case BLKFLSBUF:
197 if (tr->flush)
198 return tr->flush(dev);
199 /* The core code did the work, we had nothing to do. */
200 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 default:
202 return -ENOTTY;
203 }
204}
205
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -0700206static const struct block_device_operations mtd_blktrans_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 .owner = THIS_MODULE,
Al Viroaf0e2a02008-03-02 10:35:06 -0500208 .open = blktrans_open,
209 .release = blktrans_release,
210 .locked_ioctl = blktrans_ioctl,
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800211 .getgeo = blktrans_getgeo,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212};
213
214int add_mtd_blktrans_dev(struct mtd_blktrans_dev *new)
215{
216 struct mtd_blktrans_ops *tr = new->tr;
Chris Malley71a928c2008-05-19 20:11:50 +0100217 struct mtd_blktrans_dev *d;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 int last_devnum = -1;
219 struct gendisk *gd;
220
Jean Delvareb3561ea2007-05-08 00:30:46 -0700221 if (mutex_trylock(&mtd_table_mutex)) {
Ingo Molnar48b19262006-03-31 02:29:41 -0800222 mutex_unlock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 BUG();
224 }
225
Chris Malley71a928c2008-05-19 20:11:50 +0100226 list_for_each_entry(d, &tr->devs, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 if (new->devnum == -1) {
228 /* Use first free number */
229 if (d->devnum != last_devnum+1) {
230 /* Found a free devnum. Plug it in here */
231 new->devnum = last_devnum+1;
232 list_add_tail(&new->list, &d->list);
233 goto added;
234 }
235 } else if (d->devnum == new->devnum) {
236 /* Required number taken */
237 return -EBUSY;
238 } else if (d->devnum > new->devnum) {
239 /* Required number was free */
240 list_add_tail(&new->list, &d->list);
241 goto added;
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000242 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 last_devnum = d->devnum;
244 }
245 if (new->devnum == -1)
246 new->devnum = last_devnum+1;
247
248 if ((new->devnum << tr->part_bits) > 256) {
249 return -EBUSY;
250 }
251
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 list_add_tail(&new->list, &tr->devs);
253 added:
David Woodhousece37ab42007-12-03 12:46:12 +0000254 mutex_init(&new->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 if (!tr->writesect)
256 new->readonly = 1;
257
258 gd = alloc_disk(1 << tr->part_bits);
259 if (!gd) {
260 list_del(&new->list);
261 return -ENOMEM;
262 }
263 gd->major = tr->major;
264 gd->first_minor = (new->devnum) << tr->part_bits;
265 gd->fops = &mtd_blktrans_ops;
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000266
Todd Poynor65a8de32005-07-29 20:42:07 +0100267 if (tr->part_bits)
268 if (new->devnum < 26)
269 snprintf(gd->disk_name, sizeof(gd->disk_name),
270 "%s%c", tr->name, 'a' + new->devnum);
271 else
272 snprintf(gd->disk_name, sizeof(gd->disk_name),
273 "%s%c%c", tr->name,
274 'a' - 1 + new->devnum / 26,
275 'a' + new->devnum % 26);
276 else
277 snprintf(gd->disk_name, sizeof(gd->disk_name),
278 "%s%d", tr->name, new->devnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279
280 /* 2.5 has capacity in units of 512 bytes while still
281 having BLOCK_SIZE_BITS set to 10. Just to keep us amused. */
Richard Purdie19187672006-10-27 09:09:33 +0100282 set_capacity(gd, (new->size * tr->blksize) >> 9);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283
284 gd->private_data = new;
285 new->blkcore_priv = gd;
286 gd->queue = tr->blkcore_priv->rq;
David Woodhoused6948462009-04-05 07:38:33 -0700287 gd->driverfs_dev = &new->mtd->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288
289 if (new->readonly)
290 set_disk_ro(gd, 1);
291
292 add_disk(gd);
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000293
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 return 0;
295}
296
297int del_mtd_blktrans_dev(struct mtd_blktrans_dev *old)
298{
Jean Delvareb3561ea2007-05-08 00:30:46 -0700299 if (mutex_trylock(&mtd_table_mutex)) {
Ingo Molnar48b19262006-03-31 02:29:41 -0800300 mutex_unlock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 BUG();
302 }
303
304 list_del(&old->list);
305
306 del_gendisk(old->blkcore_priv);
307 put_disk(old->blkcore_priv);
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000308
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 return 0;
310}
311
312static void blktrans_notify_remove(struct mtd_info *mtd)
313{
Chris Malley71a928c2008-05-19 20:11:50 +0100314 struct mtd_blktrans_ops *tr;
315 struct mtd_blktrans_dev *dev, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316
Chris Malley71a928c2008-05-19 20:11:50 +0100317 list_for_each_entry(tr, &blktrans_majors, list)
318 list_for_each_entry_safe(dev, next, &tr->devs, list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 if (dev->mtd == mtd)
320 tr->remove_dev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321}
322
323static void blktrans_notify_add(struct mtd_info *mtd)
324{
Chris Malley71a928c2008-05-19 20:11:50 +0100325 struct mtd_blktrans_ops *tr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326
327 if (mtd->type == MTD_ABSENT)
328 return;
329
Chris Malley71a928c2008-05-19 20:11:50 +0100330 list_for_each_entry(tr, &blktrans_majors, list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 tr->add_mtd(tr, mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332}
333
334static struct mtd_notifier blktrans_notifier = {
335 .add = blktrans_notify_add,
336 .remove = blktrans_notify_remove,
337};
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000338
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339int register_mtd_blktrans(struct mtd_blktrans_ops *tr)
340{
341 int ret, i;
342
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000343 /* Register the notifier if/when the first device type is
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 registered, to prevent the link/init ordering from fucking
345 us over. */
346 if (!blktrans_notifier.list.next)
347 register_mtd_user(&blktrans_notifier);
348
Burman Yan95b93a02006-11-15 21:10:29 +0200349 tr->blkcore_priv = kzalloc(sizeof(*tr->blkcore_priv), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 if (!tr->blkcore_priv)
351 return -ENOMEM;
352
Ingo Molnar48b19262006-03-31 02:29:41 -0800353 mutex_lock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354
355 ret = register_blkdev(tr->major, tr->name);
356 if (ret) {
357 printk(KERN_WARNING "Unable to register %s block device on major %d: %d\n",
358 tr->name, tr->major, ret);
359 kfree(tr->blkcore_priv);
Ingo Molnar48b19262006-03-31 02:29:41 -0800360 mutex_unlock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 return ret;
362 }
363 spin_lock_init(&tr->blkcore_priv->queue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364
365 tr->blkcore_priv->rq = blk_init_queue(mtd_blktrans_request, &tr->blkcore_priv->queue_lock);
366 if (!tr->blkcore_priv->rq) {
367 unregister_blkdev(tr->major, tr->name);
368 kfree(tr->blkcore_priv);
Ingo Molnar48b19262006-03-31 02:29:41 -0800369 mutex_unlock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 return -ENOMEM;
371 }
372
373 tr->blkcore_priv->rq->queuedata = tr;
Martin K. Petersene1defc42009-05-22 17:17:49 -0400374 blk_queue_logical_block_size(tr->blkcore_priv->rq, tr->blksize);
David Woodhouseeae9acd2008-08-05 18:08:25 +0100375 if (tr->discard)
Christoph Hellwig1122a262009-09-30 13:52:12 +0200376 queue_flag_set_unlocked(QUEUE_FLAG_DISCARD,
377 tr->blkcore_priv->rq);
David Woodhouseeae9acd2008-08-05 18:08:25 +0100378
Richard Purdie19187672006-10-27 09:09:33 +0100379 tr->blkshift = ffs(tr->blksize) - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380
Christoph Hellwig3e67fe42007-04-22 20:40:57 +0100381 tr->blkcore_priv->thread = kthread_run(mtd_blktrans_thread, tr,
382 "%sd", tr->name);
383 if (IS_ERR(tr->blkcore_priv->thread)) {
Marcin Slusarz2cf3a1142009-03-28 18:44:24 +0100384 int ret = PTR_ERR(tr->blkcore_priv->thread);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 blk_cleanup_queue(tr->blkcore_priv->rq);
386 unregister_blkdev(tr->major, tr->name);
387 kfree(tr->blkcore_priv);
Ingo Molnar48b19262006-03-31 02:29:41 -0800388 mutex_unlock(&mtd_table_mutex);
Marcin Slusarz2cf3a1142009-03-28 18:44:24 +0100389 return ret;
Thomas Gleixner97894cd2005-11-07 11:15:26 +0000390 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 INIT_LIST_HEAD(&tr->devs);
393 list_add(&tr->list, &blktrans_majors);
394
395 for (i=0; i<MAX_MTD_DEVICES; i++) {
396 if (mtd_table[i] && mtd_table[i]->type != MTD_ABSENT)
397 tr->add_mtd(tr, mtd_table[i]);
398 }
399
Ingo Molnar48b19262006-03-31 02:29:41 -0800400 mutex_unlock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401
402 return 0;
403}
404
405int deregister_mtd_blktrans(struct mtd_blktrans_ops *tr)
406{
Chris Malley71a928c2008-05-19 20:11:50 +0100407 struct mtd_blktrans_dev *dev, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408
Ingo Molnar48b19262006-03-31 02:29:41 -0800409 mutex_lock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
411 /* Clean up the kernel thread */
Christoph Hellwig3e67fe42007-04-22 20:40:57 +0100412 kthread_stop(tr->blkcore_priv->thread);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413
414 /* Remove it from the list of active majors */
415 list_del(&tr->list);
416
Chris Malley71a928c2008-05-19 20:11:50 +0100417 list_for_each_entry_safe(dev, next, &tr->devs, list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 tr->remove_dev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 blk_cleanup_queue(tr->blkcore_priv->rq);
421 unregister_blkdev(tr->major, tr->name);
422
Ingo Molnar48b19262006-03-31 02:29:41 -0800423 mutex_unlock(&mtd_table_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424
425 kfree(tr->blkcore_priv);
426
Eric Sesterhenn373ebfb2006-03-26 18:15:12 +0200427 BUG_ON(!list_empty(&tr->devs));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 return 0;
429}
430
431static void __exit mtd_blktrans_exit(void)
432{
433 /* No race here -- if someone's currently in register_mtd_blktrans
434 we're screwed anyway. */
435 if (blktrans_notifier.list.next)
436 unregister_mtd_user(&blktrans_notifier);
437}
438
439module_exit(mtd_blktrans_exit);
440
441EXPORT_SYMBOL_GPL(register_mtd_blktrans);
442EXPORT_SYMBOL_GPL(deregister_mtd_blktrans);
443EXPORT_SYMBOL_GPL(add_mtd_blktrans_dev);
444EXPORT_SYMBOL_GPL(del_mtd_blktrans_dev);
445
446MODULE_AUTHOR("David Woodhouse <dwmw2@infradead.org>");
447MODULE_LICENSE("GPL");
448MODULE_DESCRIPTION("Common interface to block layer for MTD 'translation layers'");