summaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
authorSalah Triki <salah.triki@acm.org>2016-07-23 22:36:41 +1000
committerLuis de Bethencourt <luisbg@osg.samsung.com>2016-10-08 10:01:09 +0100
commitc625426fb61a64427f4e12b83a6710161fd9489b (patch)
tree1022ddf51b1a33f9dda51f189ea0627b377db68e /fs
parentdceee2e230e07d25e50478dde3f0621a1381da53 (diff)
downloadop-kernel-dev-c625426fb61a64427f4e12b83a6710161fd9489b.zip
op-kernel-dev-c625426fb61a64427f4e12b83a6710161fd9489b.tar.gz
fs/befs/linuxvfs.c: remove useless pr_err in befs_fill_super()
Remove pr_err since when kzalloc fails there is a generic out of memory and stack dump. Link: http://lkml.kernel.org/r/c5a7f2d42ec0fc8465c118248e88cd221c483391.1464226521.git.salah.triki@acm.org Signed-off-by: Salah Triki <salah.triki@acm.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Diffstat (limited to 'fs')
-rw-r--r--fs/befs/linuxvfs.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/fs/befs/linuxvfs.c b/fs/befs/linuxvfs.c
index edee857..5b47b0f 100644
--- a/fs/befs/linuxvfs.c
+++ b/fs/befs/linuxvfs.c
@@ -764,11 +764,9 @@ befs_fill_super(struct super_block *sb, void *data, int silent)
save_mount_options(sb, data);
sb->s_fs_info = kzalloc(sizeof(*befs_sb), GFP_KERNEL);
- if (sb->s_fs_info == NULL) {
- pr_err("(%s): Unable to allocate memory for private "
- "portion of superblock. Bailing.\n", sb->s_id);
+ if (sb->s_fs_info == NULL)
goto unacquire_none;
- }
+
befs_sb = BEFS_SB(sb);
if (!parse_options((char *) data, &befs_sb->mount_opts)) {
OpenPOWER on IntegriCloud