[MTD] Add ECC statistics to struct mtd_info
authorThomas Gleixner <tglx@cruncher.tec.linutronix.de>
Thu, 25 May 2006 07:57:31 +0000 (09:57 +0200)
committerDavid Woodhouse <dwmw2@infradead.org>
Thu, 25 May 2006 11:45:27 +0000 (12:45 +0100)
FLASH - especially NAND FLASH - will become less reliable
and bit flips more likely. Add an ECC statistics struct
to struct mtd_info to keep track of this.

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
include/linux/mtd/mtd.h

index b8ad634391db0fed5f08a26ab639fadf244f29a2..41a984dcb1397b80277895f33d7d2d2c137cac05 100644 (file)
@@ -56,6 +56,17 @@ struct mtd_erase_region_info {
        u_int32_t numblocks;            /* Number of blocks of erasesize in this region */
 };
 
+/**
+ * struct mtd_ecc_stats - error correction status
+ *
+ * @corrected: number of corrected bits
+ * @failed:    number of uncorrectable errors
+ */
+struct mtd_ecc_stats {
+       unsigned long corrected;
+       unsigned long failed;
+};
+
 struct mtd_info {
        u_char type;
        u_int32_t flags;
@@ -153,6 +164,9 @@ struct mtd_info {
 
        struct notifier_block reboot_notifier;  /* default mode before reboot */
 
+       /* ECC status information */
+       struct mtd_ecc_stats ecc_stats;
+
        void *priv;
 
        struct module *owner;