From: Kevin Winchester <kjwinchester@gmail.com>
To: Ingo Molnar <mingo@redhat.com>
Cc: linux-kernel@vger.kernel.org,
Thomas Gleixner <tglx@linutronix.de>,
yhlu.kernel@gmail.com
Subject: Re: [PATCH] x86: fix pointer type warning in arch/x86/mm/init_64.c:early_memtest
Date: Fri, 30 May 2008 21:34:53 -0300 [thread overview]
Message-ID: <48409D2D.4020207@gmail.com> (raw)
In-Reply-To: <1212106475-3297-1-git-send-email-kjwinchester@gmail.com>
Kevin Winchester wrote:
> Changed the call to find_e820_area_size to pass u64 instead of unsigned long.
>
> Signed-off-by: Kevin Winchester <kjwinchester@gmail.com>
> ---
> arch/x86/mm/init_64.c | 4 ++--
> 1 files changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/arch/x86/mm/init_64.c b/arch/x86/mm/init_64.c
> index 83ab7f9..94f73c2 100644
> --- a/arch/x86/mm/init_64.c
> +++ b/arch/x86/mm/init_64.c
> @@ -515,7 +515,7 @@ early_param("memtest", parse_memtest);
>
> static void __init early_memtest(unsigned long start, unsigned long end)
> {
> - unsigned long t_start, t_size;
> + u64 t_start, t_size;
> unsigned pattern;
>
> if (!memtest_pattern)
> @@ -534,7 +534,7 @@ static void __init early_memtest(unsigned long start, unsigned long end)
> if (t_start + t_size > end)
> t_size = end - t_start;
>
> - printk(KERN_CONT "\n %016lx - %016lx pattern %d",
> + printk(KERN_CONT "\n %016llx - %016llx pattern %d",
> t_start, t_start + t_size, pattern);
>
> memtest(t_start, t_size, pattern);
I still see this warning on next-20080530 - so I expanded the CC list a
little. Did I do this patch right?
--
Kevin Winchester
next prev parent reply other threads:[~2008-05-31 0:35 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-05-30 0:14 [PATCH] x86: fix pointer type warning in arch/x86/mm/init_64.c:early_memtest Kevin Winchester
2008-05-30 0:33 ` Kevin Winchester
2008-05-31 0:34 ` Kevin Winchester [this message]
2008-05-31 0:56 ` Yinghai Lu
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=48409D2D.4020207@gmail.com \
--to=kjwinchester@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=mingo@redhat.com \
--cc=tglx@linutronix.de \
--cc=yhlu.kernel@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox