From 8d6ea587d94569919bd2c31c042d5b9b8734e351 Mon Sep 17 00:00:00 2001 From: David Woodhouse Date: Sat, 27 Oct 2007 10:36:44 -0400 Subject: [JFFS2] Prevent return of initialised variable in jffs2_init_acl_post() Spotted by the Coverity checker, and pointed out by Adrian Bunk. Signed-off-by: David Woodhouse --- fs/jffs2/acl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fs/jffs2/acl.c b/fs/jffs2/acl.c index 9728614b8958..77fc5838609c 100644 --- a/fs/jffs2/acl.c +++ b/fs/jffs2/acl.c @@ -372,7 +372,7 @@ int jffs2_init_acl_post(struct inode *inode) return rc; } - return rc; + return 0; } void jffs2_clear_acl(struct jffs2_inode_info *f) -- cgit v1.2.3-59-g8ed1b From 6d85d06673db74ec7ff4aa31e47b1e2e7a5af7cb Mon Sep 17 00:00:00 2001 From: David Woodhouse Date: Sat, 27 Oct 2007 10:39:48 -0400 Subject: [JFFS2] Update MAINTAINERS entry -- the jffs-dev list is dead Signed-off-by: David Woodhouse --- MAINTAINERS | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/MAINTAINERS b/MAINTAINERS index 5b454627f211..231bda28c428 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -2129,8 +2129,8 @@ S: Maintained JOURNALLING FLASH FILE SYSTEM V2 (JFFS2) P: David Woodhouse M: dwmw2@infradead.org -L: jffs-dev@axis.com -W: http://sources.redhat.com/jffs2/ +L: linux-mtd@lists.infradead.org +W: http://www.linux-mtd.infradead.org/doc/jffs2.html S: Maintained JFS FILESYSTEM -- cgit v1.2.3-59-g8ed1b