aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Weinberger <richard@nod.at>2013-09-28 09:55:10 -0400
committerArtem Bityutskiy <artem.bityutskiy@linux.intel.com>2013-10-03 12:42:46 -0400
commitfb10e4d418c73096ec61d8e80e2af282a5891039 (patch)
tree4ee2e4150a8a01a099a31679d4e987a461b1e706
parent8930fa500f55215f0211db9b78255e727ac3f282 (diff)
UBI: fix refill_wl_user_pool()
If no free PEBs are available refill_wl_user_pool() must not return with -ENOSPC immediately. It has to block till produce_free_peb() produced a free PEB. Reported-and-Tested-by: Richard Genoud <richard.genoud@gmail.com> Signed-off-by: Richard Weinberger <richard@nod.at> Signed-off-by: Artem Bityutskiy <artem.bityutskiy@linux.intel.com>
-rw-r--r--drivers/mtd/ubi/wl.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/drivers/mtd/ubi/wl.c b/drivers/mtd/ubi/wl.c
index c95bfb183c62..02317c1c0238 100644
--- a/drivers/mtd/ubi/wl.c
+++ b/drivers/mtd/ubi/wl.c
@@ -599,10 +599,6 @@ static void refill_wl_user_pool(struct ubi_device *ubi)
599 return_unused_pool_pebs(ubi, pool); 599 return_unused_pool_pebs(ubi, pool);
600 600
601 for (pool->size = 0; pool->size < pool->max_size; pool->size++) { 601 for (pool->size = 0; pool->size < pool->max_size; pool->size++) {
602 if (!ubi->free.rb_node ||
603 (ubi->free_count - ubi->beb_rsvd_pebs < 1))
604 break;
605
606 pool->pebs[pool->size] = __wl_get_peb(ubi); 602 pool->pebs[pool->size] = __wl_get_peb(ubi);
607 if (pool->pebs[pool->size] < 0) 603 if (pool->pebs[pool->size] < 0)
608 break; 604 break;