PERFORCE change 28205 for review
Peter Wemm
peter at FreeBSD.org
Sat Apr 5 02:13:13 PST 2003
http://perforce.freebsd.org/chv.cgi?CH=28205
Change 28205 by peter at peter_overcee on 2003/04/05 02:12:29
npx would be helpful
Affected files ...
.. //depot/projects/hammer/sys/conf/files.x86_64#8 edit
.. //depot/projects/hammer/sys/x86_64/isa/npx.c#19 edit
Differences ...
==== //depot/projects/hammer/sys/conf/files.x86_64#8 (text+ko) ====
@@ -52,3 +52,4 @@
x86_64/isa/intr_machdep.c standard
x86_64/isa/isa.c standard
x86_64/isa/ithread.c standard
+x86_64/isa/npx.c standard
==== //depot/projects/hammer/sys/x86_64/isa/npx.c#19 (text+ko) ====
@@ -103,8 +103,8 @@
#endif /* __GNUC__ */
-#define GET_FPU_CW(thread) ((thread)->td_pcb->pcb_save.sv_xmm.sv_env.en_cw)
-#define GET_FPU_SW(thread) ((thread)->td_pcb->pcb_save.sv_xmm.sv_env.en_sw)
+#define GET_FPU_CW(thread) ((thread)->td_pcb->pcb_save.sv_env.en_cw)
+#define GET_FPU_SW(thread) ((thread)->td_pcb->pcb_save.sv_env.en_sw)
typedef u_char bool_t;
@@ -668,13 +668,13 @@
static devclass_t npx_devclass;
-#ifdef DEV_ISA
/*
* We prefer to attach to the root nexus so that the usual case (exception 16)
* doesn't describe the processor as being `on isa'.
*/
DRIVER_MODULE(npx, nexus, npx_driver, npx_devclass, 0, 0);
+#ifdef DEV_ISA
/*
* This sucks up the legacy ISA support assignments from PNPBIOS/ACPI.
*/
More information about the p4-projects
mailing list