diff options
author | Theodore Ts'o <tytso@mit.edu> | 2006-09-27 04:50:49 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-09-27 11:26:18 -0400 |
commit | ba52de123d454b57369f291348266d86f4b35070 (patch) | |
tree | 3973f3f3c853b5857b6b64a027cadd4fe954e3b9 /fs/isofs | |
parent | 577c4eb09d1034d0739e3135fd2cff50588024be (diff) |
[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>
Diffstat (limited to 'fs/isofs')
-rw-r--r-- | fs/isofs/inode.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/isofs/inode.c b/fs/isofs/inode.c index 10e47897bac7..4527692f432b 100644 --- a/fs/isofs/inode.c +++ b/fs/isofs/inode.c | |||
@@ -1235,7 +1235,7 @@ static void isofs_read_inode(struct inode *inode) | |||
1235 | } | 1235 | } |
1236 | inode->i_uid = sbi->s_uid; | 1236 | inode->i_uid = sbi->s_uid; |
1237 | inode->i_gid = sbi->s_gid; | 1237 | inode->i_gid = sbi->s_gid; |
1238 | inode->i_blocks = inode->i_blksize = 0; | 1238 | inode->i_blocks = 0; |
1239 | 1239 | ||
1240 | ei->i_format_parm[0] = 0; | 1240 | ei->i_format_parm[0] = 0; |
1241 | ei->i_format_parm[1] = 0; | 1241 | ei->i_format_parm[1] = 0; |
@@ -1291,7 +1291,6 @@ static void isofs_read_inode(struct inode *inode) | |||
1291 | isonum_711 (de->ext_attr_length)); | 1291 | isonum_711 (de->ext_attr_length)); |
1292 | 1292 | ||
1293 | /* Set the number of blocks for stat() - should be done before RR */ | 1293 | /* Set the number of blocks for stat() - should be done before RR */ |
1294 | inode->i_blksize = PAGE_CACHE_SIZE; /* For stat() only */ | ||
1295 | inode->i_blocks = (inode->i_size + 511) >> 9; | 1294 | inode->i_blocks = (inode->i_size + 511) >> 9; |
1296 | 1295 | ||
1297 | /* | 1296 | /* |