aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/mtd/ubi/wl.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/mtd/ubi/wl.c b/drivers/mtd/ubi/wl.c
index 5df49d3cb5c7..c95bfb183c62 100644
--- a/drivers/mtd/ubi/wl.c
+++ b/drivers/mtd/ubi/wl.c
@@ -1069,6 +1069,9 @@ static int wear_leveling_worker(struct ubi_device *ubi, struct ubi_work *wrk,
1069 if (!(e2->ec - e1->ec >= UBI_WL_THRESHOLD)) { 1069 if (!(e2->ec - e1->ec >= UBI_WL_THRESHOLD)) {
1070 dbg_wl("no WL needed: min used EC %d, max free EC %d", 1070 dbg_wl("no WL needed: min used EC %d, max free EC %d",
1071 e1->ec, e2->ec); 1071 e1->ec, e2->ec);
1072
1073 /* Give the unused PEB back */
1074 wl_tree_add(e2, &ubi->free);
1072 goto out_cancel; 1075 goto out_cancel;
1073 } 1076 }
1074 self_check_in_wl_tree(ubi, e1, &ubi->used); 1077 self_check_in_wl_tree(ubi, e1, &ubi->used);