4 * Copyright (C) 2004 Jens Axboe <axboe@suse.de>
6 * Helper functions for setting/querying io priorities of processes. The
7 * system calls closely mimmick getpriority/setpriority, see the man page for
8 * those. The prio argument is a composite of prio class and prio data, where
9 * the data argument has meaning within that class. The standard scheduling
10 * classes have 8 distinct prio levels, with 0 being the highest prio and 7
13 * IOW, setting BE scheduling class with prio 2 is done ala:
15 * unsigned int prio = (IOPRIO_CLASS_BE << IOPRIO_CLASS_SHIFT) | 2;
17 * ioprio_set(PRIO_PROCESS, pid, prio);
19 * See also Documentation/block/ioprio.txt
22 #include <linux/kernel.h>
23 #include <linux/ioprio.h>
24 #include <linux/blkdev.h>
26 static int set_task_ioprio(struct task_struct *task, int ioprio)
28 struct io_context *ioc;
30 if (task->uid != current->euid &&
31 task->uid != current->uid && !capable(CAP_SYS_NICE))
36 task->ioprio = ioprio;
38 ioc = task->io_context;
39 if (ioc && ioc->set_ioprio)
40 ioc->set_ioprio(ioc, ioprio);
46 asmlinkage long sys_ioprio_set(int which, int who, int ioprio)
48 int class = IOPRIO_PRIO_CLASS(ioprio);
49 int data = IOPRIO_PRIO_DATA(ioprio);
50 struct task_struct *p, *g;
51 struct user_struct *user;
56 if (!capable(CAP_SYS_ADMIN))
58 /* fall through, rt has prio field too */
60 if (data >= IOPRIO_BE_NR || data < 0)
64 case IOPRIO_CLASS_IDLE:
65 if (!capable(CAP_SYS_ADMIN))
73 read_lock_irq(&tasklist_lock);
75 case IOPRIO_WHO_PROCESS:
79 p = find_task_by_pid(who);
81 ret = set_task_ioprio(p, ioprio);
85 who = process_group(current);
86 do_each_task_pid(who, PIDTYPE_PGID, p) {
87 ret = set_task_ioprio(p, ioprio);
90 } while_each_task_pid(who, PIDTYPE_PGID, p);
96 user = find_user(who);
101 do_each_thread(g, p) {
104 ret = set_task_ioprio(p, ioprio);
107 } while_each_thread(g, p);
116 read_unlock_irq(&tasklist_lock);
120 asmlinkage long sys_ioprio_get(int which, int who)
122 struct task_struct *g, *p;
123 struct user_struct *user;
126 read_lock_irq(&tasklist_lock);
128 case IOPRIO_WHO_PROCESS:
132 p = find_task_by_pid(who);
136 case IOPRIO_WHO_PGRP:
138 who = process_group(current);
139 do_each_task_pid(who, PIDTYPE_PGID, p) {
143 ret = ioprio_best(ret, p->ioprio);
144 } while_each_task_pid(who, PIDTYPE_PGID, p);
146 case IOPRIO_WHO_USER:
148 user = current->user;
150 user = find_user(who);
155 do_each_thread(g, p) {
156 if (p->uid != user->uid)
161 ret = ioprio_best(ret, p->ioprio);
162 } while_each_thread(g, p);
171 read_unlock_irq(&tasklist_lock);