lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:   Thu, 23 Jul 2020 23:00:50 -0400
From:   Waiman Long <longman@...hat.com>
To:     Peter Oskolkov <posk@...k.io>,
        Peter Zijlstra <peterz@...radead.org>
Cc:     Linux Kernel Mailing List <linux-kernel@...r.kernel.org>,
        Thomas Gleixner <tglx@...utronix.de>,
        Ingo Molnar <mingo@...hat.com>, Ingo Molnar <mingo@...nel.org>,
        Darren Hart <dvhart@...radead.org>,
        Vincent Guittot <vincent.guittot@...aro.org>,
        Peter Oskolkov <posk@...gle.com>,
        Andrei Vagin <avagin@...gle.com>, Paul Turner <pjt@...gle.com>,
        Ben Segall <bsegall@...gle.com>, Aaron Lu <aaron.lwe@...il.com>
Subject: Re: [PATCH for 5.9 1/3] futex: introduce FUTEX_SWAP operation

On 7/23/20 8:25 PM, Peter Oskolkov wrote:
> On Thu, Jul 23, 2020 at 4:28 AM Peter Zijlstra <peterz@...radead.org> wrote:
>
> Thanks a lot for your comments, Peter! My answers below.
>
>> On Wed, Jul 22, 2020 at 04:45:36PM -0700, Peter Oskolkov wrote:
>>> This patchset is the first step to open-source this work. As explained
>>> in the linked pdf and video, SwitchTo API has three core operations: wait,
>>> resume, and swap (=switch). So this patchset adds a FUTEX_SWAP operation
>>> that, in addition to FUTEX_WAIT and FUTEX_WAKE, will provide a foundation
>>> on top of which user-space threading libraries can be built.
>> The PDF and video can go pound sand; you get to fully explain things
>> here.
> Will do. Should I expand the cover letter or the commit message? (I'll probably
> split the first patch into two in the latter case).

You should put it mostly in the commit message which will be part of the 
git log history. The cover letter, on the other hand, is not part of the 
git log.


>
>> What worries me is how FUTEX_SWAP would interact with the future
>> FUTEX_LOCK / FUTEX_UNLOCK. When we implement pthread_mutex with those,
>> there's very few WAIT/WAKE left.
> [+cc Waiman Long]
>
> I've looked through the latest FUTEX_LOCK patchset I could find (
> https://lore.kernel.org/patchwork/cover/772643/ and related), and it seems
> that FUTEX_SWAP and FUTEX_LOCK/FUTEX_UNLOCK patchsets
> address the same issue (slow wakeups) but for different use cases:
>
> FUTEX_LOCK/FUTEX_UNLOCK uses spinning and lock stealing to
> improve futex wake/wait performance in high contention situations;
> FUTEX_SWAP is designed to be used for fast context switching with
> _no_ contention by design: the waker that is going to sleep, and the wakee
> are using different futexes; the userspace will have a futex per thread/task,
> and when needed the thread/task will either simply sleep on its futex,
> or context switch (=FUTEX_SWAP) into a different thread/task.

I agree that it is a different use case. I just hope that you keep the 
possible future extension to support FUTEX_LOCK/UNLOCK in mind so that 
they won't conflict with each other.

Cheers,
Longman

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ