Split the in_pcblookup_hash_locked() function into several independent
subroutine calls, each of which does some kind of hash table lookup.
This refactoring makes it easier to introduce different variants of the
lookup algorithm that behave differently depending on whether they are
synchronized by SMR or the hash lock.
While here, do some related cleanup:
- Remove the unused ifnet parameter from internal functions.
- Reorder the parameters to in_pcblookup_lbgroup() to be consistent with the other lookup functions.
- Remove an always-true check from in_pcblookup_lbgroup(): we can assume that we're performing a wildcard match.
No functional change intended.