diff options
Diffstat (limited to 'kernel/futex_compat.c')
-rw-r--r-- | kernel/futex_compat.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/kernel/futex_compat.c b/kernel/futex_compat.c index 3254d4e41e88..2c3fd5ed34f5 100644 --- a/kernel/futex_compat.c +++ b/kernel/futex_compat.c | |||
@@ -151,8 +151,9 @@ compat_sys_get_robust_list(int pid, compat_uptr_t __user *head_ptr, | |||
151 | if (!p) | 151 | if (!p) |
152 | goto err_unlock; | 152 | goto err_unlock; |
153 | ret = -EPERM; | 153 | ret = -EPERM; |
154 | if (euid != p->euid && euid != p->uid && | 154 | if (euid != p->cred->euid && |
155 | !capable(CAP_SYS_PTRACE)) | 155 | euid != p->cred->uid && |
156 | !capable(CAP_SYS_PTRACE)) | ||
156 | goto err_unlock; | 157 | goto err_unlock; |
157 | head = p->compat_robust_list; | 158 | head = p->compat_robust_list; |
158 | read_unlock(&tasklist_lock); | 159 | read_unlock(&tasklist_lock); |