mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-19 12:46:53 +07:00
signal: Remove unncessary #ifdef SEGV_PKUERR in 32bit compat code
The only architecture that does not support SEGV_PKUERR is ia64 and ia64 has not had 32bit support since some time in 2008. Therefore copy_siginfo_to_user32 and copy_siginfo_from_user32 do not need to include support for a missing SEGV_PKUERR. Compile test on ia64. Signed-off-by: "Eric W. Biederman" <ebiederm@xmission.com>
This commit is contained in:
parent
76b7f67073
commit
36a4ca3d9b
@ -2888,12 +2888,9 @@ int __copy_siginfo_to_user32(struct compat_siginfo __user *to,
|
|||||||
new.si_lower = ptr_to_compat(from->si_lower);
|
new.si_lower = ptr_to_compat(from->si_lower);
|
||||||
new.si_upper = ptr_to_compat(from->si_upper);
|
new.si_upper = ptr_to_compat(from->si_upper);
|
||||||
}
|
}
|
||||||
#ifdef SEGV_PKUERR
|
|
||||||
if ((from->si_signo == SIGSEGV) &&
|
if ((from->si_signo == SIGSEGV) &&
|
||||||
(from->si_code == SEGV_PKUERR))
|
(from->si_code == SEGV_PKUERR))
|
||||||
new.si_pkey = from->si_pkey;
|
new.si_pkey = from->si_pkey;
|
||||||
#endif
|
|
||||||
|
|
||||||
break;
|
break;
|
||||||
case SIL_CHLD:
|
case SIL_CHLD:
|
||||||
new.si_pid = from->si_pid;
|
new.si_pid = from->si_pid;
|
||||||
@ -2968,10 +2965,8 @@ int copy_siginfo_from_user32(struct siginfo *to,
|
|||||||
to->si_lower = compat_ptr(from.si_lower);
|
to->si_lower = compat_ptr(from.si_lower);
|
||||||
to->si_upper = compat_ptr(from.si_upper);
|
to->si_upper = compat_ptr(from.si_upper);
|
||||||
}
|
}
|
||||||
#ifdef SEGV_PKUERR
|
|
||||||
if ((from.si_signo == SIGSEGV) && (from.si_code == SEGV_PKUERR))
|
if ((from.si_signo == SIGSEGV) && (from.si_code == SEGV_PKUERR))
|
||||||
to->si_pkey = from.si_pkey;
|
to->si_pkey = from.si_pkey;
|
||||||
#endif
|
|
||||||
break;
|
break;
|
||||||
case SIL_CHLD:
|
case SIL_CHLD:
|
||||||
to->si_pid = from.si_pid;
|
to->si_pid = from.si_pid;
|
||||||
|
Loading…
Reference in New Issue
Block a user