[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <20071105032347.GB15262@verge.net.au>
Date: Mon, 5 Nov 2007 12:23:48 +0900
From: Simon Horman <horms@...ge.net.au>
To: Li Zefan <lizf@...fujitsu.com>
Cc: Andrew Morton <akpm@...ux-foundation.org>,
LKML <linux-kernel@...r.kernel.org>, tony.luck@...el.com,
linux-ia64@...r.kernel.org
Subject: Re: [PATCH 2/6] IA64: fix memset size error
On Mon, Nov 05, 2007 at 10:20:12AM +0800, Li Zefan wrote:
> Li Zefan wrote:
> > The size arguments passing to memset is wrong.
> >
> > Signed-off-by Li Zefan <lizf@...fujitsu.com>
This looks correct to me. Acked.
> >
> > ---
> > drivers/video/ps3fb.c | 2 +-
> > 1 files changed, 1 insertions(+), 1 deletions(-)
> >
>
> Sorry, please ignore the wrong patch, and here is the right one:
>
> ---
> arch/ia64/kernel/efi.c | 2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/arch/ia64/kernel/efi.c b/arch/ia64/kernel/efi.c
> index 3f7ea13..0e4ef20 100644
> --- a/arch/ia64/kernel/efi.c
> +++ b/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;
>
> --
> 1.5.3.rc7
>
> -
> To unsubscribe from this list: send the line "unsubscribe linux-ia64" in
> the body of a message to majordomo@...r.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
--
Horms
H: http://www.vergenet.net/~horms/
W: http://www.valinux.co.jp/en/
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists