The patch titled
     IA64: fix memset size error
has been removed from the -mm tree.  Its filename was
     ia64-fix-memset-size-error.patch

This patch was dropped because it was merged into mainline or a subsystem tree

------------------------------------------------------
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

drivers-video-ps3fb-fix-memset-size-error.patch
w1-fix-memset-size-error.patch
arm-fix-memset-size-error.patch
powerpc-fix-memset-size-error.patch
git-ia64.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

Reply via email to