All of lore.kernel.org
 help / color / mirror / Atom feed
* [TRIVIAL PATCH] Microcode: show results on success too plus fix typo
@ 2008-03-26 20:22 Ben Castricum
  2008-03-26 20:40 ` Randy Dunlap
  2008-03-26 21:50 ` Ingo Molnar
  0 siblings, 2 replies; 4+ messages in thread
From: Ben Castricum @ 2008-03-26 20:22 UTC (permalink / raw)
  To: linux-kernel

Show a bit more info when updating microcode. It used to be there but 
no with DEBUG unset makes it very silent.

This is my first patch, please let me know if I did anything wrong.

Signed-off-by: Ben Castricum <lk08@bencastricum.nl>

diff --git a/arch/x86/kernel/microcode.c b/arch/x86/kernel/microcode.c
index f2702d0..ca1fd52 100644
--- a/arch/x86/kernel/microcode.c
+++ b/arch/x86/kernel/microcode.c
@@ -336,11 +336,11 @@ static void apply_microcode(int cpu)

  spin_unlock_irqrestore(&microcode_update_lock, flags);
  if (val[1] != uci->mc->hdr.rev) {
-  printk(KERN_ERR "microcode: CPU%d updated from revision "
+  printk(KERN_ERR "microcode: CPU%d update from revision "
    "0x%x to 0x%x failed\n", cpu_num, uci->rev, val[1]);
   return;
  }
- pr_debug("microcode: CPU%d updated from revision "
+ printk(KERN_INFO "microcode: CPU%d updated from revision "
         "0x%x to 0x%x, date = %08x \n",
         cpu_num, uci->rev, val[1], uci->mc->hdr.date);
  uci->rev = val[1];


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [TRIVIAL PATCH] Microcode: show results on success too plus fix typo
  2008-03-26 20:22 [TRIVIAL PATCH] Microcode: show results on success too plus fix typo Ben Castricum
@ 2008-03-26 20:40 ` Randy Dunlap
  2008-03-26 21:04   ` Jesper Juhl
  2008-03-26 21:50 ` Ingo Molnar
  1 sibling, 1 reply; 4+ messages in thread
From: Randy Dunlap @ 2008-03-26 20:40 UTC (permalink / raw)
  To: Ben Castricum; +Cc: linux-kernel

On Wed, 26 Mar 2008 21:22:25 +0100 Ben Castricum wrote:

> Show a bit more info when updating microcode. It used to be there but 
> no with DEBUG unset makes it very silent.
> 
> This is my first patch, please let me know if I did anything wrong.
> 
> Signed-off-by: Ben Castricum <lk08@bencastricum.nl>
> 
> diff --git a/arch/x86/kernel/microcode.c b/arch/x86/kernel/microcode.c
> index f2702d0..ca1fd52 100644
> --- a/arch/x86/kernel/microcode.c
> +++ b/arch/x86/kernel/microcode.c
> @@ -336,11 +336,11 @@ static void apply_microcode(int cpu)
> 
>   spin_unlock_irqrestore(&microcode_update_lock, flags);
>   if (val[1] != uci->mc->hdr.rev) {
> -  printk(KERN_ERR "microcode: CPU%d updated from revision "
> +  printk(KERN_ERR "microcode: CPU%d update from revision "
>     "0x%x to 0x%x failed\n", cpu_num, uci->rev, val[1]);
>    return;
>   }
> - pr_debug("microcode: CPU%d updated from revision "
> + printk(KERN_INFO "microcode: CPU%d updated from revision "
>          "0x%x to 0x%x, date = %08x \n",
>          cpu_num, uci->rev, val[1], uci->mc->hdr.date);
>   uci->rev = val[1];

Your mailer client (*cough*) converted tabs to spaces,
so the patch does not apply cleanly now.
You'll need to find a way to send patches that does not mangle
whitespace.


---
~Randy

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [TRIVIAL PATCH] Microcode: show results on success too plus fix typo
  2008-03-26 20:40 ` Randy Dunlap
@ 2008-03-26 21:04   ` Jesper Juhl
  0 siblings, 0 replies; 4+ messages in thread
From: Jesper Juhl @ 2008-03-26 21:04 UTC (permalink / raw)
  To: Ben Castricum; +Cc: Randy Dunlap, linux-kernel

On 26/03/2008, Randy Dunlap <randy.dunlap@oracle.com> wrote:
> On Wed, 26 Mar 2008 21:22:25 +0100 Ben Castricum wrote:
>
>  > Show a bit more info when updating microcode. It used to be there but
>  > no with DEBUG unset makes it very silent.
>  >
>  > This is my first patch, please let me know if I did anything wrong.
>  >
>  > Signed-off-by: Ben Castricum <lk08@bencastricum.nl>

A line with "---" after Signed-off-by: is prefered.

A diffstat is also common.

To quote Documentation/SubmittingPatches :
"The canonical patch message body contains the following:

  - A "from" line specifying the patch author.

  - An empty line.

  - The body of the explanation, which will be copied to the
    permanent changelog to describe this patch.

  - The "Signed-off-by:" lines, described above, which will
    also go in the changelog.

  - A marker line containing simply "---".

  - Any additional comments not suitable for the changelog.

  - The actual patch (diff output).
"

>  >
>  > diff --git a/arch/x86/kernel/microcode.c b/arch/x86/kernel/microcode.c
>  > index f2702d0..ca1fd52 100644
>  > --- a/arch/x86/kernel/microcode.c
>  > +++ b/arch/x86/kernel/microcode.c
>  > @@ -336,11 +336,11 @@ static void apply_microcode(int cpu)
>  >
>  >   spin_unlock_irqrestore(&microcode_update_lock, flags);
>  >   if (val[1] != uci->mc->hdr.rev) {
>  > -  printk(KERN_ERR "microcode: CPU%d updated from revision "
>  > +  printk(KERN_ERR "microcode: CPU%d update from revision "
>  >     "0x%x to 0x%x failed\n", cpu_num, uci->rev, val[1]);
>  >    return;
>  >   }
>  > - pr_debug("microcode: CPU%d updated from revision "
>  > + printk(KERN_INFO "microcode: CPU%d updated from revision "
>  >          "0x%x to 0x%x, date = %08x \n",
>  >          cpu_num, uci->rev, val[1], uci->mc->hdr.date);
>  >   uci->rev = val[1];
>
>
> Your mailer client (*cough*) converted tabs to spaces,
>  so the patch does not apply cleanly now.
>  You'll need to find a way to send patches that does not mangle
>  whitespace.
>

Also, since this is a rather trivial patch (even hinted at in the
subject) you should probably have added trivial@kernel.org to Cc: - if
you don't, the chances that I will notice it and pick it up in the
trivial tree are pretty slim.

-- 
Jesper Juhl <jesper.juhl@gmail.com>
Don't top-post  http://www.catb.org/~esr/jargon/html/T/top-post.html
Plain text mails only, please      http://www.expita.com/nomime.html

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [TRIVIAL PATCH] Microcode: show results on success too plus fix typo
  2008-03-26 20:22 [TRIVIAL PATCH] Microcode: show results on success too plus fix typo Ben Castricum
  2008-03-26 20:40 ` Randy Dunlap
@ 2008-03-26 21:50 ` Ingo Molnar
  1 sibling, 0 replies; 4+ messages in thread
From: Ingo Molnar @ 2008-03-26 21:50 UTC (permalink / raw)
  To: Ben Castricum; +Cc: linux-kernel


* Ben Castricum <lk08@bencastricum.nl> wrote:

> Show a bit more info when updating microcode. It used to be there but 
> no with DEBUG unset makes it very silent.
>
> This is my first patch, please let me know if I did anything wrong.

your patch looks good to me, but there's some whitespace damage: all 
your tabs in that patch got converted to spaces. Check out 
Documentation/email-clients.txt and please resend it so that i can apply 
it to x86.git.

	Ingo

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2008-03-26 21:50 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-03-26 20:22 [TRIVIAL PATCH] Microcode: show results on success too plus fix typo Ben Castricum
2008-03-26 20:40 ` Randy Dunlap
2008-03-26 21:04   ` Jesper Juhl
2008-03-26 21:50 ` Ingo Molnar

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.