Re: latest upgrade seems to have broken vmware3

From: Kip Macy <kip.macy_at_gmail.com>
Date: Mon, 1 Jan 2007 16:31:46 -0800
>
> 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
Received on Mon Jan 01 2007 - 23:31:48 UTC

This archive was generated by hypermail 2.4.0 : Wed May 19 2021 - 11:39:04 UTC