diff options
Diffstat (limited to 'kernel')
-rw-r--r-- | kernel/futex_compat.c | 26 |
1 files changed, 19 insertions, 7 deletions
diff --git a/kernel/futex_compat.c b/kernel/futex_compat.c index 00b572666cc7..0a43def6fee7 100644 --- a/kernel/futex_compat.c +++ b/kernel/futex_compat.c | |||
@@ -30,6 +30,15 @@ fetch_robust_entry(compat_uptr_t *uentry, struct robust_list __user **entry, | |||
30 | return 0; | 30 | return 0; |
31 | } | 31 | } |
32 | 32 | ||
33 | static void __user *futex_uaddr(struct robust_list *entry, | ||
34 | compat_long_t futex_offset) | ||
35 | { | ||
36 | compat_uptr_t base = ptr_to_compat(entry); | ||
37 | void __user *uaddr = compat_ptr(base + futex_offset); | ||
38 | |||
39 | return uaddr; | ||
40 | } | ||
41 | |||
33 | /* | 42 | /* |
34 | * Walk curr->robust_list (very carefully, it's a userspace list!) | 43 | * Walk curr->robust_list (very carefully, it's a userspace list!) |
35 | * and mark any locks found there dead, and notify any waiters. | 44 | * and mark any locks found there dead, and notify any waiters. |
@@ -76,11 +85,12 @@ void compat_exit_robust_list(struct task_struct *curr) | |||
76 | * A pending lock might already be on the list, so | 85 | * A pending lock might already be on the list, so |
77 | * dont process it twice: | 86 | * dont process it twice: |
78 | */ | 87 | */ |
79 | if (entry != pending) | 88 | if (entry != pending) { |
80 | if (handle_futex_death((void __user *)entry + futex_offset, | 89 | void __user *uaddr = futex_uaddr(entry, futex_offset); |
81 | curr, pi)) | ||
82 | return; | ||
83 | 90 | ||
91 | if (handle_futex_death(uaddr, curr, pi)) | ||
92 | return; | ||
93 | } | ||
84 | if (rc) | 94 | if (rc) |
85 | return; | 95 | return; |
86 | uentry = next_uentry; | 96 | uentry = next_uentry; |
@@ -94,9 +104,11 @@ void compat_exit_robust_list(struct task_struct *curr) | |||
94 | 104 | ||
95 | cond_resched(); | 105 | cond_resched(); |
96 | } | 106 | } |
97 | if (pending) | 107 | if (pending) { |
98 | handle_futex_death((void __user *)pending + futex_offset, | 108 | void __user *uaddr = futex_uaddr(pending, futex_offset); |
99 | curr, pip); | 109 | |
110 | handle_futex_death(uaddr, curr, pip); | ||
111 | } | ||
100 | } | 112 | } |
101 | 113 | ||
102 | asmlinkage long | 114 | asmlinkage long |