From owner-cvs-src@FreeBSD.ORG Thu Sep 4 13:51:27 2008 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D8565106566B; Thu, 4 Sep 2008 13:51:27 +0000 (UTC) (envelope-from kib@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id C30138FC19; Thu, 4 Sep 2008 13:51:27 +0000 (UTC) (envelope-from kib@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id m84DpRr9042416; Thu, 4 Sep 2008 13:51:27 GMT (envelope-from kib@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id m84DpRNs042411; Thu, 4 Sep 2008 13:51:27 GMT (envelope-from kib@repoman.freebsd.org) Message-Id: <200809041351.m84DpRNs042411@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to kib@repoman.freebsd.org using -f From: Konstantin Belousov Date: Thu, 4 Sep 2008 13:51:08 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_7 Cc: Subject: cvs commit: src/sys/amd64/amd64 cpu_switch.S machdep.c src/sys/amd64/ia32 ia32_signal.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 04 Sep 2008 13:51:28 -0000 kib 2008-09-04 13:51:08 UTC FreeBSD src repository Modified files: (Branch: RELENG_7) sys/amd64/amd64 cpu_switch.S machdep.c sys/amd64/ia32 ia32_signal.c Log: SVN rev 182755 on 2008-09-04 13:51:08Z by kib MFC r182684: - When executing FreeBSD/amd64 binaries from FreeBSD/i386 or Linux/i386 processes, clear PCB_32BIT and PCB_GS32BIT bits. - Reread the fs and gs bases from the msr unconditionally, not believing the values in pcb_fsbase and pcb_gsbase, since usermode may reload segment registers, invalidating the cache. Approved by: re (kensmith) Revision Changes Path 1.160.2.2 +18 -2 src/sys/amd64/amd64/cpu_switch.S 1.675.2.8 +1 -0 src/sys/amd64/amd64/machdep.c 1.15.2.3 +1 -0 src/sys/amd64/ia32/ia32_signal.c