Avoid looking at the valid bit in the PTE when asserting that we are not
traversing through a superpage. These traversal functions are used by
pmap_kextract(), which locklessly looks up an address, and
pmap_update_entry() will clear an L2 entry's valid bit when promoting or
demoting. L<n>_TABLE includes ATTR_DESCR_VALID, so the assertion could
incorrectly fire when looking up a kernel address involved in concurrent
L2 promotion.
Reported by: mmel
MFC with: r365879