diff options
author | Jeff Layton <jlayton@redhat.com> | 2012-12-11 12:10:13 -0500 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2012-12-20 18:50:07 -0500 |
commit | 14ff690c0f94cf2e37f7c448f4f09bf0b4006d62 (patch) | |
tree | 83c17757de4b9c7899360bca6328a2670cc14703 /fs/open.c | |
parent | 2771261ec5b677a38f0cd5fcfc6cefd5393787ef (diff) |
vfs: make fchmodat 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/open.c')
-rw-r--r-- | fs/open.c | 9 |
1 files changed, 7 insertions, 2 deletions
@@ -514,11 +514,16 @@ SYSCALL_DEFINE3(fchmodat, int, dfd, const char __user *, filename, umode_t, mode | |||
514 | { | 514 | { |
515 | struct path path; | 515 | struct path path; |
516 | int error; | 516 | int error; |
517 | 517 | unsigned int lookup_flags = LOOKUP_FOLLOW; | |
518 | error = user_path_at(dfd, filename, LOOKUP_FOLLOW, &path); | 518 | retry: |
519 | error = user_path_at(dfd, filename, lookup_flags, &path); | ||
519 | if (!error) { | 520 | if (!error) { |
520 | error = chmod_common(&path, mode); | 521 | error = chmod_common(&path, mode); |
521 | path_put(&path); | 522 | path_put(&path); |
523 | if (retry_estale(error, lookup_flags)) { | ||
524 | lookup_flags |= LOOKUP_REVAL; | ||
525 | goto retry; | ||
526 | } | ||
522 | } | 527 | } |
523 | return error; | 528 | return error; |
524 | } | 529 | } |