diff options
author | Artem Bityutskiy <Artem.Bityutskiy@nokia.com> | 2007-12-06 11:47:30 -0500 |
---|---|---|
committer | Artem Bityutskiy <Artem.Bityutskiy@nokia.com> | 2007-12-26 12:15:14 -0500 |
commit | 393852ecfeec575ac78216b0eb58e4fd92f0816c (patch) | |
tree | 99edbcd7fee9cdaa69f51187834f93ada73feada /drivers/mtd/ubi/eba.c | |
parent | 94780d4de2e9339ab93df63420db70f11882634d (diff) |
UBI: add ubi_leb_map interface
The idea of this interface belongs to Adrian Hunter. The
interface is extremely useful when one has to have a guarantee
that an LEB will contain all 0xFFs even in case of an unclean
reboot. UBI does have an 'ubi_leb_erase()' call which may do
this, but it is stupid and ineffecient, because it flushes whole
queue. I should be re-worked to just be a pair of unmap,
map calls.
The user of the interfaci is UBIFS at the moment.
Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
Diffstat (limited to 'drivers/mtd/ubi/eba.c')
-rw-r--r-- | drivers/mtd/ubi/eba.c | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/drivers/mtd/ubi/eba.c b/drivers/mtd/ubi/eba.c index 85f50c83cf42..c87db07bcd0c 100644 --- a/drivers/mtd/ubi/eba.c +++ b/drivers/mtd/ubi/eba.c | |||
@@ -656,11 +656,14 @@ retry: | |||
656 | goto write_error; | 656 | goto write_error; |
657 | } | 657 | } |
658 | 658 | ||
659 | err = ubi_io_write_data(ubi, buf, pnum, offset, len); | 659 | if (len) { |
660 | if (err) { | 660 | err = ubi_io_write_data(ubi, buf, pnum, offset, len); |
661 | ubi_warn("failed to write %d bytes at offset %d of LEB %d:%d, " | 661 | if (err) { |
662 | "PEB %d", len, offset, vol_id, lnum, pnum); | 662 | ubi_warn("failed to write %d bytes at offset %d of " |
663 | goto write_error; | 663 | "LEB %d:%d, PEB %d", len, offset, vol_id, |
664 | lnum, pnum); | ||
665 | goto write_error; | ||
666 | } | ||
664 | } | 667 | } |
665 | 668 | ||
666 | vol->eba_tbl[lnum] = pnum; | 669 | vol->eba_tbl[lnum] = pnum; |