On Fri, Feb 10, 2023 at 11:27 AM Jeremy Allison <jra@xxxxxxxxx> wrote: > > 1). Client opens file with a lease. Hurrah, we think we can use splice() ! > 2). Client writes into file. > 3). Client calls SMB_FLUSH to ensure data is on disk. > 4). Client reads the data just wrtten to ensure it's good. > 5). Client overwrites the previously written data. > > Now when client issues (4), the read request, if we > zero-copy using splice() - I don't think theres a way > we get notified when the data has finally left the > system and the mapped splice memory in the buffer cache > is safe to overwrite by the write (5). Well, but we know that either: (a) the client has already gotten the read reply, and does the write afterwards. So (4) has already not just left the network stack, but actually made it all the way to the client. OR (b) (4) and (5) clearly aren't ordered on the client side (ie your "client" is not one single thread, and did an independent read and overlapping write), and the client can't rely on one happening before the other _anyway_. So if it's (b), then you might as well do the write first, because there's simply no ordering between the two. If you have a concurrent read and a concurrent write to the same file, the read result is going to be random anyway. (And yes, you can find POSIX language specifies that writes are atomic "all or nothing" operations, but Linux has actually never done that, and it's literally a nonsensical requirement and not actually true in any system: try doing a single gigabyte "write()" system call, and at a minimum you'll see the file size grow when doing "stat()" calls in another window. So it's purely "POSIX says that, but it bears no relationship to the truth") Or am I missing something? Linus