The patch titled inode-diet: Eliminate i_blksize from the inode structure has been added to the -mm tree. Its filename is inode-diet-eliminate-i_blksize-and-use-a-per-superblock-default-gfs2.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: inode-diet: Eliminate i_blksize from the inode structure From: "Theodore Ts'o" <tytso@xxxxxxx> This eliminates the i_blksize field from struct inode. Filesystems that want to provide a per-inode st_blksize can do so by providing their own getattr routine instead of using the generic_fillattr() function. Note that some filesystems were providing pretty much random (and incorrect) values for i_blksize. Signed-off-by: "Theodore Ts'o" <tytso@xxxxxxx> Cc: Steven Whitehouse <swhiteho@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- fs/gfs2/inode.c | 1 - 1 file changed, 1 deletion(-) diff -puN fs/gfs2/inode.c~inode-diet-eliminate-i_blksize-and-use-a-per-superblock-default-gfs2 fs/gfs2/inode.c --- a/fs/gfs2/inode.c~inode-diet-eliminate-i_blksize-and-use-a-per-superblock-default-gfs2 +++ a/fs/gfs2/inode.c @@ -72,7 +72,6 @@ void gfs2_inode_attr_in(struct gfs2_inod inode->i_atime.tv_nsec = 0; inode->i_mtime.tv_nsec = 0; inode->i_ctime.tv_nsec = 0; - inode->i_blksize = PAGE_SIZE; inode->i_blocks = di->di_blocks << (GFS2_SB(inode)->sd_sb.sb_bsize_shift - GFS2_BASIC_BLOCK_SHIFT); _ Patches currently in -mm which might be from tytso@xxxxxxx are ext3-wrong-error-behavior.patch inode_diet-replace-inodeugeneric_ip-with-inodei_private.patch inode-diet-move-i_pipe-into-a-union.patch inode-diet-move-i_bdev-into-a-union.patch inode-diet-move-i_cdev-into-a-union.patch inode-diet-eliminate-i_blksize-and-use-a-per-superblock-default.patch inode_diet-replace-inodeugeneric_ip-with-inodei_private-gfs2.patch inode-diet-eliminate-i_blksize-and-use-a-per-superblock-default-gfs2.patch inode-diet-move-i_pipe-into-a-union-ecryptfs.patch inode-diet-eliminate-i_blksize-and-use-a-per-superblock-default-ecryptfs.patch inode_diet-replace-inodeugeneric_ip-with-inodei_private-reiser4.patch inode-diet-eliminate-i_blksize-and-use-a-per-superblock-default-reiser4.patch statistics-replace-inode-ugeneric_ip-with-i_private.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html