Re: [PATCH] zerocopy NFS updated

Keith Owens (kaos@ocs.com.au)
Sun, 14 Apr 2002 18:40:45 +1000


On Sun, 14 Apr 2002 01:19:46 -0700,
Chris Wedgwood <cw@f00f.org> wrote:
>On Sun, Apr 14, 2002 at 10:07:56AM +1000, Keith Owens wrote:
>
> Write in append mode must be atomic in the kernel. Whether a user
> space write in append mode is atomic or not depends on how many
> write() syscalls it takes to pass the data into the kernel. Each
> write() append will be atomic but multiple writes can be
> interleaved.
>
>Up to what size? I assume I cannot assume O_APPEND atomicity for
>(say) 100M writes?

Atomic on that inode, not atomic wrt other I/O to other inodes. Most
write operations use generic_file_write() which grabs the inode semaphore.
No other writes (or indeed any other I/O) can proceed on the inode
until this write completes and releases the semaphore.

I suppose that some filesystem could use its own write method that
releases the lock during the write operation. I would not trust my
data to such filesystems, they violate SUSV2.

"If the O_APPEND flag of the file status flags is set, the file
offset shall be set to the end of the file prior to each write and no
intervening file modification operation shall occur between changing
the file offset and the write operation"

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/