lkml.org 
[lkml]   [2012]   [Feb]   [14]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
From
Subject[RFC][PATCH 2/7] MTD: UBI: Add checkpoint struct to ubi_device
Date
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@linutronix.de>
---
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


\
 
 \ /
  Last update: 2012-02-14 21:57    [W:0.446 / U:0.200 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site