[PATCH] inode-diet: Eliminate i_blksize from the inode structure
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. [bunk@stusta.de: cleanup] [akpm@osdl.org: generic_fillattr() fix] Signed-off-by: "Theodore Ts'o" <tytso@mit.edu> Signed-off-by: Adrian Bunk <bunk@stusta.de> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
committed by
Linus Torvalds
parent
577c4eb09d
commit
ba52de123d
@@ -396,7 +396,7 @@ static void V1_minix_read_inode(struct inode * inode)
|
||||
inode->i_mtime.tv_nsec = 0;
|
||||
inode->i_atime.tv_nsec = 0;
|
||||
inode->i_ctime.tv_nsec = 0;
|
||||
inode->i_blocks = inode->i_blksize = 0;
|
||||
inode->i_blocks = 0;
|
||||
for (i = 0; i < 9; i++)
|
||||
minix_inode->u.i1_data[i] = raw_inode->i_zone[i];
|
||||
minix_set_inode(inode, old_decode_dev(raw_inode->i_zone[0]));
|
||||
@@ -429,7 +429,7 @@ static void V2_minix_read_inode(struct inode * inode)
|
||||
inode->i_mtime.tv_nsec = 0;
|
||||
inode->i_atime.tv_nsec = 0;
|
||||
inode->i_ctime.tv_nsec = 0;
|
||||
inode->i_blocks = inode->i_blksize = 0;
|
||||
inode->i_blocks = 0;
|
||||
for (i = 0; i < 10; i++)
|
||||
minix_inode->u.i2_data[i] = raw_inode->i_zone[i];
|
||||
minix_set_inode(inode, old_decode_dev(raw_inode->i_zone[0]));
|
||||
|
Reference in New Issue
Block a user