From owner-freebsd-emulation@FreeBSD.ORG Mon Jan 19 01:00:31 2004 Return-Path: Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EE6C916A4CE for ; Mon, 19 Jan 2004 01:00:31 -0800 (PST) Received: from postman.ripe.net (postman.ripe.net [193.0.0.199]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6913D43D1F for ; Mon, 19 Jan 2004 01:00:30 -0800 (PST) (envelope-from ms@dell-laptop.6bone.nl) Received: by postman.ripe.net (Postfix, from userid 8) id 5A7B64E2B2; Mon, 19 Jan 2004 09:57:29 +0100 (CET) Received: from birch.ripe.net (birch.ripe.net [193.0.1.96]) by postman.ripe.net (Postfix) with ESMTP id 046E64E4BF; Mon, 19 Jan 2004 09:57:29 +0100 (CET) Received: from dell-laptop.6bone.nl (cow.ripe.net [193.0.1.239]) by birch.ripe.net (8.12.10/8.11.6) with SMTP id i0J8vSMF019840; Mon, 19 Jan 2004 09:57:28 +0100 Received: (nullmailer pid 1031 invoked by uid 1001); Mon, 19 Jan 2004 07:47:55 -0000 Date: Mon, 19 Jan 2004 08:47:55 +0100 From: Mark Santcroos To: orlando.bassotto@ieo-research.it Message-ID: <20040119074755.GA880@laptop.6bone.nl> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4.1i X-Handles: MS6-6BONE, MS18417-RIPE X-RIPE-Spam-Level: X-RIPE-Spam-Status: N 0.378730 X-RIPE-Signature: 27e00a683628e07787edca8b4a99cb87 cc: freebsd-emulation@freebsd.org Subject: vmware3 patch for -CURRENT X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jan 2004 09:00:32 -0000 Hi Orlando, Please make the following change to your repo, it is needed to keep up with the latest vm changes in -CURRENT. Mark --- vmmon-only.diff Tue Nov 18 03:32:46 2003 +++ vmmon-only_bis.diff Fri Jan 16 18:18:45 2004 @@ -2253,7 +2253,7 @@ + */ + VMDEBUG("vmmon_alloc_low_pages: vm_page_alloc_contig: sz %lu hi %u\n", + numPages * PAGE_SIZE, high); -+ va = vm_page_alloc_contig(numPages * PAGE_SIZE, 0, high, PAGE_SIZE); ++ va = (vm_offset_t)contigmalloc(numPages * PAGE_SIZE, M_DEVBUF, M_NOWAIT, 0, high, PAGE_SIZE, 0); + if (!va) { + VMDEBUG("vmmon_alloc_low_pages: vm_page_alloc_contig failed\n"); + goto bad;