mtd/fs/jffs2 fs.c,1.58,1.59
Artem Bityuckiy
dedekind at infradead.org
Mon Jul 18 07:21:23 EDT 2005
- Previous message: mtd/fs/jffs2 build.c, 1.73, 1.74 fs.c, 1.57, 1.58 gc.c, 1.149,
1.150 readinode.c, 1.127, 1.128 wbuf.c, 1.93, 1.94
- Next message: mtd/fs/jffs2 debug.c,1.2,1.3
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /home/cvs/mtd/fs/jffs2
In directory phoenix.infradead.org:/tmp/cvs-serv4081
Modified Files:
fs.c
Log Message:
[JFFS2] Fix slab panic
When JFFS22 is unable to read the root inode, the bad root inode object is not
freed and remains sticked in the jffs2_i slab cache. When we further try to
free the slab cache (e.g., on rmmod jffs2), slab allocator subsystem panics.
Fix this bug.
Index: fs.c
===================================================================
RCS file: /home/cvs/mtd/fs/jffs2/fs.c,v
retrieving revision 1.58
retrieving revision 1.59
diff -u -r1.58 -r1.59
--- fs.c 17 Jul 2005 12:01:42 -0000 1.58
+++ fs.c 18 Jul 2005 11:21:19 -0000 1.59
@@ -517,7 +517,7 @@
root_i = iget(sb, 1);
if (is_bad_inode(root_i)) {
D1(printk(KERN_WARNING "get root inode failed\n"));
- goto out_nodes;
+ goto out_root_i;
}
D1(printk(KERN_DEBUG "jffs2_do_fill_super(): d_alloc_root()\n"));
@@ -535,7 +535,6 @@
out_root_i:
iput(root_i);
- out_nodes:
jffs2_free_ino_caches(c);
jffs2_free_raw_node_refs(c);
if (c->mtd->flags & MTD_NO_VIRTBLOCKS)
- Previous message: mtd/fs/jffs2 build.c, 1.73, 1.74 fs.c, 1.57, 1.58 gc.c, 1.149,
1.150 readinode.c, 1.127, 1.128 wbuf.c, 1.93, 1.94
- Next message: mtd/fs/jffs2 debug.c,1.2,1.3
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the linux-mtd-cvs
mailing list