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