[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
@@ -14,6 +14,7 @@
|
||||
#include <linux/namei.h>
|
||||
#include <linux/security.h>
|
||||
#include <linux/syscalls.h>
|
||||
#include <linux/pagemap.h>
|
||||
|
||||
#include <asm/uaccess.h>
|
||||
#include <asm/unistd.h>
|
||||
@@ -32,7 +33,7 @@ void generic_fillattr(struct inode *inode, struct kstat *stat)
|
||||
stat->ctime = inode->i_ctime;
|
||||
stat->size = i_size_read(inode);
|
||||
stat->blocks = inode->i_blocks;
|
||||
stat->blksize = inode->i_blksize;
|
||||
stat->blksize = (1 << inode->i_blkbits);
|
||||
}
|
||||
|
||||
EXPORT_SYMBOL(generic_fillattr);
|
||||
|
Reference in New Issue
Block a user