patch-2.1.100 linux/kernel/sched.c
Next file: linux/kernel/signal.c
Previous file: linux/kernel/printk.c
Back to the patch index
Back to the overall index
- Lines: 23
- Date:
Wed May 6 10:56:06 1998
- Orig file:
v2.1.99/linux/kernel/sched.c
- Orig date:
Wed Apr 1 20:11:54 1998
diff -u --recursive --new-file v2.1.99/linux/kernel/sched.c linux/kernel/sched.c
@@ -1227,7 +1227,7 @@
newprio = increment;
if (increment < 0) {
- if (!suser())
+ if (!capable(CAP_SYS_NICE))
return -EPERM;
newprio = -increment;
increase = 1;
@@ -1322,10 +1322,11 @@
goto out_unlock;
retval = -EPERM;
- if ((policy == SCHED_FIFO || policy == SCHED_RR) && !suser())
+ if ((policy == SCHED_FIFO || policy == SCHED_RR) &&
+ !capable(CAP_SYS_NICE))
goto out_unlock;
if ((current->euid != p->euid) && (current->euid != p->uid) &&
- !suser())
+ !capable(CAP_SYS_NICE))
goto out_unlock;
retval = 0;
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen, slshen@lbl.gov