]> git.karo-electronics.de Git - karo-tx-linux.git/commit
jffs2: fix up error handling for insert_inode_locked
authorEric Sandeen <sandeen@sandeen.net>
Tue, 6 Dec 2011 23:06:06 +0000 (17:06 -0600)
committerArtem Bityutskiy <Artem.Bityutskiy@linux.intel.com>
Thu, 8 Dec 2011 21:49:58 +0000 (23:49 +0200)
commitac3ba24a3539a9fe63cb8e23ceb55a7468d778ae
tree228ea1285565c9c10c95a53d9b9db8a70794ae54
parent573052d2e4a4a8ad2cb316341127b44d29313cc8
jffs2: fix up error handling for insert_inode_locked

after 250df6ed274d767da844a5d9f05720b804240197
(fs: protect inode->i_state with inode->i_lock), insert_inode_locked()
no longer returns the inode with I_NEW set on failure.  However,
the error handler still calls unlock_new_inode() on failure,
which does a WARN_ON if I_NEW is not set, so any failure spews
a lot of warnings.

We can just drop the unlock_new_inode() if insert_inode_locked()
fails here.

Signed-off-by: Eric Sandeen <sandeen@redhat.com>
Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@linux.intel.com>
fs/jffs2/fs.c