diff options
author | Mike Dunn <mikedunn@newsguy.com> | 2012-04-25 15:06:08 -0400 |
---|---|---|
committer | David Woodhouse <David.Woodhouse@intel.com> | 2012-05-14 00:11:39 -0400 |
commit | d062d4ede877fcd2ecc4c6262abad09a6f32950a (patch) | |
tree | 320869428d5aef43b803c4a8131140aabb21c8fb /drivers/mtd/mtdpart.c | |
parent | a9b672e82bca47bf2b37ee869b8095000cf3ca88 (diff) |
mtd: bitflip_threshold added to mtd_info and sysfs
An element 'bitflip_threshold' is added to struct mtd_info, and also exposed as
a read/write variable in sysfs. This will be used to determine whether or not
mtd_read() returns -EUCLEAN or 0 (absent a hard error). If the driver leaves it
as zero, mtd will set it to a default value of ecc_strength.
This v2 adds the line that propagates bitflip_threshold from the master to the
partitions - thanks Ivan¹.
¹ http://lists.infradead.org/pipermail/linux-mtd/2012-April/040900.html
Signed-off-by: Mike Dunn <mikedunn@newsguy.com>
Signed-off-by: Artem Bityutskiy <artem.bityutskiy@linux.intel.com>
Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
Diffstat (limited to 'drivers/mtd/mtdpart.c')
-rw-r--r-- | drivers/mtd/mtdpart.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/mtd/mtdpart.c b/drivers/mtd/mtdpart.c index 9651c06de0a9..ec75d44e0253 100644 --- a/drivers/mtd/mtdpart.c +++ b/drivers/mtd/mtdpart.c | |||
@@ -517,6 +517,8 @@ static struct mtd_part *allocate_partition(struct mtd_info *master, | |||
517 | 517 | ||
518 | slave->mtd.ecclayout = master->ecclayout; | 518 | slave->mtd.ecclayout = master->ecclayout; |
519 | slave->mtd.ecc_strength = master->ecc_strength; | 519 | slave->mtd.ecc_strength = master->ecc_strength; |
520 | slave->mtd.bitflip_threshold = master->bitflip_threshold; | ||
521 | |||
520 | if (master->_block_isbad) { | 522 | if (master->_block_isbad) { |
521 | uint64_t offs = 0; | 523 | uint64_t offs = 0; |
522 | 524 | ||