The patch titled
W1: fix memset size error
has been added to the -mm tree. Its filename is
w1-fix-memset-size-error.patch
*** Remember to use Documentation/SubmitChecklist when testing your code ***
See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find
out what to do about this
------------------------------------------------------
Subject: W1: fix memset size error
From: Li Zefan <[EMAIL PROTECTED]>
The size arguments passing to memset is wrong.
Signed-off-by Li Zefan <[EMAIL PROTECTED]>
Acked-by: Evgeniy Polyakov <[EMAIL PROTECTED]>
Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
---
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 [EMAIL PROTECTED] are
time-fix-inconsistent-function-names-in-comments.patch
git-drm.patch
arm-fix-memset-size-error.patch
ia64-fix-memset-size-error.patch
powerpc-fix-memset-size-error.patch
drivers-video-ps3fb-fix-memset-size-error.patch
w1-fix-memset-size-error.patch
-
To unsubscribe from this list: send the line "unsubscribe mm-commits" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at http://vger.kernel.org/majordomo-info.html