From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp102.sbc.mail.mud.yahoo.com ([68.142.198.201]) by canuck.infradead.org with smtp (Exim 4.63 #1 (Red Hat Linux)) id 1Ht4RJ-0001uS-1Y for linux-mtd@lists.infradead.org; Tue, 29 May 2007 12:20:55 -0400 From: David Brownell To: Haavard Skinnemoen Subject: Re: Some issues with the AT91 dataflash driver... Date: Tue, 29 May 2007 09:20:47 -0700 References: <465431DA.5030500@atmel.com> <20070527200853.3caf8206@dhcp-255-175.norway.atmel.com> <20070527211234.40777726@dhcp-255-175.norway.atmel.com> In-Reply-To: <20070527211234.40777726@dhcp-255-175.norway.atmel.com> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200705290920.47808.david-b@pacbell.net> Cc: Artem Bityutskiy , Michal Piotrowski , linux-mtd@lists.infradead.org, Ivan Kuten , Vadim Yatsenko List-Id: Linux MTD discussion mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , On Sunday 27 May 2007, Haavard Skinnemoen wrote: > On Sun, 27 May 2007 20:08:53 +0200 > Haavard Skinnemoen wrote: > > > Now that I've got the CRC errors sorted out, I'll try bisecting it. > > Done. git-bisect blames this commit: > > 10731f83009e2556f98ffa5c7c2cbffe66dacfb3 is first bad commit Reverting that patch made mtd_dataflash work again on my test rig. So this is clearly a JFFS2 regression. (Tested on at45db642b, ~8MB, 1056 byte pages.) Seems to me this should be added to the "known regressions" list for RC3 ... I've added Michal to the CC list, ISTR he is now tracking such regressions. I also added Andrew Victor to the CC, since he's the one who ISTR added Dataflash support to JFFS2 and thus might have quick insights to what this patch broke. - Dave > commit 10731f83009e2556f98ffa5c7c2cbffe66dacfb3 > Author: Artem Bityutskiy > Date: Wed Apr 4 13:59:11 2007 +0300 > > [JFFS2] fix buffer sise calculations in jffs2_get_inode_nodes() > > In read inode we have an optimization which prevents one > min. I/O unit (e.g. NAND page) to be read more then once. > > Namely, at the beginning we do not know which node type we read, > so we read so we assume we read the directory entry, because it > has the smallest node header. When we read it, we read up to the > next min. I/O unit, just because if later we'll need to read more, > we already have this data. > > If it turns out to be that the node is not directory entry, and > we need more data, and we did not read it because it sits in the > next min. I/O unit, we read the whole next (or several next) > min. I/O unit(s). And if it happens to be that we read a data node, > and we've read part of its data, we calculate partial CRC. > So if later we need to check data CRC, we'll only read the rest > of the data from further min. I/O units and continue CRC checking. > > This code was a bit messy and buggy. The bug was that it assumed > relatively large min. I/O unit, so that the largest node header > could overlap only one min. I/O unit boundary. > > This parch clean-ups the code a bit and fixes this bug. > The patch was not tested on flash with small min. I/O unit, like > NOR-ECC, nut it was tested on NAND with 512 bytes NAND page, so > it at least does not break NAND. It was also tested with mtdram > so it should not break NOR. > > Signed-off-by: Artem Bityutskiy > Signed-off-by: David Woodhouse > > I don't have a clue what's wrong with it, but I'll of course help you > debugging if you tell me what to do. > > Haavard >