Jeff Layton <jlayton@xxxxxxxxxx> writes: > On Mon, 23 Apr 2012 16:38:00 -0400 > Peter Staubach <pstaubach@xxxxxxxxxxx> wrote: > >> I don't really like the idea of introducing another errno as well. It seems like too much complexity and represents complexity that no one has really justified needing. >> > > I tend to agree here. Miklos, can you elaborate a bit on what fuse > filesystems you're particularly concerned about here? Which ones return > ESTALE and under what conditions. Maybe we can try to tailor this > solution to avoid the complexity without impacting them. It is not just fuse I'm concerned about. Grep for -ESTALE, there are about 120 hits about 20 of which come from NFS. There's no guarantee that any of those ESTALE errors will go away on retry, which for an unlimited retry means a hung OS. If you limit the number of retries then in the best case it's just lots of wasted CPU cycles. And an audit would still not ensure safety against future additions of ESTALE. And a simple audit won't find things like fuse, where the error comes from outside the kernel. Fixing that is not trivial either. Turning ESTALE into some other error prevents looping but breaks the return value. Thanks, Miklos -- To unsubscribe from this list: send the line "unsubscribe linux-nfs" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html