mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-20 11:11:24 +00:00
Use symbolic names instead of hardcoding values for magic p_osrel constants.
MFC after: 1 week
This commit is contained in:
parent
3fd8ecabb6
commit
94bce4535d
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=215309
@ -415,9 +415,9 @@ trap(struct trapframe *frame)
|
||||
* This check also covers the images
|
||||
* without the ABI-tag ELF note.
|
||||
*/
|
||||
if (SV_CURPROC_ABI() ==
|
||||
SV_ABI_FREEBSD &&
|
||||
p->p_osrel >= 700004) {
|
||||
if (SV_CURPROC_ABI() == SV_ABI_FREEBSD
|
||||
&& p->p_osrel >=
|
||||
__FreeBSD_version_SIGSEGV) {
|
||||
i = SIGSEGV;
|
||||
ucode = SEGV_ACCERR;
|
||||
} else {
|
||||
|
@ -461,9 +461,9 @@ trap(struct trapframe *frame)
|
||||
* This check also covers the images
|
||||
* without the ABI-tag ELF note.
|
||||
*/
|
||||
if (SV_CURPROC_ABI() ==
|
||||
SV_ABI_FREEBSD &&
|
||||
p->p_osrel >= 700004) {
|
||||
if (SV_CURPROC_ABI() == SV_ABI_FREEBSD
|
||||
&& p->p_osrel >=
|
||||
__FreeBSD_version_SIGSEGV) {
|
||||
i = SIGSEGV;
|
||||
ucode = SEGV_ACCERR;
|
||||
} else {
|
||||
|
@ -60,6 +60,11 @@
|
||||
#undef __FreeBSD_version
|
||||
#define __FreeBSD_version 900025 /* Master, propagated to newvers */
|
||||
|
||||
#ifdef _KERNEL
|
||||
#define __FreeBSD_version_SIGSEGV 700004
|
||||
#define __FreeBSD_version_MAP_ANON 800104
|
||||
#endif
|
||||
|
||||
#ifndef LOCORE
|
||||
#include <sys/types.h>
|
||||
#endif
|
||||
|
@ -232,7 +232,7 @@ mmap(td, uap)
|
||||
|
||||
/* Make sure mapping fits into numeric range, etc. */
|
||||
if ((uap->len == 0 && !SV_CURPROC_FLAG(SV_AOUT) &&
|
||||
curproc->p_osrel >= 800104) ||
|
||||
curproc->p_osrel >= __FreeBSD_version_MAP_ANON) ||
|
||||
((flags & MAP_ANON) && (uap->fd != -1 || pos != 0)))
|
||||
return (EINVAL);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user