Human eyes are wonderful things. They do pattern matching given
the right input. Compare:

CPU: After vendor init, caps: 0183f9ff c1c7f9ff 00000000 00000000
CPU: After generic, caps: 0183f9ff c1c7f9ff 00000000 00000000
CPU: Common caps: 0183f9ff c1c7f9ff 00000000 00000000

with:

CPU: After vendor init, caps: 0183f9ff c1c7f9ff 00000000 00000000
CPU:     After generic, caps: 0183f9ff c1c7f9ff 00000000 00000000
CPU:             Common caps: 0183f9ff c1c7f9ff 00000000 00000000

In the second case it's immediately obivous nothing changed during
these steps.

Patch below. 

                        Roger. 


diff -ur linux-2.4.3.clean/arch/i386/kernel/setup.c 
linux-2.4.3.cpuflagsfix/arch/i386/kernel/setup.c
--- linux-2.4.3.clean/arch/i386/kernel/setup.c  Mon Apr  2 10:02:33 2001
+++ linux-2.4.3.cpuflagsfix/arch/i386/kernel/setup.c    Mon Apr 16 10:14:59 2001
@@ -2064,7 +2064,7 @@
 
        /* Now the feature flags better reflect actual CPU features! */
 
-       printk(KERN_DEBUG "CPU: After generic, caps: %08x %08x %08x %08x\n",
+       printk(KERN_DEBUG "CPU:     After generic, caps: %08x %08x %08x %08x\n",
               c->x86_capability[0],
               c->x86_capability[1],
               c->x86_capability[2],
@@ -2082,7 +2082,7 @@
                        boot_cpu_data.x86_capability[i] &= c->x86_capability[i];
        }
 
-       printk(KERN_DEBUG "CPU: Common caps: %08x %08x %08x %08x\n",
+       printk(KERN_DEBUG "CPU:             Common caps: %08x %08x %08x %08x\n",
               boot_cpu_data.x86_capability[0],
               boot_cpu_data.x86_capability[1],
               boot_cpu_data.x86_capability[2],



-- 
** [EMAIL PROTECTED] ** http://www.BitWizard.nl/ ** +31-15-2137555 **
*-- BitWizard writes Linux device drivers for any device you may have! --*
* There are old pilots, and there are bold pilots. 
* There are also old, bald pilots. 
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to