svn commit: r340231 - head/sys/kern

Ed Schouten ed at nuxi.nl
Wed Nov 7 21:01:33 UTC 2018


Op wo 7 nov. 2018 om 19:32 schreef John Baldwin <jhb at freebsd.org>:
> Modified: head/sys/kern/imgact_elf.c
> ==============================================================================
> --- head/sys/kern/imgact_elf.c  Wed Nov  7 18:29:54 2018        (r340230)
> +++ head/sys/kern/imgact_elf.c  Wed Nov  7 18:32:02 2018        (r340231)
> @@ -120,7 +120,8 @@ SYSCTL_INT(_debug, OID_AUTO, __elfN(legacy_coredump),
>
>  int __elfN(nxstack) =
>  #if defined(__amd64__) || defined(__powerpc64__) /* both 64 and 32 bit */ || \
> -    (defined(__arm__) && __ARM_ARCH >= 7) || defined(__aarch64__)
> +    (defined(__arm__) && __ARM_ARCH >= 7) || defined(__aarch64__) || \
> +    defined(__riscv)
>         1;
>  #else
>         0;

Are we getting to the point that it might make sense to invert this
logic, i.e., just list the architectures that require executable
stacks?


-- 
Ed Schouten <ed at nuxi.nl>


More information about the svn-src-head mailing list