From b33e4690271cb8084631db8ccb5ed8e2ecec48bd Mon Sep 17 00:00:00 2001 From: Dmitry Chagin Date: Thu, 29 Jul 2021 12:50:43 +0300 Subject: [PATCH] linux(4): Finish cf8d74e3fe63. Add forgotten val3_compare initialization in case of time64 futex. MFC after: 2 weeks --- sys/compat/linux/linux_futex.c | 1 + 1 file changed, 1 insertion(+) diff --git a/sys/compat/linux/linux_futex.c b/sys/compat/linux/linux_futex.c index 82a1eb55d61..b002d728117 100644 --- a/sys/compat/linux/linux_futex.c +++ b/sys/compat/linux/linux_futex.c @@ -888,6 +888,7 @@ linux_sys_futex_time64(struct thread *td, .ts = NULL, .uaddr2 = args->uaddr2, .val3 = args->val3, + .val3_compare = true, }; struct l_timespec64 lts; int error;