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

index 49d09e1588093f369d178c78fa53567f91d48a1e..4caa8efeada34730b75ff83d6f2f4937507d9837 100644 (file)
@@ -645,8 +645,9 @@ SYSCALL_DEFINE2(removexattr, const char __user *, pathname,
 {
        struct path path;
        int error;
-
-       error = user_path(pathname, &path);
+       unsigned int lookup_flags = LOOKUP_FOLLOW;
+retry:
+       error = user_path_at(AT_FDCWD, pathname, lookup_flags, &path);
        if (error)
                return error;
        error = mnt_want_write(path.mnt);
@@ -655,6 +656,10 @@ SYSCALL_DEFINE2(removexattr, 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.057499 seconds and 4 git commands to generate.