On x86 machines with highmem, when the kernel wants to query the kernel virtual address of a physical frame, it will use page_address. How it works depends on whether the macro WANT_PAGE_VIRTUAL is defined, which decides if void *virtual is added in struct page. If there is no void *virtual, the kernel will use a hash table page_address_htable to do the conversion, and this seems the method x86 applies. On the contrary, mips and m68k just take void *virtual(I'm not very sure for this).
So my question is, why x86 prefers a hash table to a improved struct page? What are the benefits it brings about?