aboutsummaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
authorJeff Layton <jlayton@redhat.com>2012-12-11 12:10:17 -0500
committerAl Viro <viro@zeniv.linux.org.uk>2012-12-20 18:50:10 -0500
commit12f06212990400db1b54bd7b49b7f6f5f1b32469 (patch)
tree5827504989d57e2f31613aac63f46d2e2781a964 /fs
parentbd9bbc9842bde1b14046cdbda1153f0d49061135 (diff)
vfs: make removexattr retry once on ESTALE
Signed-off-by: Jeff Layton <jlayton@redhat.com> Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs')
-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