1 diff -urN linux-2.6.21.1.old/drivers/mtd/devices/block2mtd.c linux-2.6.21.1.dev/drivers/mtd/devices/block2mtd.c
2 --- linux-2.6.21.1.old/drivers/mtd/devices/block2mtd.c 2007-04-27 23:49:26.000000000 +0200
3 +++ linux-2.6.21.1.dev/drivers/mtd/devices/block2mtd.c 2007-05-26 20:06:13.547923960 +0200
5 #include <linux/list.h>
6 #include <linux/init.h>
7 #include <linux/mtd/mtd.h>
8 +#include <linux/mtd/partitions.h>
9 #include <linux/buffer_head.h>
10 #include <linux/mutex.h>
11 #include <linux/mount.h>
15 /* FIXME: ensure that mtd->size % erase_size == 0 */
16 -static struct block2mtd_dev *add_device(char *devname, int erase_size)
17 +static struct block2mtd_dev *add_device(char *devname, int erase_size, char *mtdname)
19 struct block_device *bdev;
20 struct block2mtd_dev *dev;
21 + struct mtd_partition *part;
27 /* Setup the MTD structure */
28 /* make the name contain the block device in */
29 - dev->mtd.name = kmalloc(sizeof("block2mtd: ") + strlen(devname),
35 + dev->mtd.name = kmalloc(strlen(mtdname) + 1, GFP_KERNEL);
40 + strcpy(dev->mtd.name, mtdname);
42 - sprintf(dev->mtd.name, "block2mtd: %s", devname);
44 - dev->mtd.size = dev->blkdev->bd_inode->i_size & PAGE_MASK;
45 + dev->mtd.size = dev->blkdev->bd_inode->i_size & PAGE_MASK & ~(erase_size - 1);
46 dev->mtd.erasesize = erase_size;
47 dev->mtd.writesize = 1;
48 dev->mtd.type = MTD_RAM;
50 dev->mtd.read = block2mtd_read;
52 dev->mtd.owner = THIS_MODULE;
54 - if (add_mtd_device(&dev->mtd)) {
56 + part = kzalloc(sizeof(struct mtd_partition), GFP_KERNEL);
57 + part->name = dev->mtd.name;
59 + part->size = dev->mtd.size;
60 + if (add_mtd_partitions(&dev->mtd, part, 1)) {
61 /* Device didnt get added, so free the entry */
64 list_add(&dev->list, &blkmtd_device_list);
65 INFO("mtd%d: [%s] erase_size = %dKiB [%d]", dev->mtd.index,
66 - dev->mtd.name + strlen("blkmtd: "),
67 - dev->mtd.erasesize >> 10, dev->mtd.erasesize);
68 + mtdname, dev->mtd.erasesize >> 10, dev->mtd.erasesize);
74 static int block2mtd_setup2(const char *val)
76 - char buf[80 + 12]; /* 80 for device, 12 for erase size */
77 + char buf[80 + 12 + 80]; /* 80 for device, 12 for erase size, 80 for name */
82 size_t erase_size = PAGE_SIZE;
86 kill_final_newline(str);
88 - for (i = 0; i < 2; i++)
89 + for (i = 0; i < 3; i++)
90 token[i] = strsep(&str, ",");
94 parse_err("illegal erase size");
97 + if (token[2] && (strlen(token[2]) + 1 > 80))
98 + parse_err("mtd device name too long");
100 - add_device(name, erase_size);
101 + add_device(name, erase_size, token[2]);
108 module_param_call(block2mtd, block2mtd_setup, NULL, NULL, 0200);
109 -MODULE_PARM_DESC(block2mtd, "Device to use. \"block2mtd=<dev>[,<erasesize>]\"");
110 +MODULE_PARM_DESC(block2mtd, "Device to use. \"block2mtd=<dev>[,<erasesize>[,<name>]]\"");
112 static int __init block2mtd_init(void)