[PATCH] tmpfs 6/7 write i_size_write

From: Hugh Dickins
Date: Wed Oct 15 2003 - 13:27:31 EST


mm/shmem.c was converted to i_size_read in -test1, and the remaining
references to a file's naked i_size are safely protected by i_sem;
but surely shmem_file_write must use i_size_write to update i_size.

--- tmpfs5/mm/shmem.c 2003-10-15 15:39:14.391867448 +0100
+++ tmpfs6/mm/shmem.c 2003-10-15 15:39:25.386196056 +0100
@@ -1239,7 +1239,7 @@
pos += bytes;
buf += bytes;
if (pos > inode->i_size)
- inode->i_size = pos;
+ i_size_write(inode, pos);

flush_dcache_page(page);
set_page_dirty(page);

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