The patch titled Subject: fs/fat: remove unnecessary defintion has been added to the -mm tree. Its filename is fs-fat-remove-unnecessary-defintion.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/fs-fat-remove-unnecessary-defintion.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/fs-fat-remove-unnecessary-defintion.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Alexander Kuleshov <kuleshovmail@xxxxxxxxx> Subject: fs/fat: remove unnecessary defintion '*sb' never used, so let's remote it and pass inode->i_sb directly to the MSDOS_SB. Signed-off-by: Alexander Kuleshov <kuleshovmail@xxxxxxxxx> Acked-by: OGAWA Hirofumi <hirofumi@xxxxxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/fat/inode.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff -puN fs/fat/inode.c~fs-fat-remove-unnecessary-defintion fs/fat/inode.c --- a/fs/fat/inode.c~fs-fat-remove-unnecessary-defintion +++ a/fs/fat/inode.c @@ -1280,8 +1280,7 @@ out: static int fat_read_root(struct inode *inode) { - struct super_block *sb = inode->i_sb; - struct msdos_sb_info *sbi = MSDOS_SB(sb); + struct msdos_sb_info *sbi = MSDOS_SB(inode->i_sb); int error; MSDOS_I(inode)->i_pos = MSDOS_ROOT_INO; _ Patches currently in -mm which might be from kuleshovmail@xxxxxxxxx are origin.patch kexec-fix-a-typo-in-comment.patch fs-fat-remove-unnecessary-defintion.patch fs-fat-remove-unnecessary-includes.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html