diff options
Diffstat (limited to 'fs/ioprio.c')
| -rw-r--r-- | fs/ioprio.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/ioprio.c b/fs/ioprio.c index 2072e41785d..5e6dbe8958f 100644 --- a/fs/ioprio.c +++ b/fs/ioprio.c @@ -37,8 +37,8 @@ int set_task_ioprio(struct task_struct *task, int ioprio)  	rcu_read_lock();  	tcred = __task_cred(task); -	if (tcred->uid != cred->euid && -	    tcred->uid != cred->uid && !capable(CAP_SYS_NICE)) { +	if (!uid_eq(tcred->uid, cred->euid) && +	    !uid_eq(tcred->uid, cred->uid) && !capable(CAP_SYS_NICE)) {  		rcu_read_unlock();  		return -EPERM;  	}  |