From owner-cvs-src@FreeBSD.ORG Wed Oct 15 01:40:52 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 D877D16A4B3; Wed, 15 Oct 2003 01:40:52 -0700 (PDT) Received: from cs.rice.edu (cs.rice.edu [128.42.1.30]) by mx1.FreeBSD.org (Postfix) with ESMTP id E1DDA43FCB; Wed, 15 Oct 2003 01:40:51 -0700 (PDT) (envelope-from alc@cs.rice.edu) Received: from localhost (localhost [127.0.0.1]) by cs.rice.edu (Postfix) with ESMTP id 5F8544AA87; Wed, 15 Oct 2003 03:40:51 -0500 (CDT) Received: from cs.rice.edu ([127.0.0.1]) by localhost (cs.rice.edu [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 07534-01-96; Wed, 15 Oct 2003 03:40:43 -0500 (CDT) Received: by cs.rice.edu (Postfix, from userid 19572) id 846234A9D9; Wed, 15 Oct 2003 03:40:43 -0500 (CDT) Date: Wed, 15 Oct 2003 03:40:43 -0500 From: Alan Cox To: Alan Cox Message-ID: <20031015084043.GR27527@cs.rice.edu> References: <200310150800.h9F80j13045191@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200310150800.h9F80j13045191@repoman.freebsd.org> User-Agent: Mutt/1.3.28i X-Virus-Scanned: by amavis-20030616-p5 at rice.edu cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/vm vm_fault.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: Wed, 15 Oct 2003 08:40:53 -0000 On Wed, Oct 15, 2003 at 01:00:45AM -0700, Alan Cox wrote: > alc 2003/10/15 01:00:45 PDT > > FreeBSD src repository > > Modified files: > sys/vm vm_fault.c > Log: > - vm_fault_copy_entry() should not assume that the source object contains > every page. If the source entry was read-only, one or more wired pages > could be in backing objects. > - vm_fault_copy_entry() should not set the PG_WRITEABLE flag on the page > unless the destination entry is, in fact, writeable. > > Revision Changes Path > 1.181 +19 -5 src/sys/vm/vm_fault.c This fixes the problem with mlockall() and cdrecord. Alan