linux/3.3: avoid recursive calling of mtd_writev in the block2mtd driver
authorGabor Juhos <juhosg@openwrt.org>
Wed, 23 May 2012 21:05:19 +0000 (21:05 +0000)
committerGabor Juhos <juhosg@openwrt.org>
Wed, 23 May 2012 21:05:19 +0000 (21:05 +0000)
Should fix #11513. Tested with the x86/generic squashfs image within a VM.

SVN-Revision: 31841

target/linux/generic/patches-3.3/443-block2mtd-avoid-recursive-call-of-mtd_writev.patch [new file with mode: 0644]

diff --git a/target/linux/generic/patches-3.3/443-block2mtd-avoid-recursive-call-of-mtd_writev.patch b/target/linux/generic/patches-3.3/443-block2mtd-avoid-recursive-call-of-mtd_writev.patch
new file mode 100644 (file)
index 0000000..0ce9368
--- /dev/null
@@ -0,0 +1,10 @@
+--- a/drivers/mtd/devices/block2mtd.c
++++ b/drivers/mtd/devices/block2mtd.c
+@@ -388,7 +388,6 @@ static struct block2mtd_dev *add_device(
+       dev->mtd.flags = MTD_CAP_RAM;
+       dev->mtd.erase = block2mtd_erase;
+       dev->mtd.write = block2mtd_write;
+-      dev->mtd.writev = mtd_writev;
+       dev->mtd.sync = block2mtd_sync;
+       dev->mtd.read = block2mtd_read;
+       dev->mtd.priv = dev;