]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
fw_env: correct writes to devices with small erase blocks
authorDustin Byford <dustin@cumulusnetworks.com>
Fri, 7 Mar 2014 04:48:23 +0000 (20:48 -0800)
committerTom Rini <trini@ti.com>
Wed, 12 Mar 2014 21:04:29 +0000 (17:04 -0400)
Some NOR flash devices have a small erase block size.  For example, the
Micron N25Q512 can erase in 4K blocks.  These devices expose a bug in
fw_env.c where flash_write_buf() incorrectly calculates bytes written
and attempts to write past the environment sectors.  Luckily, a range
check prevents any real damage, but this does cause fw_setenv to fail
with an error.

This change corrects the write length calculation.

The bug was introduced with commit 56086921 from 2008 and only affects
configurations where the erase block size is smaller than the total
environment data size.

Signed-off-by: Dustin Byford <dustin@cumulusnetworks.com>
tools/env/fw_env.c

index 649db0493a957e83362401f2ad6bdf92652e3ecc..d228cc34da8637444ee3264597f33bf7a634dfae 100644 (file)
@@ -863,9 +863,9 @@ static int flash_write_buf (int dev, int fd, void *buf, size_t count,
                if (mtd_type != MTD_ABSENT)
                        ioctl(fd, MEMLOCK, &erase);
 
-               processed  += blocklen;
+               processed  += erasesize;
                block_seek = 0;
-               blockstart += blocklen;
+               blockstart += erasesize;
        }
 
        if (write_total > count)