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, 27 Mar 2014 00:02:52 -0600
From:	Robert Hancock <hancockrwd@...il.com>
To:	jimmie.davis@...com.com, umgwanakikbuti@...il.com
CC:	oneukum@...e.de, artem_fetishev@...m.com, peterz@...radead.org,
	kosaki.motohiro@...fujitsu.com, linux-kernel@...r.kernel.org
Subject: Re: Bug 71331 - mlock yields processor to lower priority process

On 21/03/14 08:50 AM, jimmie.davis@...com.com wrote:>
 > ________________________________________
 > From: Mike Galbraith [umgwanakikbuti@...il.com]
 > Sent: Friday, March 21, 2014 9:41 AM
 > To: Davis, Bud @ SSG - Link
 > Cc: oneukum@...e.de; artem_fetishev@...m.com; peterz@...radead.org; 
kosaki.motohiro@...fujitsu.com; linux-kernel@...r.kernel.org
 > Subject: RE: Bug 71331 - mlock yields processor to lower priority process
 >
 > On Fri, 2014-03-21 at 14:01 +0000, jimmie.davis@...com.com wrote:
 >
 >> If you call mlock () from a SCHED_FIFO task, you expect it to return
 >> when done.  You don't expect it to block, and your task to be
 >> pre-empted.
 >
 > Say some of your pages are sitting in an nfs swapfile orbiting Neptune,
 > how do they get home, and what should we do meanwhile?
 >
 > -Mike
 >
 > Two options.
 >
 > #1. Return with a status value of EAGAIN.
 >
 > or
 >
 > #2.  Don't return until you can do it.
 >
 > If SCHED_FIFO is used, and mlock() is called, the intention of the 
user is very clear.  Run this task until
 > it is completed or it blocks (and until a bit ago, mlock() did not 
block).

Returning EAGAIN is not something that the API definition from POSIX 
allows for, that is only for indicating a failure. If the memory that is 
being locked is not currently residing in RAM, then the memory will need 
to be swapped in before the call returns, which clearly cannot be done 
without blocking. Thus mlock can potentially block, which has not 
changed. Whether or not any kernel behavior has changed to cause this to 
happen in some cases where it didn't previously, the fact remains that 
this is allowed behavior.

Generally real-time applications should not be doing mlock calls during 
their real-time execution for that reason. The required memory regions 
should be locked during startup so that this kind of execution delay can 
be avoided at runtime.

 >
 > SCHED_FIFO users don't care about fairness.  They want the system to 
do what it is told.
 >
 > regards,
 > Bud Davis
 >
 >
 >
 >
 >
 >
 >
 >
 >

--
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