Subject: + drivers-memstick-core-mspro_blockc-fix-attributes-array-allocation.patch added to -mm tree To: mina86@xxxxxxxxxx,maximlevitsky@xxxxxxxxx,oakad@xxxxxxxxx,tj@xxxxxxxxxx,viro@xxxxxxxxxxxxxxxxxx From: akpm@xxxxxxxxxxxxxxxxxxxx Date: Wed, 30 Oct 2013 15:34:46 -0700 The patch titled Subject: drivers/memstick/core/mspro_block.c: fix attributes array allocation has been added to the -mm tree. Its filename is drivers-memstick-core-mspro_blockc-fix-attributes-array-allocation.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/drivers-memstick-core-mspro_blockc-fix-attributes-array-allocation.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/drivers-memstick-core-mspro_blockc-fix-attributes-array-allocation.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Michal Nazarewicz <mina86@xxxxxxxxxx> Subject: drivers/memstick/core/mspro_block.c: fix attributes array allocation attrs field of attribute_group structure is a pointer to a pointer (as in an array of pointers) rather than pointer to attribute struct (as in an array of structures), so when allocating size of the pointer sholud be used instead of the structure it is pointing to. While at it, also change the call to use kcalloc rather than kzalloc. Signed-off-by: Michal Nazarewicz <mina86@xxxxxxxxxx> Cc: Tejun Heo <tj@xxxxxxxxxx> Cc: Al Viro <viro@xxxxxxxxxxxxxxxxxx> Cc: Alex Dubov <oakad@xxxxxxxxx> Cc: Maxim Levitsky <maximlevitsky@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/memstick/core/mspro_block.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff -puN drivers/memstick/core/mspro_block.c~drivers-memstick-core-mspro_blockc-fix-attributes-array-allocation drivers/memstick/core/mspro_block.c --- a/drivers/memstick/core/mspro_block.c~drivers-memstick-core-mspro_blockc-fix-attributes-array-allocation +++ a/drivers/memstick/core/mspro_block.c @@ -1023,8 +1023,8 @@ static int mspro_block_read_attributes(s } else attr_count = attr->count; - msb->attr_group.attrs = kzalloc((attr_count + 1) - * sizeof(struct attribute), + msb->attr_group.attrs = kcalloc(attr_count + 1, + sizeof(*msb->attr_group.attrs), GFP_KERNEL); if (!msb->attr_group.attrs) { rc = -ENOMEM; _ Patches currently in -mm which might be from mina86@xxxxxxxxxx are memblock-factor-out-of-top-down-allocation.patch memblock-introduce-bottom-up-allocation-mode.patch x86-mm-factor-out-of-top-down-direct-mapping-setup.patch x86-mem-hotplug-support-initialize-page-tables-in-bottom-up.patch x86-acpi-crash-kdump-do-reserve_crashkernel-after-srat-is-parsed.patch mem-hotplug-introduce-movable_node-boot-option.patch drivers-memstick-core-mspro_blockc-fix-attributes-array-allocation.patch linux-next.patch debugging-keep-track-of-page-owners-fix-2.patch debugging-keep-track-of-page-owners-fix-2-fix-fix.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