diff options
author | Richard Weinberger <richard@nod.at> | 2014-10-28 12:07:06 -0400 |
---|---|---|
committer | Richard Weinberger <richard@nod.at> | 2015-03-26 17:47:36 -0400 |
commit | acfda79f8808518b0235eb9a13c8b5f762e43a75 (patch) | |
tree | 49f59beaf9e5897a529c0933417a9990518be0f0 | |
parent | c5c3f3cf969e45c53345283fce0ba11fae7abd32 (diff) |
UBI: Fastmap: Introduce ubi_fastmap_init()
...and kill another #ifdef in wl.c. :-)
Signed-off-by: Richard Weinberger <richard@nod.at>
-rw-r--r-- | drivers/mtd/ubi/wl.c | 8 | ||||
-rw-r--r-- | drivers/mtd/ubi/wl.h | 7 |
2 files changed, 8 insertions, 7 deletions
diff --git a/drivers/mtd/ubi/wl.c b/drivers/mtd/ubi/wl.c index 7d49f42ca2d5..c56c7a16c03b 100644 --- a/drivers/mtd/ubi/wl.c +++ b/drivers/mtd/ubi/wl.c | |||
@@ -1510,9 +1510,6 @@ int ubi_wl_init(struct ubi_device *ubi, struct ubi_attach_info *ai) | |||
1510 | init_rwsem(&ubi->work_sem); | 1510 | init_rwsem(&ubi->work_sem); |
1511 | ubi->max_ec = ai->max_ec; | 1511 | ubi->max_ec = ai->max_ec; |
1512 | INIT_LIST_HEAD(&ubi->works); | 1512 | INIT_LIST_HEAD(&ubi->works); |
1513 | #ifdef CONFIG_MTD_UBI_FASTMAP | ||
1514 | INIT_WORK(&ubi->fm_work, update_fastmap_work_fn); | ||
1515 | #endif | ||
1516 | 1513 | ||
1517 | sprintf(ubi->bgt_name, UBI_BGT_NAME_PATTERN, ubi->ubi_num); | 1514 | sprintf(ubi->bgt_name, UBI_BGT_NAME_PATTERN, ubi->ubi_num); |
1518 | 1515 | ||
@@ -1606,10 +1603,7 @@ int ubi_wl_init(struct ubi_device *ubi, struct ubi_attach_info *ai) | |||
1606 | ubi_assert(ubi->good_peb_count == found_pebs); | 1603 | ubi_assert(ubi->good_peb_count == found_pebs); |
1607 | 1604 | ||
1608 | reserved_pebs = WL_RESERVED_PEBS; | 1605 | reserved_pebs = WL_RESERVED_PEBS; |
1609 | #ifdef CONFIG_MTD_UBI_FASTMAP | 1606 | ubi_fastmap_init(ubi, &reserved_pebs); |
1610 | /* Reserve enough LEBs to store two fastmaps. */ | ||
1611 | reserved_pebs += (ubi->fm_size / ubi->leb_size) * 2; | ||
1612 | #endif | ||
1613 | 1607 | ||
1614 | if (ubi->avail_pebs < reserved_pebs) { | 1608 | if (ubi->avail_pebs < reserved_pebs) { |
1615 | ubi_err(ubi, "no enough physical eraseblocks (%d, need %d)", | 1609 | ubi_err(ubi, "no enough physical eraseblocks (%d, need %d)", |
diff --git a/drivers/mtd/ubi/wl.h b/drivers/mtd/ubi/wl.h index db8681477d96..4046ccf8942b 100644 --- a/drivers/mtd/ubi/wl.h +++ b/drivers/mtd/ubi/wl.h | |||
@@ -7,6 +7,12 @@ static void update_fastmap_work_fn(struct work_struct *wrk); | |||
7 | static struct ubi_wl_entry *find_anchor_wl_entry(struct rb_root *root); | 7 | static struct ubi_wl_entry *find_anchor_wl_entry(struct rb_root *root); |
8 | static struct ubi_wl_entry *get_peb_for_wl(struct ubi_device *ubi); | 8 | static struct ubi_wl_entry *get_peb_for_wl(struct ubi_device *ubi); |
9 | static void ubi_fastmap_close(struct ubi_device *ubi); | 9 | static void ubi_fastmap_close(struct ubi_device *ubi); |
10 | static inline void ubi_fastmap_init(struct ubi_device *ubi, int *count) | ||
11 | { | ||
12 | /* Reserve enough LEBs to store two fastmaps. */ | ||
13 | *count += (ubi->fm_size / ubi->leb_size) * 2; | ||
14 | INIT_WORK(&ubi->fm_work, update_fastmap_work_fn); | ||
15 | } | ||
10 | #else /* !CONFIG_MTD_UBI_FASTMAP */ | 16 | #else /* !CONFIG_MTD_UBI_FASTMAP */ |
11 | static struct ubi_wl_entry *get_peb_for_wl(struct ubi_device *ubi); | 17 | static struct ubi_wl_entry *get_peb_for_wl(struct ubi_device *ubi); |
12 | static inline int is_fm_block(struct ubi_device *ubi, int pnum) | 18 | static inline int is_fm_block(struct ubi_device *ubi, int pnum) |
@@ -14,5 +20,6 @@ static inline int is_fm_block(struct ubi_device *ubi, int pnum) | |||
14 | return 0; | 20 | return 0; |
15 | } | 21 | } |
16 | static inline void ubi_fastmap_close(struct ubi_device *ubi) { } | 22 | static inline void ubi_fastmap_close(struct ubi_device *ubi) { } |
23 | static inline void ubi_fastmap_init(struct ubi_device *ubi, int *count) { } | ||
17 | #endif /* CONFIG_MTD_UBI_FASTMAP */ | 24 | #endif /* CONFIG_MTD_UBI_FASTMAP */ |
18 | #endif /* UBI_WL_H */ | 25 | #endif /* UBI_WL_H */ |