Skip to content
Snippets Groups Projects
Commit 4b774ff1 authored by Dustin Byford's avatar Dustin Byford Committed by Tom Rini
Browse files

fw_env: correct writes to devices with small erase blocks


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: default avatarDustin Byford <dustin@cumulusnetworks.com>
parent 23869bf8
No related branches found
No related tags found
No related merge requests found
...@@ -863,9 +863,9 @@ static int flash_write_buf (int dev, int fd, void *buf, size_t count, ...@@ -863,9 +863,9 @@ static int flash_write_buf (int dev, int fd, void *buf, size_t count,
if (mtd_type != MTD_ABSENT) if (mtd_type != MTD_ABSENT)
ioctl(fd, MEMLOCK, &erase); ioctl(fd, MEMLOCK, &erase);
processed += blocklen; processed += erasesize;
block_seek = 0; block_seek = 0;
blockstart += blocklen; blockstart += erasesize;
} }
if (write_total > count) if (write_total > count)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment