On Mon, 14 Jul 2014, Wang Sheng-Hui wrote: > > Should read the super_block fields, even if current implementation uses > the same constants. > > Signed-off-by: Wang Sheng-Hui <shhuiw@xxxxxxxxx> I prefer how it is already, more direct, less code. They are very unlikely to change: if they do, we can update then. If you're looking for a trivial patch to make in mm/shmem.c, I suggest removing the unused gfp arg to shmem_add_to_page_cache(). Hugh > --- > mm/shmem.c | 7 ++++--- > 1 file changed, 4 insertions(+), 3 deletions(-) > > diff --git a/mm/shmem.c b/mm/shmem.c > index 1140f49..368523b 100644 > --- a/mm/shmem.c > +++ b/mm/shmem.c > @@ -1874,10 +1874,11 @@ out: > > static int shmem_statfs(struct dentry *dentry, struct kstatfs *buf) > { > - struct shmem_sb_info *sbinfo = SHMEM_SB(dentry->d_sb); > + struct super_block *sb = dentry->d_sb; > + struct shmem_sb_info *sbinfo = SHMEM_SB(sb); > > - buf->f_type = TMPFS_MAGIC; > - buf->f_bsize = PAGE_CACHE_SIZE; > + buf->f_type = sb->s_magic; > + buf->f_bsize = sb->s_blocksize; > buf->f_namelen = NAME_MAX; > if (sbinfo->max_blocks) { > buf->f_blocks = sbinfo->max_blocks; > -- > 1.8.3.2 -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@xxxxxxxxx. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: <a href=mailto:"dont@xxxxxxxxx"> email@xxxxxxxxx </a>