blob: deb1c3e503d34775a097c20dda2150cf89999a60 [file] [log] [blame]
Greg Kroah-Hartmane2be04c2017-11-01 15:09:13 +01001/* SPDX-License-Identifier: GPL-2.0+ WITH Linux-syscall-note */
jdl@freescale.coma37c8872005-09-07 15:27:09 -05002#ifndef _ASM_POWERPC_SHMBUF_H
3#define _ASM_POWERPC_SHMBUF_H
Linus Torvalds1da177e2005-04-16 15:20:36 -07004
Jon Loeliger6b9269a2005-09-01 15:51:52 -05005/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 */
11
Jon Loeliger6b9269a2005-09-01 15:51:52 -050012/*
13 * The shmid64_ds structure for PPC architecture.
14 *
15 * Note extra padding because this structure is passed back and forth
16 * between kernel and user space.
17 *
18 * Pad space is left for:
19 * - 64-bit time_t to solve y2038 problem
20 * - 2 miscellaneous 32-bit values
21 */
22
Linus Torvalds1da177e2005-04-16 15:20:36 -070023struct shmid64_ds {
24 struct ipc64_perm shm_perm; /* operation perms */
jdl@freescale.comf9526782005-09-08 14:05:49 -050025#ifndef __powerpc64__
Jon Loeliger6b9269a2005-09-01 15:51:52 -050026 unsigned long __unused1;
27#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070028 __kernel_time_t shm_atime; /* last attach time */
jdl@freescale.comf9526782005-09-08 14:05:49 -050029#ifndef __powerpc64__
Jon Loeliger6b9269a2005-09-01 15:51:52 -050030 unsigned long __unused2;
31#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070032 __kernel_time_t shm_dtime; /* last detach time */
jdl@freescale.comf9526782005-09-08 14:05:49 -050033#ifndef __powerpc64__
Jon Loeliger6b9269a2005-09-01 15:51:52 -050034 unsigned long __unused3;
35#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070036 __kernel_time_t shm_ctime; /* last change time */
jdl@freescale.comf9526782005-09-08 14:05:49 -050037#ifndef __powerpc64__
Jon Loeliger6b9269a2005-09-01 15:51:52 -050038 unsigned long __unused4;
39#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070040 size_t shm_segsz; /* size of segment (bytes) */
41 __kernel_pid_t shm_cpid; /* pid of creator */
42 __kernel_pid_t shm_lpid; /* pid of last operator */
43 unsigned long shm_nattch; /* no. of current attaches */
Jon Loeliger6b9269a2005-09-01 15:51:52 -050044 unsigned long __unused5;
45 unsigned long __unused6;
Linus Torvalds1da177e2005-04-16 15:20:36 -070046};
47
48struct shminfo64 {
49 unsigned long shmmax;
50 unsigned long shmmin;
51 unsigned long shmmni;
52 unsigned long shmseg;
53 unsigned long shmall;
54 unsigned long __unused1;
55 unsigned long __unused2;
56 unsigned long __unused3;
57 unsigned long __unused4;
58};
59
jdl@freescale.coma37c8872005-09-07 15:27:09 -050060#endif /* _ASM_POWERPC_SHMBUF_H */