aboutsummaryrefslogtreecommitdiffstats
path: root/fs/xattr.c
diff options
context:
space:
mode:
Diffstat (limited to 'fs/xattr.c')
-rw-r--r--fs/xattr.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/fs/xattr.c b/fs/xattr.c
index 4caa8efeada3..3377dff18404 100644
--- a/fs/xattr.c
+++ b/fs/xattr.c
@@ -668,8 +668,9 @@ SYSCALL_DEFINE2(lremovexattr, const char __user *, pathname,
668{ 668{
669 struct path path; 669 struct path path;
670 int error; 670 int error;
671 671 unsigned int lookup_flags = 0;
672 error = user_lpath(pathname, &path); 672retry:
673 error = user_path_at(AT_FDCWD, pathname, lookup_flags, &path);
673 if (error) 674 if (error)
674 return error; 675 return error;
675 error = mnt_want_write(path.mnt); 676 error = mnt_want_write(path.mnt);
@@ -678,6 +679,10 @@ SYSCALL_DEFINE2(lremovexattr, const char __user *, pathname,
678 mnt_drop_write(path.mnt); 679 mnt_drop_write(path.mnt);
679 } 680 }
680 path_put(&path); 681 path_put(&path);
682 if (retry_estale(error, lookup_flags)) {
683 lookup_flags |= LOOKUP_REVAL;
684 goto retry;
685 }
681 return error; 686 return error;
682} 687}
683 688