aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--fs/xattr.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/fs/xattr.c b/fs/xattr.c
index 49d09e158809..4caa8efeada3 100644
--- a/fs/xattr.c
+++ b/fs/xattr.c
@@ -645,8 +645,9 @@ SYSCALL_DEFINE2(removexattr, const char __user *, pathname,
645{ 645{
646 struct path path; 646 struct path path;
647 int error; 647 int error;
648 648 unsigned int lookup_flags = LOOKUP_FOLLOW;
649 error = user_path(pathname, &path); 649retry:
650 error = user_path_at(AT_FDCWD, pathname, lookup_flags, &path);
650 if (error) 651 if (error)
651 return error; 652 return error;
652 error = mnt_want_write(path.mnt); 653 error = mnt_want_write(path.mnt);
@@ -655,6 +656,10 @@ SYSCALL_DEFINE2(removexattr, const char __user *, pathname,
655 mnt_drop_write(path.mnt); 656 mnt_drop_write(path.mnt);
656 } 657 }
657 path_put(&path); 658 path_put(&path);
659 if (retry_estale(error, lookup_flags)) {
660 lookup_flags |= LOOKUP_REVAL;
661 goto retry;
662 }
658 return error; 663 return error;
659} 664}
660 665