The patch titled Subject: fs/befs/linuxvfs.c: move useless assignment has been removed from the -mm tree. Its filename was fs-befs-move-useless-assignment.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ From: Salah Triki <salah.triki@xxxxxxx> Subject: fs/befs/linuxvfs.c: move useless assignment Control is transfered to unacquire_none when sb->s_fs_info is equal to NULL, so the assignment to NULL is useless and it is moved above unacquire_none. Link: http://lkml.kernel.org/r/ed41da113fc693c7daa4e8813ca04cc766ddfc05.1464226521.git.salah.triki@xxxxxxx Signed-off-by: Salah Triki <salah.triki@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/befs/linuxvfs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN fs/befs/linuxvfs.c~fs-befs-move-useless-assignment fs/befs/linuxvfs.c --- a/fs/befs/linuxvfs.c~fs-befs-move-useless-assignment +++ a/fs/befs/linuxvfs.c @@ -870,9 +870,9 @@ befs_fill_super(struct super_block *sb, unacquire_priv_sbp: kfree(befs_sb->mount_opts.iocharset); kfree(sb->s_fs_info); + sb->s_fs_info = NULL; unacquire_none: - sb->s_fs_info = NULL; return ret; } _ Patches currently in -mm which might be from salah.triki@xxxxxxx are -- 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