On Tue, Dec 15, 2020 at 6:37 PM Al Viro <viro@xxxxxxxxxxxxxxxxxx> wrote: > > > + if (how->resolve & RESOLVE_NONBLOCK) { > > + /* Don't bother even trying for create/truncate open */ > > + if (flags & (O_TRUNC | O_CREAT)) > > + return -EAGAIN; > > Why not O_TMPFILE here as well? Yup, I think that's just missing. Linus