Change mmap(2) to document that ENOMEM is returned instead of EINVAL in a specific case.
From the original PR:
The man page for mmap(2) says:
[EINVAL] Both MAP_FIXED and MAP_EXCL were specified, but the requested region is already used by a mapping.
This should be ENOMEM rather than EINVAL.
PR:215469