aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Wemm <peter@FreeBSD.org>2001-07-12 12:21:53 +0000
committerPeter Wemm <peter@FreeBSD.org>2001-07-12 12:21:53 +0000
commitad1b7ffaeed25f04260a21cd9227e185785aa14a (patch)
tree4cd782aa102d2f2ec4f8a7a265712a0a0eec0c93
parent8771bd7eb077bcb9db984a6ed56321bea0c29a83 (diff)
Notes
-rw-r--r--sys/amd64/amd64/fpu.c4
-rw-r--r--sys/amd64/isa/npx.c4
-rw-r--r--sys/i386/isa/npx.c4
-rw-r--r--sys/pc98/pc98/npx.c4
4 files changed, 8 insertions, 8 deletions
diff --git a/sys/amd64/amd64/fpu.c b/sys/amd64/amd64/fpu.c
index f6410e933883..bb1f74b123a0 100644
--- a/sys/amd64/amd64/fpu.c
+++ b/sys/amd64/amd64/fpu.c
@@ -601,8 +601,8 @@ npxexit(p)
if (npx_exists) {
u_int masked_exceptions;
- masked_exceptions = PCPU_GET(curpcb)->pcb_savefpu.sv_env.en_cw
- & PCPU_GET(curpcb)->pcb_savefpu.sv_env.en_sw & 0x7f;
+ masked_exceptions = PCPU_GET(curpcb)->pcb_save.sv_87.sv_env.en_cw
+ & PCPU_GET(curpcb)->pcb_save.sv_87.sv_env.en_sw & 0x7f;
/*
* Log exceptions that would have trapped with the old
* control word (overflow, divide by 0, and invalid operand).
diff --git a/sys/amd64/isa/npx.c b/sys/amd64/isa/npx.c
index f6410e933883..bb1f74b123a0 100644
--- a/sys/amd64/isa/npx.c
+++ b/sys/amd64/isa/npx.c
@@ -601,8 +601,8 @@ npxexit(p)
if (npx_exists) {
u_int masked_exceptions;
- masked_exceptions = PCPU_GET(curpcb)->pcb_savefpu.sv_env.en_cw
- & PCPU_GET(curpcb)->pcb_savefpu.sv_env.en_sw & 0x7f;
+ masked_exceptions = PCPU_GET(curpcb)->pcb_save.sv_87.sv_env.en_cw
+ & PCPU_GET(curpcb)->pcb_save.sv_87.sv_env.en_sw & 0x7f;
/*
* Log exceptions that would have trapped with the old
* control word (overflow, divide by 0, and invalid operand).
diff --git a/sys/i386/isa/npx.c b/sys/i386/isa/npx.c
index f6410e933883..bb1f74b123a0 100644
--- a/sys/i386/isa/npx.c
+++ b/sys/i386/isa/npx.c
@@ -601,8 +601,8 @@ npxexit(p)
if (npx_exists) {
u_int masked_exceptions;
- masked_exceptions = PCPU_GET(curpcb)->pcb_savefpu.sv_env.en_cw
- & PCPU_GET(curpcb)->pcb_savefpu.sv_env.en_sw & 0x7f;
+ masked_exceptions = PCPU_GET(curpcb)->pcb_save.sv_87.sv_env.en_cw
+ & PCPU_GET(curpcb)->pcb_save.sv_87.sv_env.en_sw & 0x7f;
/*
* Log exceptions that would have trapped with the old
* control word (overflow, divide by 0, and invalid operand).
diff --git a/sys/pc98/pc98/npx.c b/sys/pc98/pc98/npx.c
index b9d136166f57..e58a13f6b219 100644
--- a/sys/pc98/pc98/npx.c
+++ b/sys/pc98/pc98/npx.c
@@ -654,8 +654,8 @@ npxexit(p)
if (npx_exists) {
u_int masked_exceptions;
- masked_exceptions = PCPU_GET(curpcb)->pcb_savefpu.sv_env.en_cw
- & PCPU_GET(curpcb)->pcb_savefpu.sv_env.en_sw & 0x7f;
+ masked_exceptions = PCPU_GET(curpcb)->pcb_save.sv_87.sv_env.en_cw
+ & PCPU_GET(curpcb)->pcb_save.sv_87.sv_env.en_sw & 0x7f;
/*
* Log exceptions that would have trapped with the old
* control word (overflow, divide by 0, and invalid operand).