Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1527009

[RESEND PATCH v5 2/5] mtd: ubi: use 'max_bad_blocks' to compute bad_peb_limit if available

From Zach Brown <zach.brown@ni.com>
Newsgroups linux.kernel
Subject [RESEND PATCH v5 2/5] mtd: ubi: use 'max_bad_blocks' to compute bad_peb_limit if available
Date 2016-11-21 21:00 +0100
Message-ID <sG2UW-5ut-3@gated-at.bofh.it> (permalink)
References <sG2UW-5ut-5@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


From: Jeff Westfahl <jeff.westfahl@ni.com>

Use the MTD function 'max_bad_blocks' to compute the UBI bad_peb_limit,
if the function is implemented for an MTD and doesn't return an error.

Signed-off-by: Jeff Westfahl <jeff.westfahl@ni.com>
Signed-off-by: Zach Brown <zach.brown@ni.com>
Acked-by: Boris Brezillon <boris.brezillon@free-electron.com>
---
 drivers/mtd/ubi/build.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/drivers/mtd/ubi/build.c b/drivers/mtd/ubi/build.c
index 85d54f3..e9940a9 100644
--- a/drivers/mtd/ubi/build.c
+++ b/drivers/mtd/ubi/build.c
@@ -584,6 +584,10 @@ static int get_bad_peb_limit(const struct ubi_device *ubi, int max_beb_per1024)
 	int limit, device_pebs;
 	uint64_t device_size;
 
+	limit = mtd_max_bad_blocks(ubi->mtd, 0, ubi->mtd->size);
+	if (limit > 0)
+		return limit;
+
 	if (!max_beb_per1024)
 		return 0;
 
-- 
2.7.4

Back to linux.kernel | Previous | NextNext in thread | Find similar | Unroll thread


Thread

[RESEND PATCH v5 2/5] mtd: ubi: use 'max_bad_blocks' to compute bad_peb_limit if available Zach Brown <zach.brown@ni.com> - 2016-11-21 21:00 +0100
  Re: [RESEND PATCH v5 2/5] mtd: ubi: use 'max_bad_blocks' to compute  bad_peb_limit if available Brian Norris <computersforpeace@gmail.com> - 2016-11-22 19:50 +0100
  Re: [RESEND PATCH v5 2/5] mtd: ubi: use 'max_bad_blocks' to compute  bad_peb_limit if available Brian Norris <computersforpeace@gmail.com> - 2016-11-22 20:00 +0100

csiph-web