From owner-cvs-all Sat May 15 22: 7:43 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 6840A14C58; Sat, 15 May 1999 22:07:37 -0700 (PDT) (envelope-from alc@FreeBSD.org) Received: (from alc@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id WAA67084; Sat, 15 May 1999 22:07:37 -0700 (PDT) (envelope-from alc@FreeBSD.org) Message-Id: <199905160507.WAA67084@freefall.freebsd.org> From: Alan Cox Date: Sat, 15 May 1999 22:07:37 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/vm vm_map.c vm_map.h vm_mmap.c vm_object.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk alc 1999/05/15 22:07:37 PDT Modified files: sys/vm vm_map.c vm_map.h vm_mmap.c vm_object.c Log: Remove prototypes for functions that don't exist anymore (vm_map.h). Remove a useless argument from vm_map_madvise's interface (vm_map.c, vm_map.h, and vm_mmap.c). Remove a redundant test in vm_uiomove (vm_map.c). Make two changes to vm_object_coalesce: 1. Determine whether the new range of pages actually overlaps the existing object's range of pages before calling vm_object_page_remove. (Prior to this change almost 90% of the calls to vm_object_page_remove were to remove pages that were beyond the end of the object.) 2. Free any swap space allocated to removed pages. Revision Changes Path 1.162 +4 -7 src/sys/vm/vm_map.c 1.40 +2 -4 src/sys/vm/vm_map.h 1.98 +2 -7 src/sys/vm/vm_mmap.c 1.154 +14 -10 src/sys/vm/vm_object.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message