From owner-p4-projects@FreeBSD.ORG Sat Apr 5 02:13:12 2003 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 21C8437B404; Sat, 5 Apr 2003 02:13:12 -0800 (PST) Delivered-To: perforce@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CBEC737B401 for ; Sat, 5 Apr 2003 02:13:11 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7579A43FBD for ; Sat, 5 Apr 2003 02:13:11 -0800 (PST) (envelope-from peter@freebsd.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h35ADB0U045431 for ; Sat, 5 Apr 2003 02:13:11 -0800 (PST) (envelope-from peter@freebsd.org) Received: (from perforce@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35ADABK045428 for perforce@freebsd.org; Sat, 5 Apr 2003 02:13:10 -0800 (PST) Date: Sat, 5 Apr 2003 02:13:10 -0800 (PST) Message-Id: <200304051013.h35ADABK045428@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: perforce set sender to peter@freebsd.org using -f From: Peter Wemm To: Perforce Change Reviews Subject: PERFORCE change 28205 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2003 10:13:13 -0000 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. */