The patch titled jffs: replace kmalloc+memset with kzalloc has been added to the -mm tree. Its filename is jffs-replace-kmallocmemset-with-kzalloc.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: jffs: replace kmalloc+memset with kzalloc From: Yan Burman <burman.yan@xxxxxxxxx> Replace kmalloc+memset with kzalloc Signed-off-by: Yan Burman <burman.yan@xxxxxxxxx> Cc: David Woodhouse <dwmw2@xxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- fs/jffs/intrep.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff -puN fs/jffs/intrep.c~jffs-replace-kmallocmemset-with-kzalloc fs/jffs/intrep.c --- a/fs/jffs/intrep.c~jffs-replace-kmallocmemset-with-kzalloc +++ a/fs/jffs/intrep.c @@ -592,7 +592,7 @@ jffs_add_virtual_root(struct jffs_contro D2(printk("jffs_add_virtual_root(): " "Creating a virtual root directory.\n")); - if (!(root = kmalloc(sizeof(struct jffs_file), GFP_KERNEL))) { + if (!(root = kzalloc(sizeof(struct jffs_file), GFP_KERNEL))) { return -ENOMEM; } no_jffs_file++; @@ -604,7 +604,6 @@ jffs_add_virtual_root(struct jffs_contro DJM(no_jffs_node++); memset(node, 0, sizeof(struct jffs_node)); node->ino = JFFS_MIN_INO; - memset(root, 0, sizeof(struct jffs_file)); root->ino = JFFS_MIN_INO; root->mode = S_IFDIR | S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH; _ Patches currently in -mm which might be from burman.yan@xxxxxxxxx are reiser-replace-kmallocmemset-with-kzalloc.patch nfsd-replace-kmallocmemset-with-kcalloc.patch jffs2-replace-kmallocmemset-with-kzalloc.patch affs-replace-kmallocmemset-with-kzalloc.patch ia64-replace-kmallocmemset-with-kzalloc.patch arm26-replace-kmallocmemset-with-kzalloc.patch powerpc-replace-kmallocmemset-with-kzalloc.patch m68k-replace-kmallocmemset-with-kzalloc.patch jffs-replace-kmallocmemset-with-kzalloc.patch hostap-replace-kmallocmemset-with-kzalloc.patch prism54-replace-kmallocmemset-with-kzalloc.patch ipw2200-replace-kmallocmemset-with-kcalloc.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