Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d7df0007 authored by Yaowei Bai's avatar Yaowei Bai Committed by Linus Torvalds
Browse files

fs/ext2/namei.c: remove unnecessary new_valid_dev() check



new_valid_dev() always returns 1, so the !new_valid_dev() check is not
needed.  Remove it.

Signed-off-by: default avatarYaowei Bai <bywxiaobai@163.com>
Cc: Alexander Viro <viro@zeniv.linux.org.uk>
Cc: Jan Kara <jack@suse.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 57389392
Loading
Loading
Loading
Loading
+0 −3
Original line number Diff line number Diff line
@@ -143,9 +143,6 @@ static int ext2_mknod (struct inode * dir, struct dentry *dentry, umode_t mode,
	struct inode * inode;
	int err;

	if (!new_valid_dev(rdev))
		return -EINVAL;

	err = dquot_initialize(dir);
	if (err)
		return err;