2 * Access to user system call parameters and results
4 * Copyright IBM Corp. 2008
5 * Author(s): Martin Schwidefsky (schwidefsky@de.ibm.com)
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License (version 2 only)
9 * as published by the Free Software Foundation.
12 #ifndef _ASM_SYSCALL_H
13 #define _ASM_SYSCALL_H 1
15 #include <linux/sched.h>
16 #include <linux/err.h>
17 #include <asm/ptrace.h>
20 * The syscall table always contains 32 bit pointers since we know that the
21 * address of the function to be called is (way) below 4GB. So the "int"
22 * type here is what we want [need] for both 32 bit and 64 bit systems.
24 extern const unsigned int sys_call_table
[];
26 static inline long syscall_get_nr(struct task_struct
*task
,
29 return test_tsk_thread_flag(task
, TIF_SYSCALL
) ?
30 (regs
->svc_code
& 0xffff) : -1;
33 static inline void syscall_rollback(struct task_struct
*task
,
36 regs
->gprs
[2] = regs
->orig_gpr2
;
39 static inline long syscall_get_error(struct task_struct
*task
,
42 return IS_ERR_VALUE(regs
->gprs
[2]) ? regs
->gprs
[2] : 0;
45 static inline long syscall_get_return_value(struct task_struct
*task
,
51 static inline void syscall_set_return_value(struct task_struct
*task
,
55 regs
->gprs
[2] = error
? -error
: val
;
58 static inline void syscall_get_arguments(struct task_struct
*task
,
60 unsigned int i
, unsigned int n
,
63 unsigned long mask
= -1UL;
67 if (test_tsk_thread_flag(task
, TIF_31BIT
))
72 args
[n
] = regs
->gprs
[2 + i
+ n
] & mask
;
74 args
[0] = regs
->orig_gpr2
& mask
;
77 static inline void syscall_set_arguments(struct task_struct
*task
,
79 unsigned int i
, unsigned int n
,
80 const unsigned long *args
)
85 regs
->gprs
[2 + i
+ n
] = args
[n
];
87 regs
->orig_gpr2
= args
[0];
90 #endif /* _ASM_SYSCALL_H */