[RFC][PATCH 2/7] MTD: UBI: Add checkpoint struct to ubi_device

From: Richard Weinberger
Date: Tue Feb 14 2012 - 15:55:09 EST


struct ubi_checkpoint describes the currently used checkpoint.
Upon checkpoint recreation all currently used PEBs will be returned
to the wl subsystem.

struct ubi_cp_pool describes a checkpoint pool.
All PEBs within this pool have to be rescanned after reading the checkpoint.
The pools are needed to handle the three types of PEBs which can be obtained
from the wl subsystem.
Longterm, shortterm and unknown.

Signed-off-by: Richard Weinberger <rw@xxxxxxxxxxxxx>
---
drivers/mtd/ubi/ubi.h | 23 ++++++++++++++++++++++-
1 files changed, 22 insertions(+), 1 deletions(-)

diff --git a/drivers/mtd/ubi/ubi.h b/drivers/mtd/ubi/ubi.h
index d51d75d..4fe3638 100644
--- a/drivers/mtd/ubi/ubi.h
+++ b/drivers/mtd/ubi/ubi.h
@@ -196,6 +196,22 @@ struct ubi_rename_entry {

struct ubi_volume_desc;

+#ifdef CONFIG_MTD_UBI_CHECKPOINT
+struct ubi_checkpoint {
+ int peb[UBI_CP_MAX_BLOCKS];
+ unsigned int ec[UBI_CP_MAX_BLOCKS];
+ size_t size;
+ int used_blocks;
+};
+
+struct ubi_cp_pool {
+ int pebs[UBI_CP_MAX_POOL_SIZE];
+ int used;
+ int size;
+ int max_size;
+};
+#endif
+
/**
* struct ubi_volume - UBI volume description data structure.
* @dev: device object to make use of the the Linux device model
@@ -425,7 +441,12 @@ struct ubi_device {
spinlock_t ltree_lock;
struct rb_root ltree;
struct mutex alc_mutex;
-
+#ifdef CONFIG_MTD_UBI_CHECKPOINT
+ struct ubi_checkpoint *cp;
+ struct ubi_cp_pool long_pool;
+ struct ubi_cp_pool short_pool;
+ struct ubi_cp_pool unk_pool;
+#endif
/* Wear-leveling sub-system's stuff */
struct rb_root used;
struct rb_root erroneous;
--
1.7.7

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