aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mtd
diff options
context:
space:
mode:
authorRichard Weinberger <richard@nod.at>2014-10-29 11:59:32 -0400
committerRichard Weinberger <richard@nod.at>2015-03-26 17:46:02 -0400
commit61de74ce2fa2cc9eee85cf5edc6525b12831b507 (patch)
tree3a8f6e4288574907c183a3992b4ffb06093633f7 /drivers/mtd
parent111ab0b26fc1bfad575d1e376e146d194d261e22 (diff)
UBI: Fastmap: Prepare for variable sized fastmaps
The current code assumes that each fastmap has the same amount of PEBs. So far this is true but will change soon. Signed-off-by: Richard Weinberger <richard@nod.at>
Diffstat (limited to 'drivers/mtd')
-rw-r--r--drivers/mtd/ubi/fastmap.c12
1 files changed, 10 insertions, 2 deletions
diff --git a/drivers/mtd/ubi/fastmap.c b/drivers/mtd/ubi/fastmap.c
index 2cf2506b8f44..762e25c6a2d2 100644
--- a/drivers/mtd/ubi/fastmap.c
+++ b/drivers/mtd/ubi/fastmap.c
@@ -1385,7 +1385,7 @@ int ubi_update_fastmap(struct ubi_device *ubi)
1385 1385
1386 ret = -ENOSPC; 1386 ret = -ENOSPC;
1387 goto err; 1387 goto err;
1388 } else if (!tmp_e && old_fm) { 1388 } else if (!tmp_e && old_fm && old_fm->e[i]) {
1389 ret = erase_block(ubi, old_fm->e[i]->pnum); 1389 ret = erase_block(ubi, old_fm->e[i]->pnum);
1390 if (ret < 0) { 1390 if (ret < 0) {
1391 int j; 1391 int j;
@@ -1401,12 +1401,20 @@ int ubi_update_fastmap(struct ubi_device *ubi)
1401 } else { 1401 } else {
1402 new_fm->e[i] = tmp_e; 1402 new_fm->e[i] = tmp_e;
1403 1403
1404 if (old_fm) 1404 if (old_fm && old_fm->e[i])
1405 ubi_wl_put_fm_peb(ubi, old_fm->e[i], i, 1405 ubi_wl_put_fm_peb(ubi, old_fm->e[i], i,
1406 old_fm->to_be_tortured[i]); 1406 old_fm->to_be_tortured[i]);
1407 } 1407 }
1408 } 1408 }
1409 1409
1410 /* Old fastmap is larger than the new one */
1411 if (old_fm && new_fm->used_blocks < old_fm->used_blocks) {
1412 for (i = new_fm->used_blocks; i < old_fm->used_blocks; i++) {
1413 ubi_wl_put_fm_peb(ubi, old_fm->e[i], i,
1414 old_fm->to_be_tortured[i]);
1415 }
1416 }
1417
1410 spin_lock(&ubi->wl_lock); 1418 spin_lock(&ubi->wl_lock);
1411 tmp_e = ubi_wl_get_fm_peb(ubi, 1); 1419 tmp_e = ubi_wl_get_fm_peb(ubi, 1);
1412 spin_unlock(&ubi->wl_lock); 1420 spin_unlock(&ubi->wl_lock);