aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYaowei Bai <[email protected]>2015-11-09 14:58:53 -0800
committerLinus Torvalds <[email protected]>2015-11-09 15:11:24 -0800
commit3348a172befd1b78025e30037bc383514be8d32f (patch)
treee62c04c7b4e6dde81cf290a829fb64876b5a0e53
parent4467e29f0c48d0fc3e164c39c1eccd1ce230fbe4 (diff)
fs/nilfs2/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: Yaowei Bai <[email protected]> Cc: Alexander Viro <[email protected]> Acked-by: Ryusuke Konishi <[email protected]> Signed-off-by: Andrew Morton <[email protected]> Signed-off-by: Linus Torvalds <[email protected]>
-rw-r--r--fs/nilfs2/namei.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/fs/nilfs2/namei.c b/fs/nilfs2/namei.c
index 37dd6b05b1b5..c9a1a491aa91 100644
--- a/fs/nilfs2/namei.c
+++ b/fs/nilfs2/namei.c
@@ -120,9 +120,6 @@ nilfs_mknod(struct inode *dir, struct dentry *dentry, umode_t mode, dev_t rdev)
struct nilfs_transaction_info ti;
int err;
- if (!new_valid_dev(rdev))
- return -EINVAL;
-
err = nilfs_transaction_begin(dir->i_sb, &ti, 1);
if (err)
return err;