mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07:00
751f409db6
This is a preparatory patch for the introduction of NT_SIGINFO elf note. Make the location of compat_siginfo_t uniform across eight architectures which have it. Now it can be pulled in by including asm/compat.h or linux/compat.h. Most of the copies are verbatim. compat_uid[32]_t had to be replaced by __compat_uid[32]_t. compat_uptr_t had to be moved up before compat_siginfo_t in asm/compat.h on a several architectures (tile already had it moved up). compat_sigval_t had to be relocated from linux/compat.h to asm/compat.h. Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com> Cc: Oleg Nesterov <oleg@redhat.com> Cc: Amerigo Wang <amwang@redhat.com> Cc: "Jonathan M. Foote" <jmfoote@cert.org> Cc: Roland McGrath <roland@hack.frob.com> Cc: Pedro Alves <palves@redhat.com> Cc: Fengguang Wu <fengguang.wu@intel.com> Cc: Stephen Rothwell <sfr@canb.auug.org.au> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
58 lines
1.3 KiB
C
58 lines
1.3 KiB
C
#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 <asm/uaccess.h>
|
|
|
|
static inline int __copy_conv_sigset_to_user(compat_sigset_t __user *d,
|
|
const sigset_t *s)
|
|
{
|
|
int err;
|
|
|
|
BUG_ON(sizeof(*d) != sizeof(*s));
|
|
BUG_ON(_NSIG_WORDS != 2);
|
|
|
|
err = __put_user(s->sig[0], &d->sig[0]);
|
|
err |= __put_user(s->sig[0] >> 32, &d->sig[1]);
|
|
err |= __put_user(s->sig[1], &d->sig[2]);
|
|
err |= __put_user(s->sig[1] >> 32, &d->sig[3]);
|
|
|
|
return err;
|
|
}
|
|
|
|
static inline int __copy_conv_sigset_from_user(sigset_t *d,
|
|
const compat_sigset_t __user *s)
|
|
{
|
|
int err;
|
|
union sigset_u {
|
|
sigset_t s;
|
|
compat_sigset_t c;
|
|
} *u = (union sigset_u *) d;
|
|
|
|
BUG_ON(sizeof(*d) != sizeof(*s));
|
|
BUG_ON(_NSIG_WORDS != 2);
|
|
|
|
#ifdef CONFIG_CPU_BIG_ENDIAN
|
|
err = __get_user(u->c.sig[1], &s->sig[0]);
|
|
err |= __get_user(u->c.sig[0], &s->sig[1]);
|
|
err |= __get_user(u->c.sig[3], &s->sig[2]);
|
|
err |= __get_user(u->c.sig[2], &s->sig[3]);
|
|
#endif
|
|
#ifdef CONFIG_CPU_LITTLE_ENDIAN
|
|
err = __get_user(u->c.sig[0], &s->sig[0]);
|
|
err |= __get_user(u->c.sig[1], &s->sig[1]);
|
|
err |= __get_user(u->c.sig[2], &s->sig[2]);
|
|
err |= __get_user(u->c.sig[3], &s->sig[3]);
|
|
#endif
|
|
|
|
return err;
|
|
}
|
|
|
|
#endif /* __ASM_COMPAT_SIGNAL_H */
|