From owner-cvs-src@FreeBSD.ORG Sat Dec 20 22:03:42 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8112F16A4CE; Sat, 20 Dec 2003 22:03:42 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 21E3F43D5E; Sat, 20 Dec 2003 22:03:41 -0800 (PST) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id hBL63e0B094916; Sat, 20 Dec 2003 22:03:40 -0800 (PST) (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id hBL63eLL094915; Sat, 20 Dec 2003 22:03:40 -0800 (PST) (envelope-from alc) Message-Id: <200312210603.hBL63eLL094915@repoman.freebsd.org> From: Alan Cox Date: Sat, 20 Dec 2003 22:03:40 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/vm vm_mmap.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 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, 21 Dec 2003 06:03:42 -0000 alc 2003/12/20 22:03:40 PST FreeBSD src repository Modified files: sys/vm vm_mmap.c Log: - Correct an error in mincore(2) that has existed since its introduction: mincore(2) should check that the page is valid, not just allocated. Otherwise, it can return a false positive for a page that is not yet resident because it is being read from disk. Revision Changes Path 1.177 +1 -1 src/sys/vm/vm_mmap.c