diff options
author | dchagin <dchagin@FreeBSD.org> | 2015-05-24 15:44:41 +0000 |
---|---|---|
committer | dchagin <dchagin@FreeBSD.org> | 2015-05-24 15:44:41 +0000 |
commit | dc4523e6a4c5069fcc945efca5e2ef11e84014ea (patch) | |
tree | c20847ed05cd06b67e74112a71c586f96615e439 /sys/compat/linux/linux_ipc.c | |
parent | a92a30f54da0f10ef3807a9ce5639951610c03da (diff) | |
download | FreeBSD-src-dc4523e6a4c5069fcc945efca5e2ef11e84014ea.zip FreeBSD-src-dc4523e6a4c5069fcc945efca5e2ef11e84014ea.tar.gz |
x86_64 Linux do not use multiplexing on ipc system calls.
Move struct ipc_perm definition to the MD path as it differs for 64 and
32 bit platform.
Differential Revision: https://reviews.freebsd.org/D1068
Reviewed by: trasz
Diffstat (limited to 'sys/compat/linux/linux_ipc.c')
-rw-r--r-- | sys/compat/linux/linux_ipc.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/sys/compat/linux/linux_ipc.c b/sys/compat/linux/linux_ipc.c index 1237edc..7a92c6a 100644 --- a/sys/compat/linux/linux_ipc.c +++ b/sys/compat/linux/linux_ipc.c @@ -117,16 +117,6 @@ bsd_to_linux_shm_info( struct shm_info *bpp, struct l_shm_info *lpp) lpp->swap_successes = bpp->swap_successes ; } -struct l_ipc_perm { - l_key_t key; - l_uid16_t uid; - l_gid16_t gid; - l_uid16_t cuid; - l_gid16_t cgid; - l_ushort mode; - l_ushort seq; -}; - static void linux_to_bsd_ipc_perm(struct l_ipc_perm *lpp, struct ipc_perm *bpp) { |