unofficial mirror of libc-alpha@sourceware.org
 help / color / mirror / Atom feed
From: "André Almeida via Libc-alpha" <libc-alpha@sourceware.org>
To: Thomas Gleixner <tglx@linutronix.de>,
	Peter Zijlstra <peterz@infradead.org>
Cc: fweimer@redhat.com, shuah@kernel.org, libc-alpha@sourceware.org,
	corbet@lwn.net, linux-api@vger.kernel.org,
	Sebastian Andrzej Siewior <bigeasy@linutronix.de>,
	linux-kernel@vger.kernel.org,
	Steven Rostedt <rostedt@goodmis.org>,
	Peter Oskolkov <posk@posk.io>, Ingo Molnar <mingo@redhat.com>,
	malteskarupke@fastmail.fm, linux-kselftest@vger.kernel.org,
	joel@joelfernandes.org, Darren Hart <dvhart@infradead.org>,
	acme@kernel.org, kernel@collabora.com, krisman@collabora.com,
	z.figura12@gmail.com, pgriffais@valvesoftware.com
Subject: Re: [PATCH v3 00/13] Add futex2 syscalls
Date: Thu, 6 May 2021 11:48:36 -0300	[thread overview]
Message-ID: <36e6951e-e7a9-5e82-200e-17668f02447f@collabora.com> (raw)
In-Reply-To: <87bl9pi7if.ffs@nanos.tec.linutronix.de>

Hi Thomas, Peter,

Às 11:23 de 05/05/21, Thomas Gleixner escreveu:
> On Wed, May 05 2021 at 14:31, Peter Zijlstra wrote:
> 
>> On Tue, Apr 27, 2021 at 08:12:35PM -0300, André Almeida wrote:
>>> Hi,
>>>
>>> This patch series introduces the futex2 syscalls.
>>
>> I still utterly detest that this adds a second hash-table for no
>> descernable reason.
>>
>> The new syscall interface does not depend on that in any way, you
>> previously implemented the multi-wait thing in the current futex code.
>>
>> Like I said last time; I'm okay with the new interface, but I don't see
>> why you need to reimplement the insides, that's all pointless code
>> duplication.
> 
> The real question is whether we really need to model all of this along
> the existing futex functionality. I wouldn't mind a new infrastructure
> which addresses all the other known issues of futexes and makes the
> overall design less horrible than what we have now.
> 

Thank you for the feedback. I think we are completing another full 
circle on the proposals. I've proposed a futex2 interface that would use 
the current futex infrastructure[0], but my understanding is that this 
is discouraged given it needs to do big changes in the current futex 
code. Given that, I proceeded with developing a new code for futex2, 
taking in consideration those new use cases (waitv, NUMA, sizes) and 
known issues.

As you know, my original goal with this work is to have a native and 
efficient way to wait on multiple objects. Right now, we've proposed it 
in three different ways, but so far none had much success in being 
merged. Of course, I want to take the approach that better fits the 
community goals, as this patchset suggests - a work that goes away 
further than just implementing a multi-wait feature. But for the benefit 
of not walking in circles, what we need back is a clear direction, in 
order to proceed that.

> But that needs input from futex users (libraries and other horrible
> wrappers) to figure out what they really need, hate, like or do not care
> about.
> 

I think it's clear the use case for "wait on multiple" as a way to 
emulate WinAPI and for Linux native loads like game engines is valid. 
We have been running it in the field with success for the past year or 
so. I'm also working with userspace communities to get a better sense of 
how this and other features would work in the real world. You can read 
an example of that effort with Chromium developers at [1], and there are 
more to come.

Maybe support for multiple futexes and futex2 are disjoint things? The 
multi-wait can be achieved through a (somewhat) simple implementation, 
on the old interface or in a new one, while for futex2 we are still 
unsure about how it should look like and its blocking this feature.

> Without that we are bound to pile more crap on the existing pile of
> horrors forever.
> 
> Thanks,
> 
>          tglx
> 

Thanks,
	André

[0] 
https://lore.kernel.org/lkml/20200612185122.327860-2-andrealmeid@collabora.com/
[1] https://groups.google.com/a/chromium.org/g/chromium-dev/c/5hpH3ckr6_Y

      reply	other threads:[~2021-05-06 14:48 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-04-27 23:12 [PATCH v3 00/13] Add futex2 syscalls André Almeida via Libc-alpha
2021-04-27 23:12 ` [PATCH v3 01/13] futex2: Implement wait and wake functions André Almeida via Libc-alpha
2021-04-27 23:12 ` [PATCH v3 02/13] futex2: Add support for shared futexes André Almeida via Libc-alpha
2021-04-27 23:12 ` [PATCH v3 03/13] futex2: Implement vectorized wait André Almeida via Libc-alpha
2021-04-27 23:12 ` [PATCH v3 04/13] futex2: Implement requeue operation André Almeida via Libc-alpha
2021-04-27 23:12 ` [PATCH v3 05/13] futex2: Add compatibility entry point for x86_x32 ABI André Almeida via Libc-alpha
2021-04-27 23:12 ` [PATCH v3 06/13] docs: locking: futex2: Add documentation André Almeida via Libc-alpha
2021-04-27 23:12 ` [PATCH v3 07/13] selftests: futex2: Add wake/wait test André Almeida via Libc-alpha
2021-04-27 23:12 ` [PATCH v3 08/13] selftests: futex2: Add timeout test André Almeida via Libc-alpha
2021-04-27 23:12 ` [PATCH v3 09/13] selftests: futex2: Add wouldblock test André Almeida via Libc-alpha
2021-04-27 23:12 ` [PATCH v3 10/13] selftests: futex2: Add waitv test André Almeida via Libc-alpha
2021-04-27 23:12 ` [PATCH v3 11/13] selftests: futex2: Add requeue test André Almeida via Libc-alpha
2021-04-27 23:12 ` [PATCH v3 12/13] perf bench: Add futex2 benchmark tests André Almeida via Libc-alpha
2021-04-27 23:12 ` [PATCH v3 13/13] kernel: Enable waitpid() for futex2 André Almeida via Libc-alpha
2021-05-05 12:31 ` [PATCH v3 00/13] Add futex2 syscalls Peter Zijlstra
2021-05-05 14:23   ` Thomas Gleixner via Libc-alpha
2021-05-06 14:48     ` André Almeida via Libc-alpha [this message]

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

  List information: https://www.gnu.org/software/libc/involved.html

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=36e6951e-e7a9-5e82-200e-17668f02447f@collabora.com \
    --to=libc-alpha@sourceware.org \
    --cc=acme@kernel.org \
    --cc=andrealmeid@collabora.com \
    --cc=bigeasy@linutronix.de \
    --cc=corbet@lwn.net \
    --cc=dvhart@infradead.org \
    --cc=fweimer@redhat.com \
    --cc=joel@joelfernandes.org \
    --cc=kernel@collabora.com \
    --cc=krisman@collabora.com \
    --cc=linux-api@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-kselftest@vger.kernel.org \
    --cc=malteskarupke@fastmail.fm \
    --cc=mingo@redhat.com \
    --cc=peterz@infradead.org \
    --cc=pgriffais@valvesoftware.com \
    --cc=posk@posk.io \
    --cc=rostedt@goodmis.org \
    --cc=shuah@kernel.org \
    --cc=tglx@linutronix.de \
    --cc=z.figura12@gmail.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;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).