runtime: mark pages we return to kernel as NOHUGEPAGE ยท golang/go@7e1b61c

We return memory to the kernel with madvise(..., DONTNEED). Also mark returned memory with NOHUGEPAGE to keep the kernel from merging this memory into a huge page, effectively reallocating it. Onl...