Search results

  1. N

    Page table representation in the virtual address space of FreeBSD

    The following echoes the way page tables are represented in the virtual address for FreeBSD (amd64) // start by moving entries we care about to the bottom vpn_table_entry = vpn >> (9*level); // clear out any high order bits (sign extension) vpn_table_entry &= (1ul << ((4 - level) * 9))...
Back
Top