openssh: enable --with-linux-memlock-onfault
This new configure option attempts to call the following as part of sshd
startup, simply warning if it fails:
`mlockall(MCL_CURRENT | MCL_FUTURE | MCL_ONFAULT)`
From https://man7.org/linux/man-pages/man2/mlock.2.html:
> Since Linux 2.6.9, no limits are placed on the amount of memory
> that a privileged process can lock and the RLIMIT_MEMLOCK soft
> resource limit instead defines a limit on how much memory an
> unprivileged process may lock.
Since sshd is run as root, locking all current and future pages
also will not run into hypothetical OOM issues.