The patch titled Subject: fs-befs-linuxvfsc-remove-unnecessary-casting-fix has been removed from the -mm tree. Its filename was fs-befs-linuxvfsc-remove-unnecessary-casting-fix.patch This patch was dropped because it was folded into fs-befs-linuxvfsc-remove-unnecessary-casting.patch ------------------------------------------------------ From: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> Subject: fs-befs-linuxvfsc-remove-unnecessary-casting-fix avoid 80-col ugliness Cc: Fabian Frederick <fabf@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/befs/linuxvfs.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff -puN fs/befs/linuxvfs.c~fs-befs-linuxvfsc-remove-unnecessary-casting-fix fs/befs/linuxvfs.c --- a/fs/befs/linuxvfs.c~fs-befs-linuxvfsc-remove-unnecessary-casting-fix +++ a/fs/befs/linuxvfs.c @@ -274,8 +274,9 @@ more: static struct inode * befs_alloc_inode(struct super_block *sb) { - struct befs_inode_info *bi = kmem_cache_alloc(befs_inode_cachep, - GFP_KERNEL); + struct befs_inode_info *bi; + + bi = kmem_cache_alloc(befs_inode_cachep, GFP_KERNEL); if (!bi) return NULL; return &bi->vfs_inode; _ Patches currently in -mm which might be from akpm@xxxxxxxxxxxxxxxxxxxx are origin.patch fs-befs-linuxvfsc-remove-unnecessary-casting.patch samples-seccomp-improve-label-helper-fix.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