diff options
author | Jeff Layton <jlayton@redhat.com> | 2012-12-11 12:10:16 -0500 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2012-12-20 18:50:09 -0500 |
commit | 3a3e159dbfe405517584b09bbcefd72115d93342 (patch) | |
tree | e3f4873b966e90dd0ab28482f17958f7c53f9246 | |
parent | 60e66b48ca20819d97ec4851007accc0b013985a (diff) |
vfs: make lgetxattr retry once on ESTALE
Signed-off-by: Jeff Layton <jlayton@redhat.com>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
-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 24833de649f8..c127d57bf655 100644 --- a/fs/xattr.c +++ b/fs/xattr.c | |||
@@ -505,12 +505,17 @@ SYSCALL_DEFINE4(lgetxattr, const char __user *, pathname, | |||
505 | { | 505 | { |
506 | struct path path; | 506 | struct path path; |
507 | ssize_t error; | 507 | ssize_t error; |
508 | 508 | unsigned int lookup_flags = 0; | |
509 | error = user_lpath(pathname, &path); | 509 | retry: |
510 | error = user_path_at(AT_FDCWD, pathname, lookup_flags, &path); | ||
510 | if (error) | 511 | if (error) |
511 | return error; | 512 | return error; |
512 | error = getxattr(path.dentry, name, value, size); | 513 | error = getxattr(path.dentry, name, value, size); |
513 | path_put(&path); | 514 | path_put(&path); |
515 | if (retry_estale(error, lookup_flags)) { | ||
516 | lookup_flags |= LOOKUP_REVAL; | ||
517 | goto retry; | ||
518 | } | ||
514 | return error; | 519 | return error; |
515 | } | 520 | } |
516 | 521 | ||