[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <20080813165638.GA15905@elte.hu>
Date: Wed, 13 Aug 2008 18:56:38 +0200
From: Ingo Molnar <mingo@...e.hu>
To: David Woodhouse <dwmw2@...radead.org>
Cc: Shaohua Li <shaohua.li@...el.com>, linux-kernel@...r.kernel.org,
Peter Oruba <peter.oruba@....com>,
Dmitry Adamushko <dmitry.adamushko@...il.com>
Subject: Re: [PATCH] Fix date output in x86 microcode driver.
* David Woodhouse <dwmw2@...radead.org> wrote:
> The microcode stores its date in a uint32_t in some weird order
> approximating pdp-endian. Rather than printing it like that, print it
> properly in ISO standard form.
applied to tip/x86/microcode - thanks David.
Note that i did some manual merging because microcode support changed a
few details meanwhile, due to the addition of the AMD microcode driver.
Find the commit below.
Ingo
--------------->
>From 34a1b9fc4995102ecbb3a980b348aebf168d8196 Mon Sep 17 00:00:00 2001
From: David Woodhouse <dwmw2@...radead.org>
Date: Tue, 12 Aug 2008 13:25:44 +0100
Subject: [PATCH] Fix date output in x86 microcode driver.
The microcode stores its date in a uint32_t in some weird order
approximating pdp-endian. Rather than printing it like that, print it
properly in ISO standard form.
Signed-off-by: David Woodhouse <David.Woodhouse@...el.com>
Cc: Shaohua Li <shaohua.li@...el.com>
Signed-off-by: Ingo Molnar <mingo@...e.hu>
---
arch/x86/kernel/microcode_intel.c | 7 +++++--
1 files changed, 5 insertions(+), 2 deletions(-)
diff --git a/arch/x86/kernel/microcode_intel.c b/arch/x86/kernel/microcode_intel.c
index a61986e..d2d9d74 100644
--- a/arch/x86/kernel/microcode_intel.c
+++ b/arch/x86/kernel/microcode_intel.c
@@ -339,8 +339,11 @@ static void apply_microcode(int cpu)
return;
}
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.mc_intel->hdr.date);
+ "0x%x to 0x%x, date = %04x-%02x-%02x \n",
+ cpu_num, uci->rev, val[1],
+ uci->mc.mc_intel->hdr.date & 0xffff,
+ uci->mc.mc_intel->hdr.date >> 24,
+ (uci->mc.mc_intel->hdr.date >> 16) & 0xff);
uci->rev = val[1];
}
--
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