From owner-freebsd-current@FreeBSD.ORG Tue Jan 2 00:31:48 2007 Return-Path: X-Original-To: freebsd-current@freebsd.org Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5BC1416A40F for ; Tue, 2 Jan 2007 00:31:48 +0000 (UTC) (envelope-from kip.macy@gmail.com) Received: from nf-out-0910.google.com (nf-out-0910.google.com [64.233.182.190]) by mx1.freebsd.org (Postfix) with ESMTP id B49B613C459 for ; Tue, 2 Jan 2007 00:31:47 +0000 (UTC) (envelope-from kip.macy@gmail.com) Received: by nf-out-0910.google.com with SMTP id x37so6627189nfc for ; Mon, 01 Jan 2007 16:31:46 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=eq3WlCQubEiiRbKSfYSkx/IoQMk9SCAY8dh3yKI9ZZVwoxR17q6Vow3PbUdu3g1WRJiXzBxzovtM458xFdbB04EYX7MmIOMUKDrgqugh1IDW6UERDJvuAYjaJrZC4R4l0z21kKM0KOUzuCi03It/Pyyo++zUxuMt/Ntu8geSTq0= Received: by 10.82.138.6 with SMTP id l6mr1448840bud.1167697906672; Mon, 01 Jan 2007 16:31:46 -0800 (PST) Received: by 10.82.191.16 with HTTP; Mon, 1 Jan 2007 16:31:46 -0800 (PST) Message-ID: Date: Mon, 1 Jan 2007 16:31:46 -0800 From: "Kip Macy" To: freebsd-current@freebsd.org In-Reply-To: <20070101235732.GA3239@mail.scottro.net> MIME-Version: 1.0 References: <20070101220550.GA1411@mail.scottro.net> <20070101235732.GA3239@mail.scottro.net> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Re: latest upgrade seems to have broken vmware3 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 02 Jan 2007 00:31:48 -0000 > > That's well beyond my abilities and knowledge. I'll try googling > for information on how to do it, or ask a few programming friends. > > Thank you for the hint though. Pass this on to your programming friends: static vm_paddr_t get_avail_end(void) { vm_paddr_t avail_end; int i; avail_end = phys_avail[1]; for (i = 0; phys_avail[i + 1]; i += 2) { if (phys_avail[i + 1] > avail_end) avail_end = phys_avail[i + 1]; } return avail_end; } -Kip