The patch titled fs: use kmem_cache_zalloc instead has been removed from the -mm tree. Its filename was fs-use-kmem_cache_zalloc-instead.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: fs: use kmem_cache_zalloc instead From: Denis Cheng <crquan@xxxxxxxxx> Signed-off-by: Denis Cheng <crquan@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/file_table.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff -puN fs/file_table.c~fs-use-kmem_cache_zalloc-instead fs/file_table.c --- a/fs/file_table.c~fs-use-kmem_cache_zalloc-instead +++ a/fs/file_table.c @@ -102,12 +102,11 @@ struct file *get_empty_filp(void) goto over; } - f = kmem_cache_alloc(filp_cachep, GFP_KERNEL); + f = kmem_cache_zalloc(filp_cachep, GFP_KERNEL); if (f == NULL) goto fail; percpu_counter_inc(&nr_files); - memset(f, 0, sizeof(*f)); if (security_file_alloc(f)) goto fail_sec; _ Patches currently in -mm which might be from crquan@xxxxxxxxx are origin.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