diff options
author | Brian Gerst <brgerst@gmail.com> | 2022-06-06 16:37:57 -0400 |
---|---|---|
committer | Borislav Petkov <bp@suse.de> | 2022-10-19 09:58:49 +0200 |
commit | 653714220f88717f239d811222c2dd0e64b181ba (patch) | |
tree | 95cca01e46fff6c07f8d6891a658d3ce0ff9e682 | |
parent | f544822ea587ce08932640d5ba3978261148cbc7 (diff) | |
download | lwn-653714220f88717f239d811222c2dd0e64b181ba.tar.gz lwn-653714220f88717f239d811222c2dd0e64b181ba.zip |
signal/compat: Remove compat_sigset_t override
x86 no longer uses compat_sigset_t when CONFIG_COMPAT isn't enabled, so
remove the override define.
Signed-off-by: Brian Gerst <brgerst@gmail.com>
Signed-off-by: Borislav Petkov <bp@suse.de>
Acked-by: "Eric W. Biederman" <ebiederm@xmission.com>
Link: https://lore.kernel.org/r/20220606203802.158958-4-brgerst@gmail.com
Signed-off-by: Borislav Petkov <bp@suse.de>
-rw-r--r-- | include/linux/compat.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/linux/compat.h b/include/linux/compat.h index 594357881b0b..44b1736c95b5 100644 --- a/include/linux/compat.h +++ b/include/linux/compat.h @@ -126,11 +126,9 @@ struct compat_tms { #define _COMPAT_NSIG_WORDS (_COMPAT_NSIG / _COMPAT_NSIG_BPW) -#ifndef compat_sigset_t typedef struct { compat_sigset_word sig[_COMPAT_NSIG_WORDS]; } compat_sigset_t; -#endif int set_compat_user_sigmask(const compat_sigset_t __user *umask, size_t sigsetsize); |