The patch titled Subject: fs/minix: remove unneeded cast has been removed from the -mm tree. Its filename was minix-no-need-to-cast-alloction-return-value-in-minix.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ From: Firo Yang <firogm@xxxxxxxxx> Subject: fs/minix: remove unneeded cast kmem_cache_alloc() returns void*. Signed-off-by: Firo Yang <firogm@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/minix/inode.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN fs/minix/inode.c~minix-no-need-to-cast-alloction-return-value-in-minix fs/minix/inode.c --- a/fs/minix/inode.c~minix-no-need-to-cast-alloction-return-value-in-minix +++ a/fs/minix/inode.c @@ -62,7 +62,7 @@ static struct kmem_cache * minix_inode_c static struct inode *minix_alloc_inode(struct super_block *sb) { struct minix_inode_info *ei; - ei = (struct minix_inode_info *)kmem_cache_alloc(minix_inode_cachep, GFP_KERNEL); + ei = kmem_cache_alloc(minix_inode_cachep, GFP_KERNEL); if (!ei) return NULL; return &ei->vfs_inode; _ Patches currently in -mm which might be from firogm@xxxxxxxxx are origin.patch adfs-remove-unneeded-cast.patch linux-next.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