I'm not sure whether the Coda part of this patch is correct. Coda does
rely in the inode semaphore to protect from concurrency between the
userspace cachemanager that accesses the file on the host filesystem
directly and the applications that access the same file through the
/coda mount.
See for instance coda_file_write, where we also use the host inode
semaphore for protection. Only sys_stat() accesses i_size unprotected,
but that doesn't matter much in my opinion. Any application relying on
the result of sys_stat to do appending or subsequent lseeks would be
racy anyways. (and it can only be fixed correctly when we get a FS
specific getattr method).
Jan
So in my opinion, if your patch got applied, the Coda part needs to be
reverted.
#patch -R -p1 << EOF
diff -urN linux-2.5.3/fs/coda/file.c linux/fs/coda/file.c
--- linux-2.5.3/fs/coda/file.c Thu Jan 31 01:08:54 2002
+++ linux/fs/coda/file.c Thu Jan 31 01:09:47 2002
@@ -267,7 +267,7 @@
}
struct file_operations coda_file_operations = {
- llseek: generic_file_llseek,
+ llseek: remote_llseek,
read: coda_file_read,
write: coda_file_write,
mmap: coda_file_mmap,
EOF
-
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/