diff options
| author | Theodore Ts'o <[email protected]> | 2006-09-27 08:50:49 +0000 |
|---|---|---|
| committer | Linus Torvalds <[email protected]> | 2006-09-27 15:26:18 +0000 |
| commit | ba52de123d454b57369f291348266d86f4b35070 (patch) | |
| tree | 3973f3f3c853b5857b6b64a027cadd4fe954e3b9 /drivers/misc/ibmasm/ibmasmfs.c | |
| parent | [PATCH] inode-diet: Move i_cdev into a union (diff) | |
| download | kernel-ba52de123d454b57369f291348266d86f4b35070.tar.gz kernel-ba52de123d454b57369f291348266d86f4b35070.zip | |
[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.
[[email protected]: cleanup]
[[email protected]: generic_fillattr() fix]
Signed-off-by: "Theodore Ts'o" <[email protected]>
Signed-off-by: Adrian Bunk <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
Diffstat (limited to 'drivers/misc/ibmasm/ibmasmfs.c')
| -rw-r--r-- | drivers/misc/ibmasm/ibmasmfs.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/misc/ibmasm/ibmasmfs.c b/drivers/misc/ibmasm/ibmasmfs.c index 0e909b617226..b99dc507de2e 100644 --- a/drivers/misc/ibmasm/ibmasmfs.c +++ b/drivers/misc/ibmasm/ibmasmfs.c @@ -147,7 +147,6 @@ static struct inode *ibmasmfs_make_inode(struct super_block *sb, int mode) if (ret) { ret->i_mode = mode; ret->i_uid = ret->i_gid = 0; - ret->i_blksize = PAGE_CACHE_SIZE; ret->i_blocks = 0; ret->i_atime = ret->i_mtime = ret->i_ctime = CURRENT_TIME; } |
