* Change of /proc/cpuinfo format
@ 2000-12-05 23:06 ryan
2000-12-05 23:21 ` Peter Samuelson
0 siblings, 1 reply; 2+ messages in thread
From: ryan @ 2000-12-05 23:06 UTC (permalink / raw)
To: linux-kernel
Hi,
There was a minor change to the format of /proc/cpuinfo which hoses
several programs. Most notably is vmware.
The details are the field formerly known as 'flags' is now known as
'features' which breaks any programs attempting to parse /proc/cpuinfo
and making decisions about what feature set the cpu supports.
I'm not quite sure why the name change is necessary, and even if one
wants to keep the name change there is a discontunity of cpuinfo formats
and programs which intend to run on kernels 2.2 and 2.4 needs to know
this...
Here is a small patch to save your typing fingers:
--- setup.c.old Tue Dec 5 15:01:21 2000
+++ setup.c Tue Dec 5 14:53:52 2000
@@ -2131,7 +2131,7 @@
"fpu_exception\t: %s\n"
"cpuid level\t: %d\n"
"wp\t\t: %s\n"
- "features\t:",
+ "flags\t:",
c->fdiv_bug ? "yes" : "no",
c->hlt_works_ok ? "no" : "yes",
c->f00f_bug ? "yes" : "no",
in linux/arch/i386/kernel
-ryan
--
Ryan Rawson
Software Designer
ryan@javien.com
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
Please read the FAQ at http://www.tux.org/lkml/
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: Change of /proc/cpuinfo format
2000-12-05 23:06 Change of /proc/cpuinfo format ryan
@ 2000-12-05 23:21 ` Peter Samuelson
0 siblings, 0 replies; 2+ messages in thread
From: Peter Samuelson @ 2000-12-05 23:21 UTC (permalink / raw)
To: ryan; +Cc: linux-kernel
> I'm not quite sure why the name change is necessary, and even if one
> wants to keep the name change there is a discontunity of cpuinfo
> formats and programs which intend to run on kernels 2.2 and 2.4 needs
> to know this...
The reason is that HPA, who did the recent IA32 CPU detection cleanup,
felt that the information reported in the new 'features' field was
sufficiently different from that reported in the old 'flags' field that
it was worth renaming -- so that programs wouldn't try to rely on the
old flag names.
(Specifically: some flags were renamed to be distinct between Intel,
AMD, etc, because the exact behavior of the flag may vary between
brands.)
> - "features\t:",
> + "flags\t:",
This patch is already in test12pre5, and is wrong. You need two tabs
after 'flags'.
Peter
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
Please read the FAQ at http://www.tux.org/lkml/
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2000-12-05 23:52 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2000-12-05 23:06 Change of /proc/cpuinfo format ryan
2000-12-05 23:21 ` Peter Samuelson
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.