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

Add a new config parameter CONFIG_MTD_RESERVE_END. This is used with
command line partition parsing to reserve space at the end of a
partition defined with a size of '-', which indicates it should use all
remaining space.

Signed-off-by: Jeff Westfahl <jeff.westf...@ni.com>
---
 drivers/mtd/Kconfig       | 24 ++++++++++++++++++++++++
 drivers/mtd/cmdlinepart.c |  3 ++-
 2 files changed, 26 insertions(+), 1 deletion(-)

diff --git a/drivers/mtd/Kconfig b/drivers/mtd/Kconfig
index a03ad29..f7df08c 100644
--- a/drivers/mtd/Kconfig
+++ b/drivers/mtd/Kconfig
@@ -110,6 +110,30 @@ config MTD_CMDLINE_PARTS
 
          If unsure, say 'N'.
 
+config MTD_RESERVE_END
+       int "Reserved space at the end of an all remaining space partition"
+       depends on MTD_CMDLINE_PARTS = "y"
+       default 0
+       ---help---
+         Specify an amount of reserved space at the end of the last MTD
+         partition when the size is specified with '-' to denote all
+         remaining space.
+
+         This can be useful if, for example, the BBT is stored at the end
+         of the flash, and you don't want those blocks counted as part of
+         the last MTD partition. This is less heavyweight than reserving
+         the BBT blocks with a separate MTD partition. The BBT marks its
+         own blocks as bad blocks, which prevents an MTD driver such as
+         UBI from getting an accurate count of the actual bad blocks in
+         the MTD partition that contains the BBT.
+
+         The value is specified in bytes. As an example, a typical BBT
+         reserves four erase blocks, and a typical erase block size is
+         128kB. To reserve that much space at the end of the flash, the
+         value for this config option would be 524288.
+
+         If unsure, use the default value of zero.
+
 config MTD_AFS_PARTS
        tristate "ARM Firmware Suite partition parsing"
        depends on ARM
diff --git a/drivers/mtd/cmdlinepart.c b/drivers/mtd/cmdlinepart.c
index c850300..9b83c1a 100644
--- a/drivers/mtd/cmdlinepart.c
+++ b/drivers/mtd/cmdlinepart.c
@@ -340,7 +340,8 @@ static int parse_cmdline_partitions(struct mtd_info *master,
                        offset = part->parts[i].offset;
 
                if (part->parts[i].size == SIZE_REMAINING)
-                       part->parts[i].size = master->size - offset;
+                       part->parts[i].size = master->size - offset -
+                                             CONFIG_MTD_RESERVE_END;
 
                if (offset + part->parts[i].size > master->size) {
                        printk(KERN_WARNING ERRP
-- 
2.3.7

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to