The patch titled W1: fix memset size error has been removed from the -mm tree. Its filename was w1-fix-memset-size-error.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: W1: fix memset size error From: Li Zefan <lizf@xxxxxxxxxxxxxx> The size arguments passing to memset is wrong. Signed-off-by Li Zefan <lizf@xxxxxxxxxxxxxx> Acked-by: Evgeniy Polyakov <johnpol@xxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/w1/masters/ds2490.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/w1/masters/ds2490.c~w1-fix-memset-size-error drivers/w1/masters/ds2490.c --- a/drivers/w1/masters/ds2490.c~w1-fix-memset-size-error +++ a/drivers/w1/masters/ds2490.c @@ -233,7 +233,7 @@ static int ds_recv_status_nodump(struct { int count, err; - memset(st, 0, sizeof(st)); + memset(st, 0, sizeof(*st)); count = 0; err = usb_bulk_msg(dev->udev, usb_rcvbulkpipe(dev->udev, dev->ep[EP_STATUS]), buf, size, &count, 100); _ Patches currently in -mm which might be from lizf@xxxxxxxxxxxxxx are origin.patch arm-fix-memset-size-error.patch git-hid.patch ia64-efi-make-full-use-of-macro-efi_md_size.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