summaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
authorLuis de Bethencourt <luisbg@osg.samsung.com>2016-06-29 21:27:40 +0100
committerLuis de Bethencourt <luisbg@osg.samsung.com>2016-10-08 10:01:13 +0100
commita64998504ebd766f07cf77f41334ccd8a60297ae (patch)
tree8a9f04dfd02879f70a989a2283d31c66c81a79b2 /fs
parentf7f675406be6eb3736a8690217d7b41d60f6a1aa (diff)
downloadop-kernel-dev-a64998504ebd766f07cf77f41334ccd8a60297ae.zip
op-kernel-dev-a64998504ebd766f07cf77f41334ccd8a60297ae.tar.gz
fs: befs: check silent flag before logging error
Log error only when silent flag is not set. Fixes: dbe6460388bc ("fs/befs/linuxvfs.c: check silent flag before logging errors") Signed-off-by: Luis de Bethencourt <luisbg@osg.samsung.com> Acked-by: Salah Triki <salah.triki@gmail.com>
Diffstat (limited to 'fs')
-rw-r--r--fs/befs/linuxvfs.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/befs/linuxvfs.c b/fs/befs/linuxvfs.c
index 619b998..9272f61 100644
--- a/fs/befs/linuxvfs.c
+++ b/fs/befs/linuxvfs.c
@@ -791,7 +791,8 @@ befs_fill_super(struct super_block *sb, void *data, int silent)
*/
blocksize = sb_min_blocksize(sb, 1024);
if (!blocksize) {
- befs_error(sb, "unable to set blocksize");
+ if (!silent)
+ befs_error(sb, "unable to set blocksize");
goto unacquire_priv_sbp;
}
OpenPOWER on IntegriCloud