From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from imladris.demon.co.uk ([193.237.130.41] helo=lapdancer.baythorne.internal) by pentafluge.infradead.org with esmtp (Exim 4.14 #3 (Red Hat Linux)) id 19WjiS-0002aS-1n for ; Sun, 29 Jun 2003 22:28:08 +0100 From: David Woodhouse To: Russell King In-Reply-To: <20030629213450.B5653@flint.arm.linux.org.uk> References: <20030623010031.E16537@flint.arm.linux.org.uk> <1056544988.24294.9.camel@passion.cambridge.redhat.com> <20030629213450.B5653@flint.arm.linux.org.uk> Message-Id: <1056922045.6616.28.camel@lapdancer.baythorne.internal> Mime-Version: 1.0 Date: Sun, 29 Jun 2003 22:27:25 +0100 Content-Type: text/plain Content-Transfer-Encoding: 7bit cc: linux-mtd@lists.infradead.org cc: Linux Kernel List Subject: Re: [PATCH] Fix mtdblock / mtdpart / mtdconcat List-Id: Linux MTD discussion mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , On Sun, 2003-06-29 at 21:34, Russell King wrote: > While looking over the changes between 1.5 and 1.6, I spotted this. You > may want to fix this change: > > - concat->mtd.eccsize != subdev[i]->eccsize) { > + concat->mtd.eccsize != subdev[i]->eccsize || > + !concat->mtd.read_ecc != !concat->mtd.read_ecc || > + !concat->mtd.write_ecc != !concat->mtd.write_ecc || > + !concat->mtd.read_oob != !concat->mtd.read_oob || > + !concat->mtd.write_oob != !concat->mtd.write_oob) { Oops. Fixed in CVS. -- dwmw2