From owner-cvs-all Mon Sep 20 12: 8:52 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id DB96914F76; Mon, 20 Sep 1999 12:08:49 -0700 (PDT) (envelope-from dillon@FreeBSD.org) Received: (from dillon@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA39566; Mon, 20 Sep 1999 12:08:49 -0700 (PDT) (envelope-from dillon@FreeBSD.org) Message-Id: <199909201908.MAA39566@freefall.freebsd.org> From: Matt Dillon Date: Mon, 20 Sep 1999 12:08:49 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/alpha/alpha vm_machdep.c src/sys/i386/i386 vm_machdep.c src/sys/kern sys_pipe.c src/sys/vm vm_extern.h Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk dillon 1999/09/20 12:08:48 PDT Modified files: sys/alpha/alpha vm_machdep.c sys/i386/i386 vm_machdep.c sys/kern sys_pipe.c sys/vm vm_extern.h Log: Fix bug in pipe code relating to writes of mmap'd but illegal address spaces which cross a segment boundry in the page table. pmap_kextract() is not designed for access to the user space portion of the page table and cannot handle the null-page-directory-entry case. The fix is to have vm_fault_quick() return a success or failure which is then used to avoid calling pmap_kextract(). Revision Changes Path 1.22 +6 -4 src/sys/alpha/alpha/vm_machdep.c 1.127 +7 -4 src/sys/i386/i386/vm_machdep.c 1.56 +3 -4 src/sys/kern/sys_pipe.c 1.44 +2 -2 src/sys/vm/vm_extern.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message