[patch-2.4.14-pre5] bugfix to microcode update driver

From: Tigran Aivazian (tigran@veritas.com)
Date: Tue Oct 30 2001 - 07:38:35 EST


Hi Linus,

Apparently, on a HT (hyper-threading) enabled processors the processor
resources (for microcode update) are shared by all logical processors in a
single CPU package, so if one logical processor accepted the update then
it (currently) will fail on all others. Removing that check is harmless
for other (non-HT) processors and required on HT, so please apply this
patch.

Regards,
Tigran

--- arch/i386/kernel/microcode.c.0 Tue Oct 30 12:29:00 2001
+++ arch/i386/kernel/microcode.c Tue Oct 30 12:27:33 2001
@@ -47,6 +47,10 @@
  * 1.08 11 Dec 2000, Richard Schaal <richard.schaal@intel.com> and
  * Tigran Aivazian <tigran@veritas.com>
  * Intel Pentium 4 processor support and bugfixes.
+ * 1.09 30 Oct 2001, Tigran Aivazian <tigran@veritas.com>
+ * Bugfix for HT (Hyper-Threading) enabled processors
+ * whereby processor resources are shared by all logical processors
+ * in a single CPU package.
  */
 
 #include <linux/init.h>
@@ -61,7 +65,7 @@
 #include <asm/uaccess.h>
 #include <asm/processor.h>
 
-#define MICROCODE_VERSION "1.08"
+#define MICROCODE_VERSION "1.09"
 
 MODULE_DESCRIPTION("Intel CPU (IA-32) microcode update driver");
 MODULE_AUTHOR("Tigran Aivazian <tigran@veritas.com>");
@@ -240,10 +244,6 @@
                                 printk(KERN_ERR
                                         "microcode: CPU%d not 'upgrading' to earlier revision"
                                         " %d (current=%d)\n", cpu_num, microcode[i].rev, rev);
- } else if (microcode[i].rev == rev) {
- printk(KERN_ERR
- "microcode: CPU%d already up-to-date (revision %d)\n",
- cpu_num, rev);
                         } else {
                                 int sum = 0;
                                 struct microcode *m = &microcode[i];

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/



This archive was generated by hypermail 2b29 : Wed Oct 31 2001 - 21:00:40 EST