From mboxrd@z Thu Jan 1 00:00:00 1970 Return-path: Received: from metis.ext.pengutronix.de ([2001:6f8:1178:4:290:27ff:fe1d:cc33]) by merlin.infradead.org with esmtps (Exim 4.76 #1 (Red Hat Linux)) id 1SpFZ8-0000et-2O for barebox@lists.infradead.org; Thu, 12 Jul 2012 09:20:21 +0000 From: Jan Luebbe Date: Thu, 12 Jul 2012 11:19:44 +0200 Message-Id: <1342084784-8534-1-git-send-email-jlu@pengutronix.de> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: barebox-bounces@lists.infradead.org Errors-To: barebox-bounces+u.kleine-koenig=pengutronix.de@lists.infradead.org Subject: [PATCH] mtd: fix 'write: Invalid argument' while writing to nand-bb devices To: barebox@lists.infradead.org It seems the 'off_t cur_ofs' variable was missed during the 64 bit conversion. Signed-off-by: Jan Luebbe --- drivers/mtd/nand/nand-bb.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/mtd/nand/nand-bb.c b/drivers/mtd/nand/nand-bb.c index 5b06a9e..519337e 100644 --- a/drivers/mtd/nand/nand-bb.c +++ b/drivers/mtd/nand/nand-bb.c @@ -60,7 +60,7 @@ static ssize_t nand_bb_read(struct cdev *cdev, void *buf, size_t count, struct cdev *parent = bb->cdev_parent; int ret, bytes = 0, now; - debug("%s %d %d\n", __func__, offset, count); + debug("%s 0x%08llx %d\n", __func__, offset, count); while(count) { ret = cdev_ioctl(parent, MEMGETBADBLOCK, &bb->offset); @@ -96,7 +96,7 @@ static int nand_bb_write_buf(struct nand_bb *bb, size_t count) int ret, now; struct cdev *parent = bb->cdev_parent; void *buf = bb->writebuf; - off_t cur_ofs = bb->offset & ~(BB_WRITEBUF_SIZE - 1); + loff_t cur_ofs = bb->offset & ~(BB_WRITEBUF_SIZE - 1); while (count) { ret = cdev_ioctl(parent, MEMGETBADBLOCK, &cur_ofs); @@ -104,7 +104,7 @@ static int nand_bb_write_buf(struct nand_bb *bb, size_t count) return ret; if (ret) { - debug("skipping bad block at 0x%08x\n", cur_ofs); + debug("skipping bad block at 0x%08llx\n", cur_ofs); bb->offset += bb->info.erasesize; cur_ofs += bb->info.erasesize; continue; -- 1.7.10.4 _______________________________________________ barebox mailing list barebox@lists.infradead.org http://lists.infradead.org/mailman/listinfo/barebox