diff options
| author | Catalin Marinas <catalin.marinas@arm.com> | 2012-12-17 19:01:45 -0500 |
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2012-12-17 20:15:18 -0500 |
| commit | 0ad50c3896afbb3c103409a18260e601b87a744c (patch) | |
| tree | 3a59c1e90b3ee62daf18bc9689cf454a31f164be /arch/sparc/kernel | |
| parent | 918854a65e856574523d94763ef2a2b48ad55a25 (diff) | |
compat: generic compat_sys_sched_rr_get_interval() implementation
This function is used by sparc, powerpc tile and arm64 for compat support.
The patch adds a generic implementation with a wrapper for PowerPC to do
the u32->int sign extension.
The reason for a single patch covering powerpc, tile, sparc and arm64 is
to keep it bisectable, otherwise kernel building may fail with mismatched
function declarations.
Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
Acked-by: Chris Metcalf <cmetcalf@tilera.com> [for tile]
Acked-by: David S. Miller <davem@davemloft.net>
Acked-by: Arnd Bergmann <arnd@arndb.de>
Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Alexander Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/sparc/kernel')
| -rw-r--r-- | arch/sparc/kernel/sys_sparc32.c | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/arch/sparc/kernel/sys_sparc32.c b/arch/sparc/kernel/sys_sparc32.c index 03c7e929ec3..4a4cdc633f6 100644 --- a/arch/sparc/kernel/sys_sparc32.c +++ b/arch/sparc/kernel/sys_sparc32.c | |||
| @@ -211,20 +211,6 @@ asmlinkage long compat_sys_sysfs(int option, u32 arg1, u32 arg2) | |||
| 211 | return sys_sysfs(option, arg1, arg2); | 211 | return sys_sysfs(option, arg1, arg2); |
| 212 | } | 212 | } |
| 213 | 213 | ||
| 214 | asmlinkage long compat_sys_sched_rr_get_interval(compat_pid_t pid, struct compat_timespec __user *interval) | ||
| 215 | { | ||
| 216 | struct timespec t; | ||
| 217 | int ret; | ||
| 218 | mm_segment_t old_fs = get_fs (); | ||
| 219 | |||
| 220 | set_fs (KERNEL_DS); | ||
| 221 | ret = sys_sched_rr_get_interval(pid, (struct timespec __user *) &t); | ||
| 222 | set_fs (old_fs); | ||
| 223 | if (put_compat_timespec(&t, interval)) | ||
| 224 | return -EFAULT; | ||
| 225 | return ret; | ||
| 226 | } | ||
| 227 | |||
| 228 | asmlinkage long compat_sys_rt_sigprocmask(int how, | 214 | asmlinkage long compat_sys_rt_sigprocmask(int how, |
| 229 | compat_sigset_t __user *set, | 215 | compat_sigset_t __user *set, |
| 230 | compat_sigset_t __user *oset, | 216 | compat_sigset_t __user *oset, |
