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] [day] [month] [year] [list]
Date:	Wed, 23 Jul 2014 15:32:22 -0700
From:	Davidlohr Bueso <davidlohr@...com>
To:	Milosz Tanski <milosz@...in.com>
Cc:	Ingo Molnar <mingo@...hat.com>, Thomas Gleixner <tglx@...esys.com>,
	Eric Dumazet <dada1@...mosbay.com>,
	Darren Hart <dvhltc@...ibm.com>,
	LKML <linux-kernel@...r.kernel.org>
Subject: Re: futex: wake explicit / wait on multiple memory locations

On Wed, 2014-07-23 at 12:25 -0400, Milosz Tanski wrote:
> I'm using futexes to control scheduling for a userspace application with multiple queues. 
> There's a global work queue and a specific pre-thread queue. And I would like to have a 
> choice between waking up any thread or a specific thread.

I'm afraid not: the api does not have a place for such an argument:

       FUTEX_WAKE
              This operation wakes at most val processes waiting
              on this futex address (i.e., inside FUTEX_WAIT).  
              The arguments timeout, uaddr2 and val3 are ignored.

In any case, when you start with this sort of thing it starts to get
messy, real fast. You have to play games with the number of tasks to
wakeup in a single futex wake call vs the "chosen" task(s).

> Is there are mechanism in the futex API by which I can control which thread to wake up.

Nope. FIFO and rt tasks always in front.

Thanks,
Davidlohr

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ