Page Menu
Home
FreeBSD
Search
Configure Global Search
Log In
Files
F133130210
D31254.id92935.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Flag For Later
Award Token
Size
2 KB
Referenced Files
None
Subscribers
None
D31254.id92935.diff
View Options
diff --git a/sys/compat/linux/linux_futex.c b/sys/compat/linux/linux_futex.c
--- a/sys/compat/linux/linux_futex.c
+++ b/sys/compat/linux/linux_futex.c
@@ -107,8 +107,8 @@
#define GET_SHARED(a) (a->flags & FUTEX_SHARED) ? AUTO_SHARE : THREAD_SHARE
static int futex_atomic_op(struct thread *, int, uint32_t *);
-static int handle_futex_death(struct linux_emuldata *, uint32_t *,
- unsigned int);
+static int handle_futex_death(struct thread *td, struct linux_emuldata *,
+ uint32_t *, unsigned int);
static int fetch_robust_entry(struct linux_robust_list **,
struct linux_robust_list **, unsigned int *);
@@ -982,7 +982,7 @@
}
static int
-handle_futex_death(struct linux_emuldata *em, uint32_t *uaddr,
+handle_futex_death(struct thread *td, struct linux_emuldata *em, uint32_t *uaddr,
unsigned int pi)
{
uint32_t uval, nval, mval;
@@ -994,20 +994,22 @@
return (EFAULT);
if ((uval & FUTEX_TID_MASK) == em->em_tid) {
mval = (uval & FUTEX_WAITERS) | FUTEX_OWNER_DIED;
- nval = casuword32(uaddr, uval, mval);
-
- if (nval == -1)
+ error = casueword32(uaddr, uval, &nval, mval);
+ if (error == -1)
return (EFAULT);
-
- if (nval != uval)
+ if (error == 1) {
+ error = thread_check_susp(td, false);
+ if (error != 0)
+ return (error);
goto retry;
+ }
if (!pi && (uval & FUTEX_WAITERS)) {
- error = futex_wake(curthread, uaddr, 1, true);
+ error = futex_wake(td, uaddr, 1, true);
if (error != 0)
return (error);
} else if (pi && (uval & FUTEX_WAITERS)) {
- error = futex_wake_pi(curthread, uaddr, true);
+ error = futex_wake_pi(td, uaddr, true);
if (error != 0)
return (error);
}
@@ -1067,7 +1069,7 @@
rc = fetch_robust_entry(&next_entry, PTRIN(&entry->next), &next_pi);
if (entry != pending)
- if (handle_futex_death(em,
+ if (handle_futex_death(td, em,
(uint32_t *)((caddr_t)entry + futex_offset), pi)) {
return;
}
@@ -1084,5 +1086,6 @@
}
if (pending)
- handle_futex_death(em, (uint32_t *)((caddr_t)pending + futex_offset), pip);
+ handle_futex_death(td, em,
+ (uint32_t *)((caddr_t)pending + futex_offset), pip);
}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Fri, Oct 24, 5:22 AM (9 h, 10 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
24121834
Default Alt Text
D31254.id92935.diff (2 KB)
Attached To
Mode
D31254: linux(4): Replace casuword32 by casueword32 in handle_futex_death().
Attached
Detach File
Event Timeline
Log In to Comment