The patch titled
IA64: fix memset size error
has been added to the -mm tree. Its filename is
ia64-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: IA64: fix memset size error
From: Li Zefan <[EMAIL PROTECTED]>
The size arguments passing to memset is wrong.
Signed-off-by Li Zefan <[EMAIL PROTECTED]>
Cc: "Luck, Tony" <[EMAIL PROTECTED]>
Acked-by: Simon Horman <[EMAIL PROTECTED]>
Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
---
arch/ia64/kernel/efi.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff -puN arch/ia64/kernel/efi.c~ia64-fix-memset-size-error
arch/ia64/kernel/efi.c
--- a/arch/ia64/kernel/efi.c~ia64-fix-memset-size-error
+++ a/arch/ia64/kernel/efi.c
@@ -218,7 +218,7 @@ efi_gettimeofday (struct timespec *ts)
{
efi_time_t tm;
- memset(ts, 0, sizeof(ts));
+ memset(ts, 0, sizeof(*ts));
if ((*efi.get_time)(&tm, NULL) != EFI_SUCCESS)
return;
_
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