summaryrefslogtreecommitdiffstats
path: root/fs/ubifs/super.c
diff options
context:
space:
mode:
authorArtem Bityutskiy2010-05-23 13:16:13 +0200
committerArtem Bityutskiy2010-06-12 13:45:25 +0200
commit276de5d2a18bcdc69e6d48a4d96afc14cfef9dcb (patch)
treeea7e6a8475c8523166c4cf84f15a45b15c83268a /fs/ubifs/super.c
parentLinux 2.6.35-rc3 (diff)
downloadkernel-qcow2-linux-276de5d2a18bcdc69e6d48a4d96afc14cfef9dcb.tar.gz
kernel-qcow2-linux-276de5d2a18bcdc69e6d48a4d96afc14cfef9dcb.tar.xz
kernel-qcow2-linux-276de5d2a18bcdc69e6d48a4d96afc14cfef9dcb.zip
UBIFS: check return code
The error code from 'ubifs_rcvry_gc_commit()' was ignored, so UBIFS failed to recover and continued. Instead, we should refuse mounting the file-system. Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
Diffstat (limited to 'fs/ubifs/super.c')
-rw-r--r--fs/ubifs/super.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/fs/ubifs/super.c b/fs/ubifs/super.c
index 4d2f2157dd3f..010eea009036 100644
--- a/fs/ubifs/super.c
+++ b/fs/ubifs/super.c
@@ -1307,6 +1307,8 @@ static int mount_ubifs(struct ubifs_info *c)
if (err)
goto out_orphans;
err = ubifs_rcvry_gc_commit(c);
+ if (err)
+ goto out_orphans;
} else {
err = take_gc_lnum(c);
if (err)