From owner-cvs-src@FreeBSD.ORG Sun May 27 19:02:48 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 10C5516A46F; Sun, 27 May 2007 19:02:48 +0000 (UTC) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 0139013C45A; Sun, 27 May 2007 19:02:48 +0000 (UTC) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l4RJ2l1t021491; Sun, 27 May 2007 19:02:47 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l4RJ2l8M021484; Sun, 27 May 2007 19:02:47 GMT (envelope-from marcel) Message-Id: <200705271902.l4RJ2l8M021484@repoman.freebsd.org> From: Marcel Moolenaar Date: Sun, 27 May 2007 19:02:47 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/boot/ia64/common exec.c src/sys/ia64/ia64 exception.S locore.S pmap.c src/sys/ia64/include ia64_cpu.h 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: Sun, 27 May 2007 19:02:48 -0000 marcel 2007-05-27 19:02:47 UTC FreeBSD src repository Modified files: sys/boot/ia64/common exec.c sys/ia64/ia64 exception.S locore.S pmap.c sys/ia64/include ia64_cpu.h Log: Have the processor defer all faults and exceptions for control speculative loads. This at least makes control speculative loads work. In the future we should analyze which faults/exceptions we want to handle rather than defer to avoid having to call the recovery code when it's not strictly necessary. Revision Changes Path 1.17 +1 -1 src/sys/boot/ia64/common/exec.c 1.59 +2 -2 src/sys/ia64/ia64/exception.S 1.40 +23 -5 src/sys/ia64/ia64/locore.S 1.186 +7 -7 src/sys/ia64/ia64/pmap.c 1.21 +20 -1 src/sys/ia64/include/ia64_cpu.h