[PATCH 0/8] linux-user: Futex improvements

Richard Henderson posted 8 patches 3 years, 5 months ago
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20220829021006.67305-1-richard.henderson@linaro.org
Maintainers: Laurent Vivier <laurent@vivier.eu>
linux-user/syscall_defs.h |   3 +
linux-user/strace.c       | 130 ++++++++++++++++++++++----------------
linux-user/syscall.c      | 125 ++++++++++++++----------------------
3 files changed, 125 insertions(+), 133 deletions(-)
[PATCH 0/8] linux-user: Futex improvements
Posted by Richard Henderson 3 years, 5 months ago
Fixes a bug in FUTEX_FD, and implements a bunch of other ops.
Also, some assorted strace fixes.

r~

Richard Henderson (8):
  linux-user: Combine do_futex and do_futex_time64
  linux-user: Sink call to do_safe_futex
  linux-user: Implement FUTEX_WAKE_BITSET
  linux-user: Convert signal number for FUTEX_FD
  linux-user: Implement PI futexes
  linux-user: Update print_futex_op
  linux-user: Lock log around strace
  linux-user: Log tid for strace

 linux-user/syscall_defs.h |   3 +
 linux-user/strace.c       | 130 ++++++++++++++++++++++----------------
 linux-user/syscall.c      | 125 ++++++++++++++----------------------
 3 files changed, 125 insertions(+), 133 deletions(-)

-- 
2.34.1
Re: [PATCH 0/8] linux-user: Futex improvements
Posted by Laurent Vivier 3 years, 4 months ago
Le 29/08/2022 à 04:09, Richard Henderson a écrit :
> Fixes a bug in FUTEX_FD, and implements a bunch of other ops.
> Also, some assorted strace fixes.
> 
> r~
> 
> Richard Henderson (8):
>    linux-user: Combine do_futex and do_futex_time64
>    linux-user: Sink call to do_safe_futex
>    linux-user: Implement FUTEX_WAKE_BITSET
>    linux-user: Convert signal number for FUTEX_FD
>    linux-user: Implement PI futexes
>    linux-user: Update print_futex_op
>    linux-user: Lock log around strace
>    linux-user: Log tid for strace
> 
>   linux-user/syscall_defs.h |   3 +
>   linux-user/strace.c       | 130 ++++++++++++++++++++++----------------
>   linux-user/syscall.c      | 125 ++++++++++++++----------------------
>   3 files changed, 125 insertions(+), 133 deletions(-)
> 

Series applied to my linux-user-for-7.2 branch.

Thanks,
Laurent