From: Al Viro Date: Mon, 29 Apr 2019 01:34:21 +0000 (-0400) Subject: [fix] get rid of checking for absent device name in vfs_get_tree() X-Git-Tag: v5.4-rc1~1145^2~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ee948837d7fa89127373c139766aacf6b02a9225;p=platform%2Fkernel%2Flinux-rpi.git [fix] get rid of checking for absent device name in vfs_get_tree() It has no business being there, it's checked by relevant ->get_tree() as it is *and* it returns the wrong error for no reason whatsoever. Fixes: f3a09c92018a "introduce fs_context methods" Signed-off-by: Al Viro --- diff --git a/fs/super.c b/fs/super.c index 583a012..2739f575 100644 --- a/fs/super.c +++ b/fs/super.c @@ -1467,11 +1467,6 @@ int vfs_get_tree(struct fs_context *fc) struct super_block *sb; int error; - if (fc->fs_type->fs_flags & FS_REQUIRES_DEV && !fc->source) { - errorf(fc, "Filesystem requires source device"); - return -ENOENT; - } - if (fc->root) return -EBUSY;