Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c6ee9206 authored by Jeff Layton's avatar Jeff Layton Committed by Al Viro
Browse files

vfs: make do_rmdir retry once on ESTALE errors

parent 9e790bd6
Loading
Loading
Loading
Loading
+7 −2
Original line number Diff line number Diff line
@@ -3339,8 +3339,9 @@ static long do_rmdir(int dfd, const char __user *pathname)
	struct filename *name;
	struct dentry *dentry;
	struct nameidata nd;

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

@@ -3382,6 +3383,10 @@ static long do_rmdir(int dfd, const char __user *pathname)
exit1:
	path_put(&nd.path);
	putname(name);
	if (retry_estale(error, lookup_flags)) {
		lookup_flags |= LOOKUP_REVAL;
		goto retry;
	}
	return error;
}