aboutsummaryrefslogtreecommitdiffstats
path: root/fs/compat.c
diff options
context:
space:
mode:
Diffstat (limited to 'fs/compat.c')
-rw-r--r--fs/compat.c19
1 files changed, 5 insertions, 14 deletions
diff --git a/fs/compat.c b/fs/compat.c
index 3f84d5f15889..dda72e267092 100644
--- a/fs/compat.c
+++ b/fs/compat.c
@@ -204,21 +204,12 @@ asmlinkage long compat_sys_newfstatat(unsigned int dfd, char __user *filename,
204 struct compat_stat __user *statbuf, int flag) 204 struct compat_stat __user *statbuf, int flag)
205{ 205{
206 struct kstat stat; 206 struct kstat stat;
207 int error = -EINVAL; 207 int error;
208
209 if ((flag & ~AT_SYMLINK_NOFOLLOW) != 0)
210 goto out;
211
212 if (flag & AT_SYMLINK_NOFOLLOW)
213 error = vfs_lstat_fd(dfd, filename, &stat);
214 else
215 error = vfs_stat_fd(dfd, filename, &stat);
216
217 if (!error)
218 error = cp_compat_stat(&stat, statbuf);
219 208
220out: 209 error = vfs_fstatat(dfd, filename, &stat, flag);
221 return error; 210 if (error)
211 return error;
212 return cp_compat_stat(&stat, statbuf);
222} 213}
223#endif 214#endif
224 215