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 PHC | |
Open Source and information security mailing list archives
| ||
|
Date: Thu, 2 Nov 2017 17:12:13 +0100 From: Boris Brezillon <boris.brezillon@...e-electrons.com> To: Baruch Siach <baruch@...s.co.il> Cc: Marc Gonzalez <marc_gonzalez@...madesigns.com>, Mark Rutland <mark.rutland@....com>, Alan Cox <gnomes@...rguk.ukuu.org.uk>, Russell King <linux@....linux.org.uk>, Jonathan Austin <jonathan.austin@....com>, Arnd Bergmann <arnd@...db.de>, Mason <slash.tmp@...e.fr>, Peter Zijlstra <peterz@...radead.org>, Will Deacon <will.deacon@....com>, Michael Turquette <mturquette@...libre.com>, Nicolas Pitre <nico@...aro.org>, Stephen Boyd <sboyd@...eaurora.org>, LKML <linux-kernel@...r.kernel.org>, Steven Rostedt <rostedt@...dmis.org>, Douglas Anderson <dianders@...omium.org>, Kevin Hilman <khilman@...nel.org>, John Stultz <john.stultz@...aro.org>, linux-mtd@...ts.infradead.org, Thomas Gleixner <tglx@...utronix.de>, Linus Torvalds <torvalds@...ux-foundation.org>, Ingo Molnar <mingo@...nel.org>, Linux ARM <linux-arm-kernel@...ts.infradead.org> Subject: Re: [RFC] Improving udelay/ndelay on platforms where that is possible On Wed, 1 Nov 2017 21:48:22 +0200 Baruch Siach <baruch@...s.co.il> wrote: > Hi Marc, > > On Wed, Nov 01, 2017 at 08:03:20PM +0100, Marc Gonzalez wrote: > > On 01/11/2017 18:53, Alan Cox wrote: > > > For that matter given the bad blocks don't randomly change why not cache > > > them ? > > > > That's a good question, I'll ask the NAND framework maintainer. > > Store them where, by the way? On the NAND chip itself? > > Yes. In the bad block table (bbt). See drivers/mtd/nand/nand_bbt.c. Yes, you can cache this information in a bad block table stored on the flash. But still, the ndelay()/udelay() problem remains: reading the out-of-band area of each eraseblock to re-create the bad block table is just one use case. This ndelay() is something you can have on all kind of read/write operations. As Thomas Gleixner stated, this is not really needed on modern NAND controllers which take care of various timing constraints internally, but still, we have some controllers that are not that smart, and we have to support them. I'm not concerned about performances here, and if I'm told that we should turn all ndelay() calls into usleep_range() ones, then I'm perfectly fine with that, but I need a guarantee that when I say "I want to wait at least X ns/us", the function does not return before that time has expired. Not sure if that would work, but maybe we could create a wrapper like void nand_ndelay(unsigned long nanoseconds) { ktime_t end = ktime_add_ns(ktime_get(), nanoseconds); do { ndelay(nanoseconds); } while (ktime_before(ktime_get(), end)); }
Powered by blists - more mailing lists