From owner-p4-projects@FreeBSD.ORG Sat Apr 5 02:46:00 2003 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 4EB0837B405; Sat, 5 Apr 2003 02:45:59 -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 0425637B401 for ; Sat, 5 Apr 2003 02:45:58 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 46C6E43FBF for ; Sat, 5 Apr 2003 02:45:58 -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 h35Ajw0U047881 for ; Sat, 5 Apr 2003 02:45:58 -0800 (PST) (envelope-from peter@freebsd.org) Received: (from perforce@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h35AjvIT047878 for perforce@freebsd.org; Sat, 5 Apr 2003 02:45:57 -0800 (PST) Date: Sat, 5 Apr 2003 02:45:57 -0800 (PST) Message-Id: <200304051045.h35AjvIT047878@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 28216 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:46:00 -0000 http://perforce.freebsd.org/chv.cgi?CH=28216 Change 28216 by peter@peter_overcee on 2003/04/05 02:45:23 stub out KPSEL - we cannot do it this way. Well, maybe we can, but the MSR access method is saner. Affected files ... .. //depot/projects/hammer/sys/x86_64/isa/icu_vector.s#5 edit .. //depot/projects/hammer/sys/x86_64/x86_64/exception.s#13 edit Differences ... ==== //depot/projects/hammer/sys/x86_64/isa/icu_vector.s#5 (text+ko) ==== @@ -48,7 +48,7 @@ mov $KDSEL,%ax ; \ mov %ax,%ds ; \ mov %ax,%es ; \ - mov $KPSEL,%ax ; \ +#XXX mov $KPSEL,%ax ; \ mov %ax,%fs ; \ FAKE_MCOUNT((12+ACTUALLY_PUSHED)*4(%rsp)) ; \ call critical_enter ; \ @@ -103,7 +103,7 @@ mov $KDSEL,%ax ; /* load kernel ds, es and fs */ \ mov %ax,%ds ; \ mov %ax,%es ; \ - mov $KPSEL,%ax ; \ +#XXX mov $KPSEL,%ax ; \ mov %ax,%fs ; \ maybe_extra_ipending ; \ movb imen + IRQ_BYTE(irq_num),%al ; \ ==== //depot/projects/hammer/sys/x86_64/x86_64/exception.s#13 (text+ko) ==== @@ -152,7 +152,7 @@ mov $KDSEL,%ax mov %ax,%ds mov %ax,%es - mov $KPSEL,%ax +#XXX mov $KPSEL,%ax mov %ax,%fs FAKE_MCOUNT(13*4(%rsp)) calltrap: @@ -204,7 +204,7 @@ mov $KDSEL,%ax /* switch to kernel segments */ mov %ax,%ds mov %ax,%es - mov $KPSEL,%ax +#XXX mov $KPSEL,%ax mov %ax,%fs FAKE_MCOUNT(13*4(%rsp)) call syscall