Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 9b7e30ab authored by Aurelien Jarno's avatar Aurelien Jarno Committed by Rich Felker
Browse files

sh: fix futex FUTEX_OP_SET op on userspace addresses



Commit 00b73d8d ("sh: add working futex atomic ops on userspace
addresses for smp") changed the futex_atomic_op_inuser function to
use a loop. In case of the FUTEX_OP_SET op with a userspace address
containing a value different of 0, this loop is an endless loop.

Fix that by loading the value of oldval from the userspace before doing
the cmpxchg op, also for the FUTEX_OP_SET case.

Signed-off-by: default avatarAurelien Jarno <aurelien@aurel32.net>
Signed-off-by: default avatarRich Felker <dalias@libc.org>
parent 0adb3285
Loading
Loading
Loading
Loading
+1 −4
Original line number Diff line number Diff line
@@ -37,9 +37,6 @@ static inline int arch_futex_atomic_op_inuser(int op, u32 oparg, int *oval,
	pagefault_disable();

	do {
		if (op == FUTEX_OP_SET)
			ret = oldval = 0;
		else
		ret = get_user(oldval, uaddr);

		if (ret) break;