diff options
author | Yaowei Bai <bywxiaobai@163.com> | 2015-11-09 17:58:58 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2015-11-09 18:11:24 -0500 |
commit | 28f65708a57395799781f5c44863b50f99facbf2 (patch) | |
tree | c4a1e95fa1ba0a1295648e1143072827bbc6404c /fs/stat.c | |
parent | 3cc5d9a905826e835d4d4dcd0faf922ab7b9eaf9 (diff) |
fs/stat.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 <bywxiaobai@163.com>
Cc: Alexander Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/stat.c')
-rw-r--r-- | fs/stat.c | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -367,8 +367,6 @@ static long cp_new_stat64(struct kstat *stat, struct stat64 __user *statbuf) | |||
367 | INIT_STRUCT_STAT64_PADDING(tmp); | 367 | INIT_STRUCT_STAT64_PADDING(tmp); |
368 | #ifdef CONFIG_MIPS | 368 | #ifdef CONFIG_MIPS |
369 | /* mips has weird padding, so we don't get 64 bits there */ | 369 | /* mips has weird padding, so we don't get 64 bits there */ |
370 | if (!new_valid_dev(stat->dev) || !new_valid_dev(stat->rdev)) | ||
371 | return -EOVERFLOW; | ||
372 | tmp.st_dev = new_encode_dev(stat->dev); | 370 | tmp.st_dev = new_encode_dev(stat->dev); |
373 | tmp.st_rdev = new_encode_dev(stat->rdev); | 371 | tmp.st_rdev = new_encode_dev(stat->rdev); |
374 | #else | 372 | #else |