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 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