X-Git-Url: http://pileus.org/git/?a=blobdiff_plain;f=fs%2Futimes.c;h=f4fb7eca10e832f5b9c4405092627b94f4a163dc;hb=c4a391b53a72d2df4ee97f96f78c1d5971b47489;hp=bb0696a41735608512963ae1648a79a9d7b0bd27;hpb=e56108d92760c89ce21c30aa02588595b9396251;p=~andy%2Flinux diff --git a/fs/utimes.c b/fs/utimes.c index bb0696a4173..f4fb7eca10e 100644 --- a/fs/utimes.c +++ b/fs/utimes.c @@ -158,13 +158,17 @@ long do_utimes(int dfd, const char __user *filename, struct timespec *times, if (!(flags & AT_SYMLINK_NOFOLLOW)) lookup_flags |= LOOKUP_FOLLOW; - +retry: error = user_path_at(dfd, filename, lookup_flags, &path); if (error) goto out; error = utimes_common(&path, times); path_put(&path); + if (retry_estale(error, lookup_flags)) { + lookup_flags |= LOOKUP_REVAL; + goto retry; + } } out: