diff options
author | Artem Bityutskiy <dedekind@infradead.org> | 2006-10-04 12:15:21 -0400 |
---|---|---|
committer | Frank Haverkamp <haver@vnet.ibm.com> | 2007-04-27 07:24:08 -0400 |
commit | 0029da3bf430eea498eee8cef5933f9214534b8a (patch) | |
tree | 8fd93094f370e5bde1640df97764ac56d3f118ba /fs/jffs2/wbuf.c | |
parent | 801c135ce73d5df1caf3eca35b66a10824ae0707 (diff) |
JFFS2: add UBI support
This patch make JFFS2 able to work with UBI volumes via the emulated MTD
devices which are directly mapped to these volumes.
Signed-off-by: Artem Bityutskiy <dedekind@infradead.org>
Diffstat (limited to 'fs/jffs2/wbuf.c')
-rw-r--r-- | fs/jffs2/wbuf.c | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/fs/jffs2/wbuf.c b/fs/jffs2/wbuf.c index 4fac6dd53954..ab86031b3c07 100644 --- a/fs/jffs2/wbuf.c +++ b/fs/jffs2/wbuf.c | |||
@@ -1208,3 +1208,27 @@ int jffs2_nor_wbuf_flash_setup(struct jffs2_sb_info *c) { | |||
1208 | void jffs2_nor_wbuf_flash_cleanup(struct jffs2_sb_info *c) { | 1208 | void jffs2_nor_wbuf_flash_cleanup(struct jffs2_sb_info *c) { |
1209 | kfree(c->wbuf); | 1209 | kfree(c->wbuf); |
1210 | } | 1210 | } |
1211 | |||
1212 | int jffs2_ubivol_setup(struct jffs2_sb_info *c) { | ||
1213 | c->cleanmarker_size = 0; | ||
1214 | |||
1215 | if (c->mtd->writesize == 1) | ||
1216 | /* We do not need write-buffer */ | ||
1217 | return 0; | ||
1218 | |||
1219 | init_rwsem(&c->wbuf_sem); | ||
1220 | |||
1221 | c->wbuf_pagesize = c->mtd->writesize; | ||
1222 | c->wbuf_ofs = 0xFFFFFFFF; | ||
1223 | c->wbuf = kmalloc(c->wbuf_pagesize, GFP_KERNEL); | ||
1224 | if (!c->wbuf) | ||
1225 | return -ENOMEM; | ||
1226 | |||
1227 | printk(KERN_INFO "JFFS2 write-buffering enabled buffer (%d) erasesize (%d)\n", c->wbuf_pagesize, c->sector_size); | ||
1228 | |||
1229 | return 0; | ||
1230 | } | ||
1231 | |||
1232 | void jffs2_ubivol_cleanup(struct jffs2_sb_info *c) { | ||
1233 | kfree(c->wbuf); | ||
1234 | } | ||