diff options
author | KaiGai Kohei <kaigai@ak.jp.nec.com> | 2006-06-24 09:15:36 +0900 |
---|---|---|
committer | David Woodhouse <dwmw2@infradead.org> | 2006-06-27 16:18:30 +0100 |
commit | 355ed4e141203fd7266ef9d90d57be0c61bd1aa4 (patch) | |
tree | 24abb6d9ee1ae95e41d7db13f90200adf734eb4e /fs/jffs2/gc.c | |
parent | 8a13695cbe4e8311b363f9bd25162904b984ca74 (diff) | |
download | op-kernel-dev-355ed4e141203fd7266ef9d90d57be0c61bd1aa4.zip op-kernel-dev-355ed4e141203fd7266ef9d90d57be0c61bd1aa4.tar.gz |
[JFFS2][XATTR] Fix memory leak with jffs2_xattr_ref
If xattr_ref is associated with an orphan inode_cache
on filesystem mounting, those xattr_refs are not
released even if this inode_cache is released.
This patch enables to call jffs2_xattr_delete_inode()
for such a irregular inode_cachde too.
Signed-off-by: KaiGai Kohei <kaigai@ak.jp.nec.com>
Signed-off-by: David Woodhouse <dwmw2@infradead.org>
Diffstat (limited to 'fs/jffs2/gc.c')
-rw-r--r-- | fs/jffs2/gc.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/jffs2/gc.c b/fs/jffs2/gc.c index f59b147..daff334 100644 --- a/fs/jffs2/gc.c +++ b/fs/jffs2/gc.c @@ -165,6 +165,7 @@ int jffs2_garbage_collect_pass(struct jffs2_sb_info *c) D1(printk(KERN_DEBUG "Skipping check of ino #%d with nlink zero\n", ic->ino)); spin_unlock(&c->inocache_lock); + jffs2_xattr_delete_inode(c, ic); continue; } switch(ic->state) { |