shmat(2): move compat to native
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
This commit is contained in:
parent
9b1404c24a
commit
a78ee9ed2f
16
ipc/compat.c
16
ipc/compat.c
|
@ -80,22 +80,6 @@ void to_compat_ipc_perm(struct compat_ipc_perm *to, struct ipc64_perm *from)
|
||||||
to->seq = from->seq;
|
to->seq = from->seq;
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifndef COMPAT_SHMLBA
|
|
||||||
#define COMPAT_SHMLBA SHMLBA
|
|
||||||
#endif
|
|
||||||
|
|
||||||
COMPAT_SYSCALL_DEFINE3(shmat, int, shmid, compat_uptr_t, shmaddr, int, shmflg)
|
|
||||||
{
|
|
||||||
unsigned long ret;
|
|
||||||
long err;
|
|
||||||
|
|
||||||
err = do_shmat(shmid, compat_ptr(shmaddr), shmflg, &ret, COMPAT_SHMLBA);
|
|
||||||
if (err)
|
|
||||||
return err;
|
|
||||||
force_successful_syscall_return();
|
|
||||||
return (long)ret;
|
|
||||||
}
|
|
||||||
|
|
||||||
COMPAT_SYSCALL_DEFINE4(semtimedop, int, semid, struct sembuf __user *, tsems,
|
COMPAT_SYSCALL_DEFINE4(semtimedop, int, semid, struct sembuf __user *, tsems,
|
||||||
unsigned, nsops,
|
unsigned, nsops,
|
||||||
const struct compat_timespec __user *, timeout)
|
const struct compat_timespec __user *, timeout)
|
||||||
|
|
19
ipc/shm.c
19
ipc/shm.c
|
@ -1439,6 +1439,25 @@ SYSCALL_DEFINE3(shmat, int, shmid, char __user *, shmaddr, int, shmflg)
|
||||||
return (long)ret;
|
return (long)ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef CONFIG_COMPAT
|
||||||
|
|
||||||
|
#ifndef COMPAT_SHMLBA
|
||||||
|
#define COMPAT_SHMLBA SHMLBA
|
||||||
|
#endif
|
||||||
|
|
||||||
|
COMPAT_SYSCALL_DEFINE3(shmat, int, shmid, compat_uptr_t, shmaddr, int, shmflg)
|
||||||
|
{
|
||||||
|
unsigned long ret;
|
||||||
|
long err;
|
||||||
|
|
||||||
|
err = do_shmat(shmid, compat_ptr(shmaddr), shmflg, &ret, COMPAT_SHMLBA);
|
||||||
|
if (err)
|
||||||
|
return err;
|
||||||
|
force_successful_syscall_return();
|
||||||
|
return (long)ret;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* detach and kill segment if marked destroyed.
|
* detach and kill segment if marked destroyed.
|
||||||
* The work is done in shm_close.
|
* The work is done in shm_close.
|
||||||
|
|
Loading…
Reference in New Issue