mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
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>
This commit is contained in:
parent
3cc5d9a905
commit
28f65708a5
1 changed files with 0 additions and 2 deletions
|
@ -367,8 +367,6 @@ static long cp_new_stat64(struct kstat *stat, struct stat64 __user *statbuf)
|
|||
INIT_STRUCT_STAT64_PADDING(tmp);
|
||||
#ifdef CONFIG_MIPS
|
||||
/* mips has weird padding, so we don't get 64 bits there */
|
||||
if (!new_valid_dev(stat->dev) || !new_valid_dev(stat->rdev))
|
||||
return -EOVERFLOW;
|
||||
tmp.st_dev = new_encode_dev(stat->dev);
|
||||
tmp.st_rdev = new_encode_dev(stat->rdev);
|
||||
#else
|
||||
|
|
Loading…
Reference in a new issue