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:	Sat, 10 Feb 2007 11:35:09 -0800 (PST)
From:	Linus Torvalds <torvalds@...ux-foundation.org>
To:	Davide Libenzi <davidel@...ilserver.org>
cc:	Zach Brown <zach.brown@...cle.com>,
	Linux Kernel Mailing List <linux-kernel@...r.kernel.org>,
	linux-aio@...ck.org, Suparna Bhattacharya <suparna@...ibm.com>,
	Benjamin LaHaise <bcrl@...ck.org>, Ingo Molnar <mingo@...e.hu>
Subject: Re: [PATCH 0 of 4] Generic AIO by scheduling stacks



On Sat, 10 Feb 2007, Linus Torvalds wrote:
> 
> But that makes it impossible to do things synchronously, which I think is 
> a *major* mistake.
> 
> The whole (and really _only_) point of my patch was really the whole 
> "synchronous call" part. I'm personally of the opinion that if you cannot 
> handle the cached case as fast as just doing the system call directly, 
> then the whole thing is almost pointless.

Side note: one of the nice things with "do it synchronously if you can" is 
that it also likely would allow us to do a reasonable job at "self-tuning" 
things in the kernel. With my async approach, we get notified only when we 
block, so it'seasy (for example) to have a simple counter that 
automatically adapts to the number of outstanding IO's, in a way that it's 
_not_ if we do things at submit time when we won't even know whether it 
will block or not.

As a trivial example: we actually see what *kind* of blocking it is. Is it 
blocking interruptibly ("long wait") or uninterruptibly ("disk wait")? So 
by the time schedule_async() is called, we actually have some more 
information about the situation, and we can even do different things 
(possibly based on just hints that the user and/or system maintainer gives 
us; ie you can tune the behaviour from _outside_ by setting different 
limits, for example).

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