diff options
| author | Greg Ungerer <gerg@uclinux.org> | 2012-10-30 02:24:33 -0400 |
|---|---|---|
| committer | Geert Uytterhoeven <geert@linux-m68k.org> | 2012-11-14 02:50:55 -0500 |
| commit | 8e2e7656d4fac8059e35d44b7779ce1169f1a971 (patch) | |
| tree | 23edad9777cc7194514a5a8e8e92f775e1b46232 /arch/m68k/include/uapi/asm | |
| parent | 82ac6c1f06ec8e79acc87669cbc9614094ef6c69 (diff) | |
m68k: switch to using the asm-generic shmbuf.h
We don't need a local shmbuf.h, switch to using the asm-generic version.
Signed-off-by: Greg Ungerer <gerg@uclinux.org>
Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
Diffstat (limited to 'arch/m68k/include/uapi/asm')
| -rw-r--r-- | arch/m68k/include/uapi/asm/Kbuild | 2 | ||||
| -rw-r--r-- | arch/m68k/include/uapi/asm/shmbuf.h | 42 |
2 files changed, 1 insertions, 43 deletions
diff --git a/arch/m68k/include/uapi/asm/Kbuild b/arch/m68k/include/uapi/asm/Kbuild index 637f15a38849..151b71da8f1e 100644 --- a/arch/m68k/include/uapi/asm/Kbuild +++ b/arch/m68k/include/uapi/asm/Kbuild | |||
| @@ -4,6 +4,7 @@ include include/uapi/asm-generic/Kbuild.asm | |||
| 4 | generic-y += auxvec.h | 4 | generic-y += auxvec.h |
| 5 | generic-y += msgbuf.h | 5 | generic-y += msgbuf.h |
| 6 | generic-y += sembuf.h | 6 | generic-y += sembuf.h |
| 7 | generic-y += shmbuf.h | ||
| 7 | 8 | ||
| 8 | header-y += a.out.h | 9 | header-y += a.out.h |
| 9 | header-y += byteorder.h | 10 | header-y += byteorder.h |
| @@ -15,7 +16,6 @@ header-y += poll.h | |||
| 15 | header-y += posix_types.h | 16 | header-y += posix_types.h |
| 16 | header-y += ptrace.h | 17 | header-y += ptrace.h |
| 17 | header-y += setup.h | 18 | header-y += setup.h |
| 18 | header-y += shmbuf.h | ||
| 19 | header-y += sigcontext.h | 19 | header-y += sigcontext.h |
| 20 | header-y += signal.h | 20 | header-y += signal.h |
| 21 | header-y += socket.h | 21 | header-y += socket.h |
diff --git a/arch/m68k/include/uapi/asm/shmbuf.h b/arch/m68k/include/uapi/asm/shmbuf.h deleted file mode 100644 index f8928d62f1b7..000000000000 --- a/arch/m68k/include/uapi/asm/shmbuf.h +++ /dev/null | |||
| @@ -1,42 +0,0 @@ | |||
| 1 | #ifndef _M68K_SHMBUF_H | ||
| 2 | #define _M68K_SHMBUF_H | ||
| 3 | |||
| 4 | /* | ||
| 5 | * The shmid64_ds structure for m68k architecture. | ||
| 6 | * Note extra padding because this structure is passed back and forth | ||
| 7 | * between kernel and user space. | ||
| 8 | * | ||
| 9 | * Pad space is left for: | ||
| 10 | * - 64-bit time_t to solve y2038 problem | ||
| 11 | * - 2 miscellaneous 32-bit values | ||
| 12 | */ | ||
| 13 | |||
| 14 | struct shmid64_ds { | ||
| 15 | struct ipc64_perm shm_perm; /* operation perms */ | ||
| 16 | size_t shm_segsz; /* size of segment (bytes) */ | ||
| 17 | __kernel_time_t shm_atime; /* last attach time */ | ||
| 18 | unsigned long __unused1; | ||
| 19 | __kernel_time_t shm_dtime; /* last detach time */ | ||
| 20 | unsigned long __unused2; | ||
| 21 | __kernel_time_t shm_ctime; /* last change time */ | ||
| 22 | unsigned long __unused3; | ||
| 23 | __kernel_pid_t shm_cpid; /* pid of creator */ | ||
| 24 | __kernel_pid_t shm_lpid; /* pid of last operator */ | ||
| 25 | unsigned long shm_nattch; /* no. of current attaches */ | ||
| 26 | unsigned long __unused4; | ||
| 27 | unsigned long __unused5; | ||
| 28 | }; | ||
| 29 | |||
| 30 | struct shminfo64 { | ||
| 31 | unsigned long shmmax; | ||
| 32 | unsigned long shmmin; | ||
| 33 | unsigned long shmmni; | ||
| 34 | unsigned long shmseg; | ||
| 35 | unsigned long shmall; | ||
| 36 | unsigned long __unused1; | ||
| 37 | unsigned long __unused2; | ||
| 38 | unsigned long __unused3; | ||
| 39 | unsigned long __unused4; | ||
| 40 | }; | ||
| 41 | |||
| 42 | #endif /* _M68K_SHMBUF_H */ | ||
