]> Git Repo - linux.git/commitdiff
vfs: make lremovexattr retry once on ESTALE error
authorJeff Layton <[email protected]>
Tue, 11 Dec 2012 17:10:18 +0000 (12:10 -0500)
committerAl Viro <[email protected]>
Thu, 20 Dec 2012 23:50:11 +0000 (18:50 -0500)
Signed-off-by: Jeff Layton <[email protected]>
Signed-off-by: Al Viro <[email protected]>
fs/xattr.c

index 4caa8efeada34730b75ff83d6f2f4937507d9837..3377dff184042044547d42e9b123944a0ad7e96a 100644 (file)
@@ -668,8 +668,9 @@ SYSCALL_DEFINE2(lremovexattr, const char __user *, pathname,
 {
        struct path path;
        int error;
-
-       error = user_lpath(pathname, &path);
+       unsigned int lookup_flags = 0;
+retry:
+       error = user_path_at(AT_FDCWD, pathname, lookup_flags, &path);
        if (error)
                return error;
        error = mnt_want_write(path.mnt);
@@ -678,6 +679,10 @@ SYSCALL_DEFINE2(lremovexattr, const char __user *, pathname,
                mnt_drop_write(path.mnt);
        }
        path_put(&path);
+       if (retry_estale(error, lookup_flags)) {
+               lookup_flags |= LOOKUP_REVAL;
+               goto retry;
+       }
        return error;
 }
 
This page took 0.056373 seconds and 4 git commands to generate.