linux-kselftest.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2] selftests: futex: define SYS_futex on 32-bit architectures with 64-bit time_t
@ 2025-06-27  9:08 Ben Zong-You Xie
  2025-06-28  9:28 ` Muhammad Usama Anjum
  2025-07-06  8:19 ` Thomas Gleixner
  0 siblings, 2 replies; 3+ messages in thread
From: Ben Zong-You Xie @ 2025-06-27  9:08 UTC (permalink / raw)
  Cc: tglx, mingo, peterz, dvhart, dave, andrealmeid, shuah,
	linux-kernel, linux-kselftest, tim609, Ben Zong-You Xie,
	Cynthia Huang

glibc does not define SYS_futex for 32-bit architectures using 64-bit
time_t e.g. riscv32, therefore this test fails to compile since it does not
find SYS_futex in C library headers. Define SYS_futex as SYS_futex_time64
in this situation to ensure successful compilation and compatibility.

Signed-off-by: Cynthia Huang <cynthia@andestech.com>
Signed-off-by: Ben Zong-You Xie <ben717@andestech.com>
---
Changes since v1:
  - Fix the SOB chain

v1 : https://lore.kernel.org/all/20250527093536.3646143-1-ben717@andestech.com/
---
 tools/testing/selftests/futex/include/futextest.h | 11 +++++++++++
 1 file changed, 11 insertions(+)

diff --git a/tools/testing/selftests/futex/include/futextest.h b/tools/testing/selftests/futex/include/futextest.h
index ddbcfc9b7bac..7a5fd1d5355e 100644
--- a/tools/testing/selftests/futex/include/futextest.h
+++ b/tools/testing/selftests/futex/include/futextest.h
@@ -47,6 +47,17 @@ typedef volatile u_int32_t futex_t;
 					 FUTEX_PRIVATE_FLAG)
 #endif

+/*
+ * SYS_futex is expected from system C library, in glibc some 32-bit
+ * architectures (e.g. RV32) are using 64-bit time_t, therefore it doesn't have
+ * SYS_futex defined but just SYS_futex_time64. Define SYS_futex as
+ * SYS_futex_time64 in this situation to ensure the compilation and the
+ * compatibility.
+ */
+#if !defined(SYS_futex) && defined(SYS_futex_time64)
+#define SYS_futex SYS_futex_time64
+#endif
+
 /**
  * futex() - SYS_futex syscall wrapper
  * @uaddr:	address of first futex
--
2.34.1

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH v2] selftests: futex: define SYS_futex on 32-bit architectures with 64-bit time_t
  2025-06-27  9:08 [PATCH v2] selftests: futex: define SYS_futex on 32-bit architectures with 64-bit time_t Ben Zong-You Xie
@ 2025-06-28  9:28 ` Muhammad Usama Anjum
  2025-07-06  8:19 ` Thomas Gleixner
  1 sibling, 0 replies; 3+ messages in thread
From: Muhammad Usama Anjum @ 2025-06-28  9:28 UTC (permalink / raw)
  To: Ben Zong-You Xie
  Cc: tglx, mingo, peterz, dvhart, dave, andrealmeid, shuah,
	linux-kernel, linux-kselftest, tim609, Cynthia Huang

On 6/27/25 2:08 PM, Ben Zong-You Xie wrote:
> glibc does not define SYS_futex for 32-bit architectures using 64-bit
> time_t e.g. riscv32, therefore this test fails to compile since it does not
> find SYS_futex in C library headers. Define SYS_futex as SYS_futex_time64
> in this situation to ensure successful compilation and compatibility.
> 
> Signed-off-by: Cynthia Huang <cynthia@andestech.com>
> Signed-off-by: Ben Zong-You Xie <ben717@andestech.com>
Reviewed-by: Muhammad Usama Anjum <usama.anjum@collabora.com>

> ---
> Changes since v1:
>   - Fix the SOB chain
> 
> v1 : https://lore.kernel.org/all/20250527093536.3646143-1-ben717@andestech.com/
> ---
>  tools/testing/selftests/futex/include/futextest.h | 11 +++++++++++
>  1 file changed, 11 insertions(+)
> 
> diff --git a/tools/testing/selftests/futex/include/futextest.h b/tools/testing/selftests/futex/include/futextest.h
> index ddbcfc9b7bac..7a5fd1d5355e 100644
> --- a/tools/testing/selftests/futex/include/futextest.h
> +++ b/tools/testing/selftests/futex/include/futextest.h
> @@ -47,6 +47,17 @@ typedef volatile u_int32_t futex_t;
>  					 FUTEX_PRIVATE_FLAG)
>  #endif
> 
> +/*
> + * SYS_futex is expected from system C library, in glibc some 32-bit
> + * architectures (e.g. RV32) are using 64-bit time_t, therefore it doesn't have
> + * SYS_futex defined but just SYS_futex_time64. Define SYS_futex as
> + * SYS_futex_time64 in this situation to ensure the compilation and the
> + * compatibility.
> + */
> +#if !defined(SYS_futex) && defined(SYS_futex_time64)
> +#define SYS_futex SYS_futex_time64
> +#endif
> +
>  /**
>   * futex() - SYS_futex syscall wrapper
>   * @uaddr:	address of first futex
> --
> 2.34.1


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH v2] selftests: futex: define SYS_futex on 32-bit architectures with 64-bit time_t
  2025-06-27  9:08 [PATCH v2] selftests: futex: define SYS_futex on 32-bit architectures with 64-bit time_t Ben Zong-You Xie
  2025-06-28  9:28 ` Muhammad Usama Anjum
@ 2025-07-06  8:19 ` Thomas Gleixner
  1 sibling, 0 replies; 3+ messages in thread
From: Thomas Gleixner @ 2025-07-06  8:19 UTC (permalink / raw)
  To: Ben Zong-You Xie
  Cc: mingo, peterz, dvhart, dave, andrealmeid, shuah, linux-kernel,
	linux-kselftest, tim609, Ben Zong-You Xie, Cynthia Huang

On Fri, Jun 27 2025 at 17:08, Ben Zong-You Xie wrote:

> glibc does not define SYS_futex for 32-bit architectures using 64-bit

Kinda. The kernel does not provide sys_futex() on 32-bit architectures,
which do not support 32-bit time representations. As a consequence glibc
obviously cannot define SYS_futex either.

> time_t e.g. riscv32, therefore this test fails to compile since it does not
> find SYS_futex in C library headers. Define SYS_futex as SYS_futex_time64
> in this situation to ensure successful compilation and compatibility.
>
> Signed-off-by: Cynthia Huang <cynthia@andestech.com>
> Signed-off-by: Ben Zong-You Xie <ben717@andestech.com>
> ---
> Changes since v1:
>   - Fix the SOB chain

Mostly.

If Cynthia authored the patch, then this still lacks a 'From: Cynthia...'
at the top of the change log so she can be identified as the
author. Otherwise tooling will attribute autorship to you.

Thanks,

        tglx

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2025-07-06  8:19 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-06-27  9:08 [PATCH v2] selftests: futex: define SYS_futex on 32-bit architectures with 64-bit time_t Ben Zong-You Xie
2025-06-28  9:28 ` Muhammad Usama Anjum
2025-07-06  8:19 ` Thomas Gleixner

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).