From owner-cvs-all Tue Feb 2 17:57:19 1999 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA19644 for cvs-all-outgoing; Tue, 2 Feb 1999 17:57:19 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA19637; Tue, 2 Feb 1999 17:57:18 -0800 (PST) (envelope-from dillon@FreeBSD.org) From: Matt Dillon Received: (from dillon@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id RAA68189; Tue, 2 Feb 1999 17:57:17 -0800 (PST) (envelope-from dillon@FreeBSD.org) Date: Tue, 2 Feb 1999 17:57:17 -0800 (PST) Message-Id: <199902030157.RAA68189@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/vm vm_map.c vm_object.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk dillon 1999/02/02 17:57:17 PST Modified files: sys/vm vm_map.c vm_object.c Log: Submitted by: Alan Cox The vm_map_insert()/vm_object_coalesce() optimization has been extended to include OBJT_SWAP objects as well as OBJT_DEFAULT objects. This is possible because it costs nothing to extend an OBJT_SWAP object with the new swapper. We can't do this with the old swapper. The old swapper used a linear array that would have had to have been reallocated, costing time as well as a potential low-memory deadlock. Revision Changes Path 1.147 +8 -7 src/sys/vm/vm_map.c 1.143 +3 -2 src/sys/vm/vm_object.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message