Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 5 Apr 2003 02:13:10 -0800 (PST)
From:      Peter Wemm <peter@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 28205 for review
Message-ID:  <200304051013.h35ADABK045428@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=28205

Change 28205 by peter@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.
  */



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200304051013.h35ADABK045428>