mirror of
https://github.com/adulau/aha.git
synced 2024-12-29 04:06:22 +00:00
[PATCH] move ioprio syscalls into syscalls.h
- Make ioprio syscalls return long, like set/getpriority syscalls. - Move function prototypes into syscalls.h so we can pick them up in the 32/64bit compat code. Signed-off-by: Anton Blanchard <anton@samba.org> Acked-by: Jens Axboe <axboe@suse.de> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
8dc4fd87f2
commit
cf36680887
3 changed files with 5 additions and 5 deletions
|
@ -43,7 +43,7 @@ static int set_task_ioprio(struct task_struct *task, int ioprio)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
asmlinkage int sys_ioprio_set(int which, int who, int ioprio)
|
asmlinkage long sys_ioprio_set(int which, int who, int ioprio)
|
||||||
{
|
{
|
||||||
int class = IOPRIO_PRIO_CLASS(ioprio);
|
int class = IOPRIO_PRIO_CLASS(ioprio);
|
||||||
int data = IOPRIO_PRIO_DATA(ioprio);
|
int data = IOPRIO_PRIO_DATA(ioprio);
|
||||||
|
@ -115,7 +115,7 @@ asmlinkage int sys_ioprio_set(int which, int who, int ioprio)
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
asmlinkage int sys_ioprio_get(int which, int who)
|
asmlinkage long sys_ioprio_get(int which, int who)
|
||||||
{
|
{
|
||||||
struct task_struct *g, *p;
|
struct task_struct *g, *p;
|
||||||
struct user_struct *user;
|
struct user_struct *user;
|
||||||
|
|
|
@ -34,9 +34,6 @@ enum {
|
||||||
*/
|
*/
|
||||||
#define IOPRIO_BE_NR (8)
|
#define IOPRIO_BE_NR (8)
|
||||||
|
|
||||||
asmlinkage int sys_ioprio_set(int, int, int);
|
|
||||||
asmlinkage int sys_ioprio_get(int, int);
|
|
||||||
|
|
||||||
enum {
|
enum {
|
||||||
IOPRIO_WHO_PROCESS = 1,
|
IOPRIO_WHO_PROCESS = 1,
|
||||||
IOPRIO_WHO_PGRP,
|
IOPRIO_WHO_PGRP,
|
||||||
|
|
|
@ -506,4 +506,7 @@ asmlinkage long sys_request_key(const char __user *_type,
|
||||||
asmlinkage long sys_keyctl(int cmd, unsigned long arg2, unsigned long arg3,
|
asmlinkage long sys_keyctl(int cmd, unsigned long arg2, unsigned long arg3,
|
||||||
unsigned long arg4, unsigned long arg5);
|
unsigned long arg4, unsigned long arg5);
|
||||||
|
|
||||||
|
asmlinkage long sys_ioprio_set(int which, int who, int ioprio);
|
||||||
|
asmlinkage long sys_ioprio_get(int which, int who);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue