diff options
| author | Linus Torvalds <torvalds@linux-foundation.org> | 2012-03-29 17:49:45 -0400 |
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2012-03-29 17:49:45 -0400 |
| commit | 50483c3268918ee51a56d1baa39b9149d2d0d521 (patch) | |
| tree | 2fb9c927c319628ebddfd118c10df3e626bdd1c4 /include/linux | |
| parent | 7fda0412c5f7afdd1a5ff518f98dee5157266d8a (diff) | |
| parent | 1631fcea8399da5e80a80084b3b8c5bfd99d21e7 (diff) | |
Merge git://git.kernel.org/pub/scm/linux/kernel/git/cmetcalf/linux-tile
Pull arch/tile (really asm-generic) update from Chris Metcalf:
"These are a couple of asm-generic changes that apply to tile."
* git://git.kernel.org/pub/scm/linux/kernel/git/cmetcalf/linux-tile:
compat: use sys_sendfile64() implementation for sendfile syscall
[PATCH v3] ipc: provide generic compat versions of IPC syscalls
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/compat.h | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/include/linux/compat.h b/include/linux/compat.h index 7e05fcee75a1..35c2dbf2448a 100644 --- a/include/linux/compat.h +++ b/include/linux/compat.h | |||
| @@ -224,6 +224,7 @@ struct compat_sysinfo; | |||
| 224 | struct compat_sysctl_args; | 224 | struct compat_sysctl_args; |
| 225 | struct compat_kexec_segment; | 225 | struct compat_kexec_segment; |
| 226 | struct compat_mq_attr; | 226 | struct compat_mq_attr; |
| 227 | struct compat_msgbuf; | ||
| 227 | 228 | ||
| 228 | extern void compat_exit_robust_list(struct task_struct *curr); | 229 | extern void compat_exit_robust_list(struct task_struct *curr); |
| 229 | 230 | ||
| @@ -234,13 +235,22 @@ asmlinkage long | |||
| 234 | compat_sys_get_robust_list(int pid, compat_uptr_t __user *head_ptr, | 235 | compat_sys_get_robust_list(int pid, compat_uptr_t __user *head_ptr, |
| 235 | compat_size_t __user *len_ptr); | 236 | compat_size_t __user *len_ptr); |
| 236 | 237 | ||
| 238 | #ifdef CONFIG_ARCH_WANT_OLD_COMPAT_IPC | ||
| 237 | long compat_sys_semctl(int first, int second, int third, void __user *uptr); | 239 | long compat_sys_semctl(int first, int second, int third, void __user *uptr); |
| 238 | long compat_sys_msgsnd(int first, int second, int third, void __user *uptr); | 240 | long compat_sys_msgsnd(int first, int second, int third, void __user *uptr); |
| 239 | long compat_sys_msgrcv(int first, int second, int msgtyp, int third, | 241 | long compat_sys_msgrcv(int first, int second, int msgtyp, int third, |
| 240 | int version, void __user *uptr); | 242 | int version, void __user *uptr); |
| 241 | long compat_sys_msgctl(int first, int second, void __user *uptr); | ||
| 242 | long compat_sys_shmat(int first, int second, compat_uptr_t third, int version, | 243 | long compat_sys_shmat(int first, int second, compat_uptr_t third, int version, |
| 243 | void __user *uptr); | 244 | void __user *uptr); |
| 245 | #else | ||
| 246 | long compat_sys_semctl(int semid, int semnum, int cmd, int arg); | ||
| 247 | long compat_sys_msgsnd(int msqid, struct compat_msgbuf __user *msgp, | ||
| 248 | size_t msgsz, int msgflg); | ||
| 249 | long compat_sys_msgrcv(int msqid, struct compat_msgbuf __user *msgp, | ||
| 250 | size_t msgsz, long msgtyp, int msgflg); | ||
| 251 | long compat_sys_shmat(int shmid, compat_uptr_t shmaddr, int shmflg); | ||
| 252 | #endif | ||
| 253 | long compat_sys_msgctl(int first, int second, void __user *uptr); | ||
| 244 | long compat_sys_shmctl(int first, int second, void __user *uptr); | 254 | long compat_sys_shmctl(int first, int second, void __user *uptr); |
| 245 | long compat_sys_semtimedop(int semid, struct sembuf __user *tsems, | 255 | long compat_sys_semtimedop(int semid, struct sembuf __user *tsems, |
| 246 | unsigned nsems, const struct compat_timespec __user *timeout); | 256 | unsigned nsems, const struct compat_timespec __user *timeout); |
