diff options
author | Jeff Layton <jlayton@redhat.com> | 2012-12-11 12:10:18 -0500 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2012-12-20 18:50:11 -0500 |
commit | b729d75d19777a5dd34672020516eada43ff026f (patch) | |
tree | b5419b7700f6763a96d3e41b0e5beb193e6ca551 /fs/xattr.c | |
parent | 12f06212990400db1b54bd7b49b7f6f5f1b32469 (diff) |
vfs: make lremovexattr retry once on ESTALE error
Signed-off-by: Jeff Layton <jlayton@redhat.com>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/xattr.c')
-rw-r--r-- | fs/xattr.c | 9 |
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); | 672 | retry: |
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 | ||