diff options
author | Jeff Layton <jlayton@redhat.com> | 2012-12-20 16:38:04 -0500 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2012-12-20 18:50:04 -0500 |
commit | 5d18f8133cad85ccbb7fa6fd351d75025da32504 (patch) | |
tree | 41ecbcbe72dbaba82973cac973e262459927a9df /fs | |
parent | c6ee920698301febdf10df0b57039173a1edbd43 (diff) | |
download | op-kernel-dev-5d18f8133cad85ccbb7fa6fd351d75025da32504.zip op-kernel-dev-5d18f8133cad85ccbb7fa6fd351d75025da32504.tar.gz |
vfs: make do_unlinkat retry once on ESTALE errors
Signed-off-by: Jeff Layton <jlayton@redhat.com>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/namei.c | 10 |
1 files changed, 8 insertions, 2 deletions
@@ -3440,8 +3440,9 @@ static long do_unlinkat(int dfd, const char __user *pathname) struct dentry *dentry; struct nameidata nd; struct inode *inode = NULL; - - name = user_path_parent(dfd, pathname, &nd, 0); + unsigned int lookup_flags = 0; +retry: + name = user_path_parent(dfd, pathname, &nd, lookup_flags); if (IS_ERR(name)) return PTR_ERR(name); @@ -3479,6 +3480,11 @@ exit2: exit1: path_put(&nd.path); putname(name); + if (retry_estale(error, lookup_flags)) { + lookup_flags |= LOOKUP_REVAL; + inode = NULL; + goto retry; + } return error; slashes: |