aboutsummaryrefslogtreecommitdiffstats
path: root/fs/xattr.c
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
commitbd9bbc9842bde1b14046cdbda1153f0d49061135 (patch)
tree7dc71b051248d1789e8d0bef74ada4387dd2b76e /fs/xattr.c
parent10a90cf36efe0fca5c7719fd9b0299abd6be51aa (diff)
vfs: make llistxattr 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.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/fs/xattr.c b/fs/xattr.c
index 1dc1eac17319..49d09e158809 100644
--- a/fs/xattr.c
+++ b/fs/xattr.c
@@ -595,12 +595,17 @@ SYSCALL_DEFINE3(llistxattr, const char __user *, pathname, char __user *, list,
595{ 595{
596 struct path path; 596 struct path path;
597 ssize_t error; 597 ssize_t error;
598 598 unsigned int lookup_flags = 0;
599 error = user_lpath(pathname, &path); 599retry:
600 error = user_path_at(AT_FDCWD, pathname, lookup_flags, &path);
600 if (error) 601 if (error)
601 return error; 602 return error;
602 error = listxattr(path.dentry, list, size); 603 error = listxattr(path.dentry, list, size);
603 path_put(&path); 604 path_put(&path);
605 if (retry_estale(error, lookup_flags)) {
606 lookup_flags |= LOOKUP_REVAL;
607 goto retry;
608 }
604 return error; 609 return error;
605} 610}
606 611