93f30c73ec
Pull compat and uaccess updates from Al Viro: - {get,put}_compat_sigset() series - assorted compat ioctl stuff - more set_fs() elimination - a few more timespec64 conversions - several removals of pointless access_ok() in places where it was followed only by non-__ variants of primitives * 'misc.compat' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs: (24 commits) coredump: call do_unlinkat directly instead of sys_unlink fs: expose do_unlinkat for built-in callers ext4: take handling of EXT4_IOC_GROUP_ADD into a helper, get rid of set_fs() ipmi: get rid of pointless access_ok() pi433: sanitize ioctl cxlflash: get rid of pointless access_ok() mtdchar: get rid of pointless access_ok() r128: switch compat ioctls to drm_ioctl_kernel() selection: get rid of field-by-field copyin VT_RESIZEX: get rid of field-by-field copyin i2c compat ioctls: move to ->compat_ioctl() sched_rr_get_interval(): move compat to native, get rid of set_fs() mips: switch to {get,put}_compat_sigset() sparc: switch to {get,put}_compat_sigset() s390: switch to {get,put}_compat_sigset() ppc: switch to {get,put}_compat_sigset() parisc: switch to {get,put}_compat_sigset() get_compat_sigset() get rid of {get,put}_compat_itimerspec() io_getevents: Use timespec64 to represent timeouts ...
30 lines
640 B
C
30 lines
640 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef __ASM_COMPAT_SIGNAL_H
|
|
#define __ASM_COMPAT_SIGNAL_H
|
|
|
|
#include <linux/bug.h>
|
|
#include <linux/compat.h>
|
|
#include <linux/compiler.h>
|
|
|
|
#include <asm/signal.h>
|
|
#include <asm/siginfo.h>
|
|
|
|
#include <linux/uaccess.h>
|
|
|
|
static inline int __copy_conv_sigset_to_user(compat_sigset_t __user *d,
|
|
const sigset_t *s)
|
|
{
|
|
BUILD_BUG_ON(sizeof(*d) != sizeof(*s));
|
|
BUILD_BUG_ON(_NSIG_WORDS != 2);
|
|
|
|
return put_compat_sigset(d, s, sizeof(*d));
|
|
}
|
|
|
|
static inline int __copy_conv_sigset_from_user(sigset_t *d,
|
|
const compat_sigset_t __user *s)
|
|
{
|
|
return get_compat_sigset(d, s);
|
|
}
|
|
|
|
#endif /* __ASM_COMPAT_SIGNAL_H */
|