The patch titled Subject: fs/efs: femove unneeded cast has been added to the -mm tree. Its filename is efs-remove-unneeded-cast.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/efs-remove-unneeded-cast.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/efs-remove-unneeded-cast.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: Firo Yang <firogm@xxxxxxxxx> Subject: fs/efs: femove unneeded cast kmem_cache_alloc() returns void*. Signed-off-by: Firo Yang <firogm@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/efs/super.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN fs/efs/super.c~efs-remove-unneeded-cast fs/efs/super.c --- a/fs/efs/super.c~efs-remove-unneeded-cast +++ a/fs/efs/super.c @@ -67,7 +67,7 @@ static struct kmem_cache * efs_inode_cac static struct inode *efs_alloc_inode(struct super_block *sb) { struct efs_inode_info *ei; - ei = (struct efs_inode_info *)kmem_cache_alloc(efs_inode_cachep, GFP_KERNEL); + ei = kmem_cache_alloc(efs_inode_cachep, GFP_KERNEL); if (!ei) return NULL; return &ei->vfs_inode; _ Patches currently in -mm which might be from firogm@xxxxxxxxx are minix-no-need-to-cast-alloction-return-value-in-minix.patch efs-remove-unneeded-cast.patch adfs-remove-unneeded-cast.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