vfs: make listxattr retry once on ESTALE error

Signed-off-by: Jeff Layton <jlayton@redhat.com>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
This commit is contained in:
Jeff Layton 2012-12-11 12:10:16 -05:00 committed by Al Viro
parent 3a3e159dbf
commit 10a90cf36e

View File

@ -576,12 +576,17 @@ SYSCALL_DEFINE3(listxattr, const char __user *, pathname, char __user *, list,
{ {
struct path path; struct path path;
ssize_t error; ssize_t error;
unsigned int lookup_flags = LOOKUP_FOLLOW;
error = user_path(pathname, &path); retry:
error = user_path_at(AT_FDCWD, pathname, lookup_flags, &path);
if (error) if (error)
return error; return error;
error = listxattr(path.dentry, list, size); error = listxattr(path.dentry, list, size);
path_put(&path); path_put(&path);
if (retry_estale(error, lookup_flags)) {
lookup_flags |= LOOKUP_REVAL;
goto retry;
}
return error; return error;
} }