Greg Kroah-Hartman | e2be04c | 2017-11-01 15:09:13 +0100 | [diff] [blame^] | 1 | /* SPDX-License-Identifier: GPL-2.0+ WITH Linux-syscall-note */ |
jdl@freescale.com | a37c887 | 2005-09-07 15:27:09 -0500 | [diff] [blame] | 2 | #ifndef _ASM_POWERPC_SHMBUF_H |
| 3 | #define _ASM_POWERPC_SHMBUF_H |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | |
Jon Loeliger | 6b9269a | 2005-09-01 15:51:52 -0500 | [diff] [blame] | 5 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6 | * 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 Loeliger | 6b9269a | 2005-09-01 15:51:52 -0500 | [diff] [blame] | 12 | /* |
| 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | struct shmid64_ds { |
| 24 | struct ipc64_perm shm_perm; /* operation perms */ |
jdl@freescale.com | f952678 | 2005-09-08 14:05:49 -0500 | [diff] [blame] | 25 | #ifndef __powerpc64__ |
Jon Loeliger | 6b9269a | 2005-09-01 15:51:52 -0500 | [diff] [blame] | 26 | unsigned long __unused1; |
| 27 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | __kernel_time_t shm_atime; /* last attach time */ |
jdl@freescale.com | f952678 | 2005-09-08 14:05:49 -0500 | [diff] [blame] | 29 | #ifndef __powerpc64__ |
Jon Loeliger | 6b9269a | 2005-09-01 15:51:52 -0500 | [diff] [blame] | 30 | unsigned long __unused2; |
| 31 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | __kernel_time_t shm_dtime; /* last detach time */ |
jdl@freescale.com | f952678 | 2005-09-08 14:05:49 -0500 | [diff] [blame] | 33 | #ifndef __powerpc64__ |
Jon Loeliger | 6b9269a | 2005-09-01 15:51:52 -0500 | [diff] [blame] | 34 | unsigned long __unused3; |
| 35 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | __kernel_time_t shm_ctime; /* last change time */ |
jdl@freescale.com | f952678 | 2005-09-08 14:05:49 -0500 | [diff] [blame] | 37 | #ifndef __powerpc64__ |
Jon Loeliger | 6b9269a | 2005-09-01 15:51:52 -0500 | [diff] [blame] | 38 | unsigned long __unused4; |
| 39 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | 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 Loeliger | 6b9269a | 2005-09-01 15:51:52 -0500 | [diff] [blame] | 44 | unsigned long __unused5; |
| 45 | unsigned long __unused6; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | }; |
| 47 | |
| 48 | struct 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.com | a37c887 | 2005-09-07 15:27:09 -0500 | [diff] [blame] | 60 | #endif /* _ASM_POWERPC_SHMBUF_H */ |