latest upgrade seems to have broken vmware3

Kip Macy kip.macy at gmail.com
Mon Jan 1 16:31:48 PST 2007


>
> 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


More information about the freebsd-current mailing list