All of lore.kernel.org
 help / color / mirror / Atom feed
From: Jiri Slaby <jirislaby@gmail.com>
To: hnazfoo@googlemail.com
Cc: linux-kernel@vger.kernel.org
Subject: Re: [PATCH] Prevent usage of uninitialized variable in transmeta cpu driver
Date: Mon, 24 Jul 2006 01:56:44 +0159	[thread overview]
Message-ID: <44C40CD3.80000@gmail.com> (raw)
In-Reply-To: <20060723214834.GA1484@leiferikson.gentoo>

Johannes Weiner napsal(a):
> This patch fixes a gcc-`uninitialized' warning in
> arch/i386/kernel/cpu/transmeta.c.

NACK.

Gcc bug, don't hide it (I don't really know, why cpu_rev is zeroed).

[Post only whitespace changes. And note that such changes should be in separated
patches.]

> 
> Signed-off-by: Johannes Weiner <hnazfoo@gmail.com>
> 
> ---
> 
> 
> ------------------------------------------------------------------------
> 
> diff --git a/arch/i386/kernel/cpu/transmeta.c b/arch/i386/kernel/cpu/transmeta.c
> index 7214c9b..5b71071 100644
> --- a/arch/i386/kernel/cpu/transmeta.c
> +++ b/arch/i386/kernel/cpu/transmeta.c
> @@ -17,9 +17,9 @@ static void __init init_transmeta(struct
>  
>  	/* Print CMS and CPU revision */
>  	max = cpuid_eax(0x80860000);
> -	cpu_rev = 0;
> +	cpu_rev = cpu_freq = 0;
>  	if ( max >= 0x80860001 ) {
> -		cpuid(0x80860001, &dummy, &cpu_rev, &cpu_freq, &cpu_flags); 
> +		cpuid(0x80860001, &dummy, &cpu_rev, &cpu_freq, &cpu_flags);
>  		if (cpu_rev != 0x02000000) {
>  			printk(KERN_INFO "CPU: Processor revision %u.%u.%u.%u, %u MHz\n",
>  				(cpu_rev >> 24) & 0xff,
> @@ -72,7 +72,7 @@ static void __init init_transmeta(struct
>  	wrmsr(0x80860004, ~0, uk);
>  	c->x86_capability[0] = cpuid_edx(0x00000001);
>  	wrmsr(0x80860004, cap_mask, uk);
> -	
> +
>  	/* If we can run i686 user-space code, call us an i686 */
>  #define USER686 (X86_FEATURE_TSC|X86_FEATURE_CX8|X86_FEATURE_CMOV)
>          if ( c->x86 == 5 && (c->x86_capability[0] & USER686) == USER686 )

regards,
-- 
<a href="http://www.fi.muni.cz/~xslaby/">Jiri Slaby</a>
faculty of informatics, masaryk university, brno, cz
e-mail: jirislaby gmail com, gpg pubkey fingerprint:
B674 9967 0407 CE62 ACC8  22A0 32CC 55C3 39D4 7A7E

  reply	other threads:[~2006-07-23 23:56 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2006-07-23 21:48 [PATCH] Prevent usage of uninitialized variable in transmeta cpu driver Johannes Weiner
2006-07-23 23:57 ` Jiri Slaby [this message]
2006-07-24  5:46   ` Johannes Weiner

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=44C40CD3.80000@gmail.com \
    --to=jirislaby@gmail.com \
    --cc=hnazfoo@googlemail.com \
    --cc=linux-kernel@vger.kernel.org \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.