The patch titled include/asm-frv/thread_info.h: kmalloc + memset conversion to kzalloc has been removed from the -mm tree. Its filename was include-asm-frv-thread_infoh-kmalloc-memset-conversion-to-kzalloc.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: include/asm-frv/thread_info.h: kmalloc + memset conversion to kzalloc From: Mariusz Kozlowski <m.kozlowski@xxxxxxxxxx> Signed-off-by: Mariusz Kozlowski <m.kozlowski@xxxxxxxxxx> Acked-By: David Howells <dhowells@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- include/asm-frv/thread_info.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff -puN include/asm-frv/thread_info.h~include-asm-frv-thread_infoh-kmalloc-memset-conversion-to-kzalloc include/asm-frv/thread_info.h --- a/include/asm-frv/thread_info.h~include-asm-frv-thread_infoh-kmalloc-memset-conversion-to-kzalloc +++ a/include/asm-frv/thread_info.h @@ -88,9 +88,8 @@ register struct thread_info *__current_t ({ \ struct thread_info *ret; \ \ - ret = kmalloc(THREAD_SIZE, GFP_KERNEL); \ - if (ret) \ - memset(ret, 0, THREAD_SIZE); \ + ret = kzalloc(THREAD_SIZE, GFP_KERNEL); \ + \ ret; \ }) #else _ Patches currently in -mm which might be from m.kozlowski@xxxxxxxxxx are origin.patch git-alsa.patch git-cifs.patch drivers-char-consolemapc-kmalloc-memset-conversion-to-kzalloc.patch doc-firmware_sample_firmware_classc-kmalloc-memset-conversion-to-kzalloc.patch fs-autofs4-inodec-kmalloc-memset-conversion-to-kzalloc.patch drivers-char-ip2-ip2mainc-kmalloc-memset-conversion-to-kzalloc.patch add-a-rounddown_pow_of_two-routine-to-log2hpatch-fix.patch kernel-forkc-remove-unneeded-variable-initialization-in-copy_process.patch fs-reiser4-plugin-file-cryptcompressc-kmalloc-memset-conversion-to-kzalloc.patch reiser4-kmalloc-memset-conversion-to-kzalloc.patch fs-reiser4-init_superc-kmalloc-memset-conversion-to-kzalloc.patch fs-reiser4-plugin-inode_ops_renamec-kmalloc-memset-conversion-to-kzalloc.patch fs-reiser4-ktxnmgrdc-kmalloc-memset-conversion-to-kzalloc.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