From: "André Almeida" <andrealmeid@igalia.com>
To: Sebastian Andrzej Siewior <bigeasy@linutronix.de>,
linux-kernel@vger.kernel.org
Cc: Darren Hart <dvhart@infradead.org>,
Davidlohr Bueso <dave@stgolabs.net>,
Ingo Molnar <mingo@redhat.com>,
Juri Lelli <juri.lelli@redhat.com>,
Peter Zijlstra <peterz@infradead.org>,
Thomas Gleixner <tglx@linutronix.de>,
Valentin Schneider <vschneid@redhat.com>,
Waiman Long <longman@redhat.com>
Subject: Re: [PATCH 4/5] tools headers: Synchronize prctl.h ABI header
Date: Fri, 16 May 2025 17:06:48 -0300 [thread overview]
Message-ID: <a015ea5b-ed1f-46a3-b4db-c448f0279fc2@igalia.com> (raw)
In-Reply-To: <95608024-1be3-4502-8e41-aba3258010b1@igalia.com>
Em 16/05/2025 17:03, André Almeida escreveu:
> Hi Sebastian,
>
> Thank you for incorporating my feedback :)
>
> Em 16/05/2025 13:03, Sebastian Andrzej Siewior escreveu:
>> The prctl.h ABI header was slightly updated during the development of
>> the interface. In particular the "immutable" parameter became a bit in
>> the option argument.
>>
>> Synchronize prctl.h ABI header again and make use of the definition in
>> the testsuite.
>>
>> Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
>> ---
>> tools/include/uapi/linux/prctl.h | 1 +
>> .../futex/functional/futex_priv_hash.c | 18 +++++++++---------
>> 2 files changed, 10 insertions(+), 9 deletions(-)
>>
>> diff --git a/tools/include/uapi/linux/prctl.h b/tools/include/uapi/
>> linux/prctl.h
>> index 21f30b3ded74b..43dec6eed559a 100644
>> --- a/tools/include/uapi/linux/prctl.h
>> +++ b/tools/include/uapi/linux/prctl.h
>> @@ -367,6 +367,7 @@ struct prctl_mm_map {
>> /* FUTEX hash management */
>> #define PR_FUTEX_HASH 78
>> # define PR_FUTEX_HASH_SET_SLOTS 1
>> +# define FH_FLAG_IMMUTABLE (1ULL << 0)
>> # define PR_FUTEX_HASH_GET_SLOTS 2
>> # define PR_FUTEX_HASH_GET_IMMUTABLE 3
>> diff --git a/tools/testing/selftests/futex/functional/
>> futex_priv_hash.c b/tools/testing/selftests/futex/functional/
>> futex_priv_hash.c
>> index 72a621d9313f3..32abd9acdf186 100644
>> --- a/tools/testing/selftests/futex/functional/futex_priv_hash.c
>> +++ b/tools/testing/selftests/futex/functional/futex_priv_hash.c
>> @@ -30,9 +30,9 @@ static int counter;
>> # define PR_FUTEX_HASH_GET_IMMUTABLE 3
>> #endif
>> -static int futex_hash_slots_set(unsigned int slots, int immutable)
>> +static int futex_hash_slots_set(unsigned int slots, int flags)
>> {
>> - return prctl(PR_FUTEX_HASH, PR_FUTEX_HASH_SET_SLOTS, slots,
>> immutable);
>> + return prctl(PR_FUTEX_HASH, PR_FUTEX_HASH_SET_SLOTS, slots, flags);
>> }
>> static int futex_hash_slots_get(void)
>> @@ -63,11 +63,11 @@ static void futex_hash_slots_set_verify(int slots)
>> ksft_test_result_pass("SET and GET slots %d passed\n", slots);
>> }
>> -static void futex_hash_slots_set_must_fail(int slots, int immutable)
>> +static void futex_hash_slots_set_must_fail(int slots, int flags)
>> {
>> int ret;
>> - ret = futex_hash_slots_set(slots, immutable);
>> + ret = futex_hash_slots_set(slots, flags);
>> ksft_test_result(ret < 0, "futex_hash_slots_set(%d, %d)\n",
>> slots, immutable);
>
> s/immutable/flags
>
>> }
>> @@ -254,18 +254,18 @@ int main(int argc, char *argv[])
>> ret = futex_hash_slots_set(0, 0);
>> ksft_test_result(ret == 0, "Global hash request\n");
>> } else {
>> - ret = futex_hash_slots_set(4, 1);
>> + ret = futex_hash_slots_set(4, FH_FLAG_IMMUTABLE);
>
> This breaks the compilation for me.
>
> So `#include <linux/prctl.h>` is not working for me, it's not using the
> local copy at tools/include/uapi/linux/prctl.h
Oh, nevermind, I found the issue:
--- a/tools/testing/selftests/futex/functional/futex_priv_hash.c
+++ b/tools/testing/selftests/futex/functional/futex_priv_hash.c
@@ -26,6 +26,7 @@ static int counter;
#ifndef PR_FUTEX_HASH
#define PR_FUTEX_HASH 78
# define PR_FUTEX_HASH_SET_SLOTS 1
+# define FH_FLAG_IMMUTABLE (1ULL << 0)
# define PR_FUTEX_HASH_GET_SLOTS 2
# define PR_FUTEX_HASH_GET_IMMUTABLE 3
#endif
next prev parent reply other threads:[~2025-05-16 20:06 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-05-16 16:03 [PATCH 0/5] futex: Random fixes after the private-hash series Sebastian Andrzej Siewior
2025-05-16 16:03 ` [PATCH 1/5] selftests/futex: Use TAP output in futex_priv_hash Sebastian Andrzej Siewior
2025-05-16 20:13 ` André Almeida
2025-05-16 16:03 ` [PATCH 2/5] selftests/futex: Use TAP output in futex_numa_mpol Sebastian Andrzej Siewior
2025-05-16 20:14 ` André Almeida
2025-05-16 16:03 ` [PATCH 3/5] futex: Use RCU_INIT_POINTER() in futex_mm_init() Sebastian Andrzej Siewior
2025-05-16 16:03 ` [PATCH 4/5] tools headers: Synchronize prctl.h ABI header Sebastian Andrzej Siewior
2025-05-16 20:03 ` André Almeida
2025-05-16 20:06 ` André Almeida [this message]
2025-05-17 14:49 ` Sebastian Andrzej Siewior
2025-05-16 20:52 ` André Almeida
2025-05-16 16:03 ` [PATCH 5/5] futex: Correct the kernedoc return value for futex_wait_setup() Sebastian Andrzej Siewior
2025-05-16 20:52 ` André Almeida
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=a015ea5b-ed1f-46a3-b4db-c448f0279fc2@igalia.com \
--to=andrealmeid@igalia.com \
--cc=bigeasy@linutronix.de \
--cc=dave@stgolabs.net \
--cc=dvhart@infradead.org \
--cc=juri.lelli@redhat.com \
--cc=linux-kernel@vger.kernel.org \
--cc=longman@redhat.com \
--cc=mingo@redhat.com \
--cc=peterz@infradead.org \
--cc=tglx@linutronix.de \
--cc=vschneid@redhat.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®