2 * Copyright (c) 2012 Linutronix GmbH
3 * Copyright (c) 2014 sigma star gmbh
4 * Author: Richard Weinberger <richard@nod.at>
6 * SPDX-License-Identifier: GPL-2.0+
11 #include <linux/crc32.h>
15 #include <ubi_uboot.h>
18 #include <linux/compat.h>
19 #include <linux/math64.h>
23 * init_seen - allocate memory for used for debugging.
24 * @ubi: UBI device description object
26 static inline int *init_seen(struct ubi_device *ubi)
30 if (!ubi_dbg_chk_fastmap(ubi))
33 ret = kcalloc(ubi->peb_count, sizeof(int), GFP_KERNEL);
35 return ERR_PTR(-ENOMEM);
41 * free_seen - free the seen logic integer array.
42 * @seen: integer array of @ubi->peb_count size
44 static inline void free_seen(int *seen)
50 * set_seen - mark a PEB as seen.
51 * @ubi: UBI device description object
52 * @pnum: The PEB to be makred as seen
53 * @seen: integer array of @ubi->peb_count size
55 static inline void set_seen(struct ubi_device *ubi, int pnum, int *seen)
57 if (!ubi_dbg_chk_fastmap(ubi) || !seen)
64 * self_check_seen - check whether all PEB have been seen by fastmap.
65 * @ubi: UBI device description object
66 * @seen: integer array of @ubi->peb_count size
68 static int self_check_seen(struct ubi_device *ubi, int *seen)
72 if (!ubi_dbg_chk_fastmap(ubi) || !seen)
75 for (pnum = 0; pnum < ubi->peb_count; pnum++) {
76 if (!seen[pnum] && ubi->lookuptbl[pnum]) {
77 ubi_err(ubi, "self-check failed for PEB %d, fastmap didn't see it", pnum);
86 * ubi_calc_fm_size - calculates the fastmap size in bytes for an UBI device.
87 * @ubi: UBI device description object
89 size_t ubi_calc_fm_size(struct ubi_device *ubi)
93 size = sizeof(struct ubi_fm_sb) +
94 sizeof(struct ubi_fm_hdr) +
95 sizeof(struct ubi_fm_scan_pool) +
96 sizeof(struct ubi_fm_scan_pool) +
97 (ubi->peb_count * sizeof(struct ubi_fm_ec)) +
98 (sizeof(struct ubi_fm_eba) +
99 (ubi->peb_count * sizeof(__be32))) +
100 sizeof(struct ubi_fm_volhdr) * UBI_MAX_VOLUMES;
101 return roundup(size, ubi->leb_size);
106 * new_fm_vhdr - allocate a new volume header for fastmap usage.
107 * @ubi: UBI device description object
108 * @vol_id: the VID of the new header
110 * Returns a new struct ubi_vid_hdr on success.
111 * NULL indicates out of memory.
113 static struct ubi_vid_hdr *new_fm_vhdr(struct ubi_device *ubi, int vol_id)
115 struct ubi_vid_hdr *new;
117 new = ubi_zalloc_vid_hdr(ubi, GFP_KERNEL);
121 new->vol_type = UBI_VID_DYNAMIC;
122 new->vol_id = cpu_to_be32(vol_id);
124 /* UBI implementations without fastmap support have to delete the
127 new->compat = UBI_COMPAT_DELETE;
134 * add_aeb - create and add a attach erase block to a given list.
135 * @ai: UBI attach info object
136 * @list: the target list
137 * @pnum: PEB number of the new attach erase block
138 * @ec: erease counter of the new LEB
139 * @scrub: scrub this PEB after attaching
141 * Returns 0 on success, < 0 indicates an internal error.
143 static int add_aeb(struct ubi_attach_info *ai, struct list_head *list,
144 int pnum, int ec, int scrub)
146 struct ubi_ainf_peb *aeb;
148 aeb = kmem_cache_alloc(ai->aeb_slab_cache, GFP_KERNEL);
156 aeb->copy_flag = aeb->sqnum = 0;
158 ai->ec_sum += aeb->ec;
161 if (ai->max_ec < aeb->ec)
162 ai->max_ec = aeb->ec;
164 if (ai->min_ec > aeb->ec)
165 ai->min_ec = aeb->ec;
167 list_add_tail(&aeb->u.list, list);
173 * add_vol - create and add a new volume to ubi_attach_info.
174 * @ai: ubi_attach_info object
175 * @vol_id: VID of the new volume
176 * @used_ebs: number of used EBS
177 * @data_pad: data padding value of the new volume
178 * @vol_type: volume type
179 * @last_eb_bytes: number of bytes in the last LEB
181 * Returns the new struct ubi_ainf_volume on success.
182 * NULL indicates an error.
184 static struct ubi_ainf_volume *add_vol(struct ubi_attach_info *ai, int vol_id,
185 int used_ebs, int data_pad, u8 vol_type,
188 struct ubi_ainf_volume *av;
189 struct rb_node **p = &ai->volumes.rb_node, *parent = NULL;
193 av = rb_entry(parent, struct ubi_ainf_volume, rb);
195 if (vol_id > av->vol_id)
197 else if (vol_id < av->vol_id)
200 return ERR_PTR(-EINVAL);
203 av = kmalloc(sizeof(struct ubi_ainf_volume), GFP_KERNEL);
207 av->highest_lnum = av->leb_count = av->used_ebs = 0;
209 av->data_pad = data_pad;
210 av->last_data_size = last_eb_bytes;
212 av->vol_type = vol_type;
214 if (av->vol_type == UBI_STATIC_VOLUME)
215 av->used_ebs = used_ebs;
217 dbg_bld("found volume (ID %i)", vol_id);
219 rb_link_node(&av->rb, parent, p);
220 rb_insert_color(&av->rb, &ai->volumes);
227 * assign_aeb_to_av - assigns a SEB to a given ainf_volume and removes it
228 * from it's original list.
229 * @ai: ubi_attach_info object
230 * @aeb: the to be assigned SEB
231 * @av: target scan volume
233 static void assign_aeb_to_av(struct ubi_attach_info *ai,
234 struct ubi_ainf_peb *aeb,
235 struct ubi_ainf_volume *av)
237 struct ubi_ainf_peb *tmp_aeb;
238 struct rb_node **p = &ai->volumes.rb_node, *parent = NULL;
240 p = &av->root.rb_node;
244 tmp_aeb = rb_entry(parent, struct ubi_ainf_peb, u.rb);
245 if (aeb->lnum != tmp_aeb->lnum) {
246 if (aeb->lnum < tmp_aeb->lnum)
256 list_del(&aeb->u.list);
259 rb_link_node(&aeb->u.rb, parent, p);
260 rb_insert_color(&aeb->u.rb, &av->root);
264 * update_vol - inserts or updates a LEB which was found a pool.
265 * @ubi: the UBI device object
266 * @ai: attach info object
267 * @av: the volume this LEB belongs to
268 * @new_vh: the volume header derived from new_aeb
269 * @new_aeb: the AEB to be examined
271 * Returns 0 on success, < 0 indicates an internal error.
273 static int update_vol(struct ubi_device *ubi, struct ubi_attach_info *ai,
274 struct ubi_ainf_volume *av, struct ubi_vid_hdr *new_vh,
275 struct ubi_ainf_peb *new_aeb)
277 struct rb_node **p = &av->root.rb_node, *parent = NULL;
278 struct ubi_ainf_peb *aeb, *victim;
283 aeb = rb_entry(parent, struct ubi_ainf_peb, u.rb);
285 if (be32_to_cpu(new_vh->lnum) != aeb->lnum) {
286 if (be32_to_cpu(new_vh->lnum) < aeb->lnum)
294 /* This case can happen if the fastmap gets written
295 * because of a volume change (creation, deletion, ..).
296 * Then a PEB can be within the persistent EBA and the pool.
298 if (aeb->pnum == new_aeb->pnum) {
299 ubi_assert(aeb->lnum == new_aeb->lnum);
300 kmem_cache_free(ai->aeb_slab_cache, new_aeb);
305 cmp_res = ubi_compare_lebs(ubi, aeb, new_aeb->pnum, new_vh);
309 /* new_aeb is newer */
311 victim = kmem_cache_alloc(ai->aeb_slab_cache,
316 victim->ec = aeb->ec;
317 victim->pnum = aeb->pnum;
318 list_add_tail(&victim->u.list, &ai->erase);
320 if (av->highest_lnum == be32_to_cpu(new_vh->lnum))
322 be32_to_cpu(new_vh->data_size);
324 dbg_bld("vol %i: AEB %i's PEB %i is the newer",
325 av->vol_id, aeb->lnum, new_aeb->pnum);
327 aeb->ec = new_aeb->ec;
328 aeb->pnum = new_aeb->pnum;
329 aeb->copy_flag = new_vh->copy_flag;
330 aeb->scrub = new_aeb->scrub;
331 kmem_cache_free(ai->aeb_slab_cache, new_aeb);
333 /* new_aeb is older */
335 dbg_bld("vol %i: AEB %i's PEB %i is old, dropping it",
336 av->vol_id, aeb->lnum, new_aeb->pnum);
337 list_add_tail(&new_aeb->u.list, &ai->erase);
342 /* This LEB is new, let's add it to the volume */
344 if (av->highest_lnum <= be32_to_cpu(new_vh->lnum)) {
345 av->highest_lnum = be32_to_cpu(new_vh->lnum);
346 av->last_data_size = be32_to_cpu(new_vh->data_size);
349 if (av->vol_type == UBI_STATIC_VOLUME)
350 av->used_ebs = be32_to_cpu(new_vh->used_ebs);
354 rb_link_node(&new_aeb->u.rb, parent, p);
355 rb_insert_color(&new_aeb->u.rb, &av->root);
361 * process_pool_aeb - we found a non-empty PEB in a pool.
362 * @ubi: UBI device object
363 * @ai: attach info object
364 * @new_vh: the volume header derived from new_aeb
365 * @new_aeb: the AEB to be examined
367 * Returns 0 on success, < 0 indicates an internal error.
369 static int process_pool_aeb(struct ubi_device *ubi, struct ubi_attach_info *ai,
370 struct ubi_vid_hdr *new_vh,
371 struct ubi_ainf_peb *new_aeb)
373 struct ubi_ainf_volume *av, *tmp_av = NULL;
374 struct rb_node **p = &ai->volumes.rb_node, *parent = NULL;
377 if (be32_to_cpu(new_vh->vol_id) == UBI_FM_SB_VOLUME_ID ||
378 be32_to_cpu(new_vh->vol_id) == UBI_FM_DATA_VOLUME_ID) {
379 kmem_cache_free(ai->aeb_slab_cache, new_aeb);
384 /* Find the volume this SEB belongs to */
387 tmp_av = rb_entry(parent, struct ubi_ainf_volume, rb);
389 if (be32_to_cpu(new_vh->vol_id) > tmp_av->vol_id)
391 else if (be32_to_cpu(new_vh->vol_id) < tmp_av->vol_id)
402 ubi_err(ubi, "orphaned volume in fastmap pool!");
403 kmem_cache_free(ai->aeb_slab_cache, new_aeb);
404 return UBI_BAD_FASTMAP;
407 ubi_assert(be32_to_cpu(new_vh->vol_id) == av->vol_id);
409 return update_vol(ubi, ai, av, new_vh, new_aeb);
413 * unmap_peb - unmap a PEB.
414 * If fastmap detects a free PEB in the pool it has to check whether
415 * this PEB has been unmapped after writing the fastmap.
417 * @ai: UBI attach info object
418 * @pnum: The PEB to be unmapped
420 static void unmap_peb(struct ubi_attach_info *ai, int pnum)
422 struct ubi_ainf_volume *av;
423 struct rb_node *node, *node2;
424 struct ubi_ainf_peb *aeb;
426 for (node = rb_first(&ai->volumes); node; node = rb_next(node)) {
427 av = rb_entry(node, struct ubi_ainf_volume, rb);
429 for (node2 = rb_first(&av->root); node2;
430 node2 = rb_next(node2)) {
431 aeb = rb_entry(node2, struct ubi_ainf_peb, u.rb);
432 if (aeb->pnum == pnum) {
433 rb_erase(&aeb->u.rb, &av->root);
435 kmem_cache_free(ai->aeb_slab_cache, aeb);
443 * scan_pool - scans a pool for changed (no longer empty PEBs).
444 * @ubi: UBI device object
445 * @ai: attach info object
446 * @pebs: an array of all PEB numbers in the to be scanned pool
447 * @pool_size: size of the pool (number of entries in @pebs)
448 * @max_sqnum: pointer to the maximal sequence number
449 * @free: list of PEBs which are most likely free (and go into @ai->free)
451 * Returns 0 on success, if the pool is unusable UBI_BAD_FASTMAP is returned.
452 * < 0 indicates an internal error.
455 static int scan_pool(struct ubi_device *ubi, struct ubi_attach_info *ai,
456 __be32 *pebs, int pool_size, unsigned long long *max_sqnum,
457 struct list_head *free)
459 static int scan_pool(struct ubi_device *ubi, struct ubi_attach_info *ai,
460 __be32 *pebs, int pool_size, unsigned long long *max_sqnum,
461 struct list_head *free)
464 struct ubi_vid_hdr *vh;
465 struct ubi_ec_hdr *ech;
466 struct ubi_ainf_peb *new_aeb;
467 int i, pnum, err, ret = 0;
469 ech = kzalloc(ubi->ec_hdr_alsize, GFP_KERNEL);
473 vh = ubi_zalloc_vid_hdr(ubi, GFP_KERNEL);
479 dbg_bld("scanning fastmap pool: size = %i", pool_size);
482 * Now scan all PEBs in the pool to find changes which have been made
483 * after the creation of the fastmap
485 for (i = 0; i < pool_size; i++) {
489 pnum = be32_to_cpu(pebs[i]);
491 if (ubi_io_is_bad(ubi, pnum)) {
492 ubi_err(ubi, "bad PEB in fastmap pool!");
493 ret = UBI_BAD_FASTMAP;
497 err = ubi_io_read_ec_hdr(ubi, pnum, ech, 0);
498 if (err && err != UBI_IO_BITFLIPS) {
499 ubi_err(ubi, "unable to read EC header! PEB:%i err:%i",
501 ret = err > 0 ? UBI_BAD_FASTMAP : err;
503 } else if (err == UBI_IO_BITFLIPS)
507 * Older UBI implementations have image_seq set to zero, so
508 * we shouldn't fail if image_seq == 0.
510 image_seq = be32_to_cpu(ech->image_seq);
512 if (image_seq && (image_seq != ubi->image_seq)) {
513 ubi_err(ubi, "bad image seq: 0x%x, expected: 0x%x",
514 be32_to_cpu(ech->image_seq), ubi->image_seq);
515 ret = UBI_BAD_FASTMAP;
519 err = ubi_io_read_vid_hdr(ubi, pnum, vh, 0);
520 if (err == UBI_IO_FF || err == UBI_IO_FF_BITFLIPS) {
521 unsigned long long ec = be64_to_cpu(ech->ec);
523 dbg_bld("Adding PEB to free: %i", pnum);
524 if (err == UBI_IO_FF_BITFLIPS)
525 add_aeb(ai, free, pnum, ec, 1);
527 add_aeb(ai, free, pnum, ec, 0);
529 } else if (err == 0 || err == UBI_IO_BITFLIPS) {
530 dbg_bld("Found non empty PEB:%i in pool", pnum);
532 if (err == UBI_IO_BITFLIPS)
535 new_aeb = kmem_cache_alloc(ai->aeb_slab_cache,
542 new_aeb->ec = be64_to_cpu(ech->ec);
543 new_aeb->pnum = pnum;
544 new_aeb->lnum = be32_to_cpu(vh->lnum);
545 new_aeb->sqnum = be64_to_cpu(vh->sqnum);
546 new_aeb->copy_flag = vh->copy_flag;
547 new_aeb->scrub = scrub;
549 if (*max_sqnum < new_aeb->sqnum)
550 *max_sqnum = new_aeb->sqnum;
552 err = process_pool_aeb(ubi, ai, vh, new_aeb);
554 ret = err > 0 ? UBI_BAD_FASTMAP : err;
558 /* We are paranoid and fall back to scanning mode */
559 ubi_err(ubi, "fastmap pool PEBs contains damaged PEBs!");
560 ret = err > 0 ? UBI_BAD_FASTMAP : err;
567 ubi_free_vid_hdr(ubi, vh);
573 * count_fastmap_pebs - Counts the PEBs found by fastmap.
574 * @ai: The UBI attach info object
576 static int count_fastmap_pebs(struct ubi_attach_info *ai)
578 struct ubi_ainf_peb *aeb;
579 struct ubi_ainf_volume *av;
580 struct rb_node *rb1, *rb2;
583 list_for_each_entry(aeb, &ai->erase, u.list)
586 list_for_each_entry(aeb, &ai->free, u.list)
589 ubi_rb_for_each_entry(rb1, av, &ai->volumes, rb)
590 ubi_rb_for_each_entry(rb2, aeb, &av->root, u.rb)
597 * ubi_attach_fastmap - creates ubi_attach_info from a fastmap.
598 * @ubi: UBI device object
599 * @ai: UBI attach info object
600 * @fm: the fastmap to be attached
602 * Returns 0 on success, UBI_BAD_FASTMAP if the found fastmap was unusable.
603 * < 0 indicates an internal error.
605 static int ubi_attach_fastmap(struct ubi_device *ubi,
606 struct ubi_attach_info *ai,
607 struct ubi_fastmap_layout *fm)
609 struct list_head used, free;
610 struct ubi_ainf_volume *av;
611 struct ubi_ainf_peb *aeb, *tmp_aeb, *_tmp_aeb;
612 struct ubi_fm_sb *fmsb;
613 struct ubi_fm_hdr *fmhdr;
614 struct ubi_fm_scan_pool *fmpl, *fmpl_wl;
615 struct ubi_fm_ec *fmec;
616 struct ubi_fm_volhdr *fmvhdr;
617 struct ubi_fm_eba *fm_eba;
618 int ret, i, j, pool_size, wl_pool_size;
619 size_t fm_pos = 0, fm_size = ubi->fm_size;
620 unsigned long long max_sqnum = 0;
621 void *fm_raw = ubi->fm_buf;
623 INIT_LIST_HEAD(&used);
624 INIT_LIST_HEAD(&free);
625 ai->min_ec = UBI_MAX_ERASECOUNTER;
627 fmsb = (struct ubi_fm_sb *)(fm_raw);
628 ai->max_sqnum = fmsb->sqnum;
629 fm_pos += sizeof(struct ubi_fm_sb);
630 if (fm_pos >= fm_size)
633 fmhdr = (struct ubi_fm_hdr *)(fm_raw + fm_pos);
634 fm_pos += sizeof(*fmhdr);
635 if (fm_pos >= fm_size)
638 if (be32_to_cpu(fmhdr->magic) != UBI_FM_HDR_MAGIC) {
639 ubi_err(ubi, "bad fastmap header magic: 0x%x, expected: 0x%x",
640 be32_to_cpu(fmhdr->magic), UBI_FM_HDR_MAGIC);
644 fmpl = (struct ubi_fm_scan_pool *)(fm_raw + fm_pos);
645 fm_pos += sizeof(*fmpl);
646 if (fm_pos >= fm_size)
648 if (be32_to_cpu(fmpl->magic) != UBI_FM_POOL_MAGIC) {
649 ubi_err(ubi, "bad fastmap pool magic: 0x%x, expected: 0x%x",
650 be32_to_cpu(fmpl->magic), UBI_FM_POOL_MAGIC);
654 fmpl_wl = (struct ubi_fm_scan_pool *)(fm_raw + fm_pos);
655 fm_pos += sizeof(*fmpl_wl);
656 if (fm_pos >= fm_size)
658 if (be32_to_cpu(fmpl_wl->magic) != UBI_FM_POOL_MAGIC) {
659 ubi_err(ubi, "bad fastmap WL pool magic: 0x%x, expected: 0x%x",
660 be32_to_cpu(fmpl_wl->magic), UBI_FM_POOL_MAGIC);
664 pool_size = be16_to_cpu(fmpl->size);
665 wl_pool_size = be16_to_cpu(fmpl_wl->size);
666 fm->max_pool_size = be16_to_cpu(fmpl->max_size);
667 fm->max_wl_pool_size = be16_to_cpu(fmpl_wl->max_size);
669 if (pool_size > UBI_FM_MAX_POOL_SIZE || pool_size < 0) {
670 ubi_err(ubi, "bad pool size: %i", pool_size);
674 if (wl_pool_size > UBI_FM_MAX_POOL_SIZE || wl_pool_size < 0) {
675 ubi_err(ubi, "bad WL pool size: %i", wl_pool_size);
680 if (fm->max_pool_size > UBI_FM_MAX_POOL_SIZE ||
681 fm->max_pool_size < 0) {
682 ubi_err(ubi, "bad maximal pool size: %i", fm->max_pool_size);
686 if (fm->max_wl_pool_size > UBI_FM_MAX_POOL_SIZE ||
687 fm->max_wl_pool_size < 0) {
688 ubi_err(ubi, "bad maximal WL pool size: %i",
689 fm->max_wl_pool_size);
693 /* read EC values from free list */
694 for (i = 0; i < be32_to_cpu(fmhdr->free_peb_count); i++) {
695 fmec = (struct ubi_fm_ec *)(fm_raw + fm_pos);
696 fm_pos += sizeof(*fmec);
697 if (fm_pos >= fm_size)
700 add_aeb(ai, &ai->free, be32_to_cpu(fmec->pnum),
701 be32_to_cpu(fmec->ec), 0);
704 /* read EC values from used list */
705 for (i = 0; i < be32_to_cpu(fmhdr->used_peb_count); i++) {
706 fmec = (struct ubi_fm_ec *)(fm_raw + fm_pos);
707 fm_pos += sizeof(*fmec);
708 if (fm_pos >= fm_size)
711 add_aeb(ai, &used, be32_to_cpu(fmec->pnum),
712 be32_to_cpu(fmec->ec), 0);
715 /* read EC values from scrub list */
716 for (i = 0; i < be32_to_cpu(fmhdr->scrub_peb_count); i++) {
717 fmec = (struct ubi_fm_ec *)(fm_raw + fm_pos);
718 fm_pos += sizeof(*fmec);
719 if (fm_pos >= fm_size)
722 add_aeb(ai, &used, be32_to_cpu(fmec->pnum),
723 be32_to_cpu(fmec->ec), 1);
726 /* read EC values from erase list */
727 for (i = 0; i < be32_to_cpu(fmhdr->erase_peb_count); i++) {
728 fmec = (struct ubi_fm_ec *)(fm_raw + fm_pos);
729 fm_pos += sizeof(*fmec);
730 if (fm_pos >= fm_size)
733 add_aeb(ai, &ai->erase, be32_to_cpu(fmec->pnum),
734 be32_to_cpu(fmec->ec), 1);
737 ai->mean_ec = div_u64(ai->ec_sum, ai->ec_count);
738 ai->bad_peb_count = be32_to_cpu(fmhdr->bad_peb_count);
740 /* Iterate over all volumes and read their EBA table */
741 for (i = 0; i < be32_to_cpu(fmhdr->vol_count); i++) {
742 fmvhdr = (struct ubi_fm_volhdr *)(fm_raw + fm_pos);
743 fm_pos += sizeof(*fmvhdr);
744 if (fm_pos >= fm_size)
747 if (be32_to_cpu(fmvhdr->magic) != UBI_FM_VHDR_MAGIC) {
748 ubi_err(ubi, "bad fastmap vol header magic: 0x%x, expected: 0x%x",
749 be32_to_cpu(fmvhdr->magic), UBI_FM_VHDR_MAGIC);
753 av = add_vol(ai, be32_to_cpu(fmvhdr->vol_id),
754 be32_to_cpu(fmvhdr->used_ebs),
755 be32_to_cpu(fmvhdr->data_pad),
757 be32_to_cpu(fmvhdr->last_eb_bytes));
761 if (PTR_ERR(av) == -EINVAL) {
762 ubi_err(ubi, "volume (ID %i) already exists",
768 if (ai->highest_vol_id < be32_to_cpu(fmvhdr->vol_id))
769 ai->highest_vol_id = be32_to_cpu(fmvhdr->vol_id);
771 fm_eba = (struct ubi_fm_eba *)(fm_raw + fm_pos);
772 fm_pos += sizeof(*fm_eba);
773 fm_pos += (sizeof(__be32) * be32_to_cpu(fm_eba->reserved_pebs));
774 if (fm_pos >= fm_size)
777 if (be32_to_cpu(fm_eba->magic) != UBI_FM_EBA_MAGIC) {
778 ubi_err(ubi, "bad fastmap EBA header magic: 0x%x, expected: 0x%x",
779 be32_to_cpu(fm_eba->magic), UBI_FM_EBA_MAGIC);
783 for (j = 0; j < be32_to_cpu(fm_eba->reserved_pebs); j++) {
784 int pnum = be32_to_cpu(fm_eba->pnum[j]);
786 if ((int)be32_to_cpu(fm_eba->pnum[j]) < 0)
790 list_for_each_entry(tmp_aeb, &used, u.list) {
791 if (tmp_aeb->pnum == pnum) {
798 ubi_err(ubi, "PEB %i is in EBA but not in used list", pnum);
804 if (av->highest_lnum <= aeb->lnum)
805 av->highest_lnum = aeb->lnum;
807 assign_aeb_to_av(ai, aeb, av);
809 dbg_bld("inserting PEB:%i (LEB %i) to vol %i",
810 aeb->pnum, aeb->lnum, av->vol_id);
814 ret = scan_pool(ubi, ai, fmpl->pebs, pool_size, &max_sqnum, &free);
818 ret = scan_pool(ubi, ai, fmpl_wl->pebs, wl_pool_size, &max_sqnum, &free);
822 if (max_sqnum > ai->max_sqnum)
823 ai->max_sqnum = max_sqnum;
825 list_for_each_entry_safe(tmp_aeb, _tmp_aeb, &free, u.list)
826 list_move_tail(&tmp_aeb->u.list, &ai->free);
828 list_for_each_entry_safe(tmp_aeb, _tmp_aeb, &used, u.list)
829 list_move_tail(&tmp_aeb->u.list, &ai->erase);
831 ubi_assert(list_empty(&free));
834 * If fastmap is leaking PEBs (must not happen), raise a
835 * fat warning and fall back to scanning mode.
836 * We do this here because in ubi_wl_init() it's too late
837 * and we cannot fall back to scanning.
840 if (WARN_ON(count_fastmap_pebs(ai) != ubi->peb_count -
841 ai->bad_peb_count - fm->used_blocks))
844 if (count_fastmap_pebs(ai) != ubi->peb_count -
845 ai->bad_peb_count - fm->used_blocks) {
854 ret = UBI_BAD_FASTMAP;
856 list_for_each_entry_safe(tmp_aeb, _tmp_aeb, &used, u.list) {
857 list_del(&tmp_aeb->u.list);
858 kmem_cache_free(ai->aeb_slab_cache, tmp_aeb);
860 list_for_each_entry_safe(tmp_aeb, _tmp_aeb, &free, u.list) {
861 list_del(&tmp_aeb->u.list);
862 kmem_cache_free(ai->aeb_slab_cache, tmp_aeb);
869 * ubi_scan_fastmap - scan the fastmap.
870 * @ubi: UBI device object
871 * @ai: UBI attach info to be filled
872 * @fm_anchor: The fastmap starts at this PEB
874 * Returns 0 on success, UBI_NO_FASTMAP if no fastmap was found,
875 * UBI_BAD_FASTMAP if one was found but is not usable.
876 * < 0 indicates an internal error.
878 int ubi_scan_fastmap(struct ubi_device *ubi, struct ubi_attach_info *ai,
881 struct ubi_fm_sb *fmsb, *fmsb2;
882 struct ubi_vid_hdr *vh;
883 struct ubi_ec_hdr *ech;
884 struct ubi_fastmap_layout *fm;
885 int i, used_blocks, pnum, ret = 0;
888 unsigned long long sqnum = 0;
890 down_write(&ubi->fm_protect);
891 memset(ubi->fm_buf, 0, ubi->fm_size);
893 fmsb = kmalloc(sizeof(*fmsb), GFP_KERNEL);
899 fm = kzalloc(sizeof(*fm), GFP_KERNEL);
906 ret = ubi_io_read(ubi, fmsb, fm_anchor, ubi->leb_start, sizeof(*fmsb));
907 if (ret && ret != UBI_IO_BITFLIPS)
909 else if (ret == UBI_IO_BITFLIPS)
910 fm->to_be_tortured[0] = 1;
912 if (be32_to_cpu(fmsb->magic) != UBI_FM_SB_MAGIC) {
913 ubi_err(ubi, "bad super block magic: 0x%x, expected: 0x%x",
914 be32_to_cpu(fmsb->magic), UBI_FM_SB_MAGIC);
915 ret = UBI_BAD_FASTMAP;
919 if (fmsb->version != UBI_FM_FMT_VERSION) {
920 ubi_err(ubi, "bad fastmap version: %i, expected: %i",
921 fmsb->version, UBI_FM_FMT_VERSION);
922 ret = UBI_BAD_FASTMAP;
926 used_blocks = be32_to_cpu(fmsb->used_blocks);
927 if (used_blocks > UBI_FM_MAX_BLOCKS || used_blocks < 1) {
928 ubi_err(ubi, "number of fastmap blocks is invalid: %i",
930 ret = UBI_BAD_FASTMAP;
934 fm_size = ubi->leb_size * used_blocks;
935 if (fm_size != ubi->fm_size) {
936 ubi_err(ubi, "bad fastmap size: %zi, expected: %zi",
937 fm_size, ubi->fm_size);
938 ret = UBI_BAD_FASTMAP;
942 ech = kzalloc(ubi->ec_hdr_alsize, GFP_KERNEL);
948 vh = ubi_zalloc_vid_hdr(ubi, GFP_KERNEL);
954 for (i = 0; i < used_blocks; i++) {
957 pnum = be32_to_cpu(fmsb->block_loc[i]);
959 if (ubi_io_is_bad(ubi, pnum)) {
960 ret = UBI_BAD_FASTMAP;
964 ret = ubi_io_read_ec_hdr(ubi, pnum, ech, 0);
965 if (ret && ret != UBI_IO_BITFLIPS) {
966 ubi_err(ubi, "unable to read fastmap block# %i EC (PEB: %i)",
969 ret = UBI_BAD_FASTMAP;
971 } else if (ret == UBI_IO_BITFLIPS)
972 fm->to_be_tortured[i] = 1;
974 image_seq = be32_to_cpu(ech->image_seq);
976 ubi->image_seq = image_seq;
979 * Older UBI implementations have image_seq set to zero, so
980 * we shouldn't fail if image_seq == 0.
982 if (image_seq && (image_seq != ubi->image_seq)) {
983 ubi_err(ubi, "wrong image seq:%d instead of %d",
984 be32_to_cpu(ech->image_seq), ubi->image_seq);
985 ret = UBI_BAD_FASTMAP;
989 ret = ubi_io_read_vid_hdr(ubi, pnum, vh, 0);
990 if (ret && ret != UBI_IO_BITFLIPS) {
991 ubi_err(ubi, "unable to read fastmap block# %i (PEB: %i)",
997 if (be32_to_cpu(vh->vol_id) != UBI_FM_SB_VOLUME_ID) {
998 ubi_err(ubi, "bad fastmap anchor vol_id: 0x%x, expected: 0x%x",
999 be32_to_cpu(vh->vol_id),
1000 UBI_FM_SB_VOLUME_ID);
1001 ret = UBI_BAD_FASTMAP;
1005 if (be32_to_cpu(vh->vol_id) != UBI_FM_DATA_VOLUME_ID) {
1006 ubi_err(ubi, "bad fastmap data vol_id: 0x%x, expected: 0x%x",
1007 be32_to_cpu(vh->vol_id),
1008 UBI_FM_DATA_VOLUME_ID);
1009 ret = UBI_BAD_FASTMAP;
1014 if (sqnum < be64_to_cpu(vh->sqnum))
1015 sqnum = be64_to_cpu(vh->sqnum);
1017 ret = ubi_io_read(ubi, ubi->fm_buf + (ubi->leb_size * i), pnum,
1018 ubi->leb_start, ubi->leb_size);
1019 if (ret && ret != UBI_IO_BITFLIPS) {
1020 ubi_err(ubi, "unable to read fastmap block# %i (PEB: %i, "
1021 "err: %i)", i, pnum, ret);
1029 fmsb2 = (struct ubi_fm_sb *)(ubi->fm_buf);
1030 tmp_crc = be32_to_cpu(fmsb2->data_crc);
1031 fmsb2->data_crc = 0;
1032 crc = crc32(UBI_CRC32_INIT, ubi->fm_buf, fm_size);
1033 if (crc != tmp_crc) {
1034 ubi_err(ubi, "fastmap data CRC is invalid");
1035 ubi_err(ubi, "CRC should be: 0x%x, calc: 0x%x",
1037 ret = UBI_BAD_FASTMAP;
1041 fmsb2->sqnum = sqnum;
1043 fm->used_blocks = used_blocks;
1045 ret = ubi_attach_fastmap(ubi, ai, fm);
1048 ret = UBI_BAD_FASTMAP;
1052 for (i = 0; i < used_blocks; i++) {
1053 struct ubi_wl_entry *e;
1055 e = kmem_cache_alloc(ubi_wl_entry_slab, GFP_KERNEL);
1064 e->pnum = be32_to_cpu(fmsb2->block_loc[i]);
1065 e->ec = be32_to_cpu(fmsb2->block_ec[i]);
1070 ubi->fm_pool.max_size = ubi->fm->max_pool_size;
1071 ubi->fm_wl_pool.max_size = ubi->fm->max_wl_pool_size;
1072 ubi_msg(ubi, "attached by fastmap");
1073 ubi_msg(ubi, "fastmap pool size: %d", ubi->fm_pool.max_size);
1074 ubi_msg(ubi, "fastmap WL pool size: %d",
1075 ubi->fm_wl_pool.max_size);
1076 ubi->fm_disabled = 0;
1078 ubi_free_vid_hdr(ubi, vh);
1081 up_write(&ubi->fm_protect);
1082 if (ret == UBI_BAD_FASTMAP)
1083 ubi_err(ubi, "Attach by fastmap failed, doing a full scan!");
1087 ubi_free_vid_hdr(ubi, vh);
1096 * ubi_write_fastmap - writes a fastmap.
1097 * @ubi: UBI device object
1098 * @new_fm: the to be written fastmap
1100 * Returns 0 on success, < 0 indicates an internal error.
1102 static int ubi_write_fastmap(struct ubi_device *ubi,
1103 struct ubi_fastmap_layout *new_fm)
1107 struct ubi_fm_sb *fmsb;
1108 struct ubi_fm_hdr *fmh;
1109 struct ubi_fm_scan_pool *fmpl, *fmpl_wl;
1110 struct ubi_fm_ec *fec;
1111 struct ubi_fm_volhdr *fvh;
1112 struct ubi_fm_eba *feba;
1113 struct ubi_wl_entry *wl_e;
1114 struct ubi_volume *vol;
1115 struct ubi_vid_hdr *avhdr, *dvhdr;
1116 struct ubi_work *ubi_wrk;
1117 struct rb_node *tmp_rb;
1118 int ret, i, j, free_peb_count, used_peb_count, vol_count;
1119 int scrub_peb_count, erase_peb_count;
1120 int *seen_pebs = NULL;
1122 fm_raw = ubi->fm_buf;
1123 memset(ubi->fm_buf, 0, ubi->fm_size);
1125 avhdr = new_fm_vhdr(ubi, UBI_FM_SB_VOLUME_ID);
1131 dvhdr = new_fm_vhdr(ubi, UBI_FM_DATA_VOLUME_ID);
1137 seen_pebs = init_seen(ubi);
1138 if (IS_ERR(seen_pebs)) {
1139 ret = PTR_ERR(seen_pebs);
1143 spin_lock(&ubi->volumes_lock);
1144 spin_lock(&ubi->wl_lock);
1146 fmsb = (struct ubi_fm_sb *)fm_raw;
1147 fm_pos += sizeof(*fmsb);
1148 ubi_assert(fm_pos <= ubi->fm_size);
1150 fmh = (struct ubi_fm_hdr *)(fm_raw + fm_pos);
1151 fm_pos += sizeof(*fmh);
1152 ubi_assert(fm_pos <= ubi->fm_size);
1154 fmsb->magic = cpu_to_be32(UBI_FM_SB_MAGIC);
1155 fmsb->version = UBI_FM_FMT_VERSION;
1156 fmsb->used_blocks = cpu_to_be32(new_fm->used_blocks);
1157 /* the max sqnum will be filled in while *reading* the fastmap */
1160 fmh->magic = cpu_to_be32(UBI_FM_HDR_MAGIC);
1163 scrub_peb_count = 0;
1164 erase_peb_count = 0;
1167 fmpl = (struct ubi_fm_scan_pool *)(fm_raw + fm_pos);
1168 fm_pos += sizeof(*fmpl);
1169 fmpl->magic = cpu_to_be32(UBI_FM_POOL_MAGIC);
1170 fmpl->size = cpu_to_be16(ubi->fm_pool.size);
1171 fmpl->max_size = cpu_to_be16(ubi->fm_pool.max_size);
1173 for (i = 0; i < ubi->fm_pool.size; i++) {
1174 fmpl->pebs[i] = cpu_to_be32(ubi->fm_pool.pebs[i]);
1175 set_seen(ubi, ubi->fm_pool.pebs[i], seen_pebs);
1178 fmpl_wl = (struct ubi_fm_scan_pool *)(fm_raw + fm_pos);
1179 fm_pos += sizeof(*fmpl_wl);
1180 fmpl_wl->magic = cpu_to_be32(UBI_FM_POOL_MAGIC);
1181 fmpl_wl->size = cpu_to_be16(ubi->fm_wl_pool.size);
1182 fmpl_wl->max_size = cpu_to_be16(ubi->fm_wl_pool.max_size);
1184 for (i = 0; i < ubi->fm_wl_pool.size; i++) {
1185 fmpl_wl->pebs[i] = cpu_to_be32(ubi->fm_wl_pool.pebs[i]);
1186 set_seen(ubi, ubi->fm_wl_pool.pebs[i], seen_pebs);
1189 ubi_for_each_free_peb(ubi, wl_e, tmp_rb) {
1190 fec = (struct ubi_fm_ec *)(fm_raw + fm_pos);
1192 fec->pnum = cpu_to_be32(wl_e->pnum);
1193 set_seen(ubi, wl_e->pnum, seen_pebs);
1194 fec->ec = cpu_to_be32(wl_e->ec);
1197 fm_pos += sizeof(*fec);
1198 ubi_assert(fm_pos <= ubi->fm_size);
1200 fmh->free_peb_count = cpu_to_be32(free_peb_count);
1202 ubi_for_each_used_peb(ubi, wl_e, tmp_rb) {
1203 fec = (struct ubi_fm_ec *)(fm_raw + fm_pos);
1205 fec->pnum = cpu_to_be32(wl_e->pnum);
1206 set_seen(ubi, wl_e->pnum, seen_pebs);
1207 fec->ec = cpu_to_be32(wl_e->ec);
1210 fm_pos += sizeof(*fec);
1211 ubi_assert(fm_pos <= ubi->fm_size);
1214 ubi_for_each_protected_peb(ubi, i, wl_e) {
1215 fec = (struct ubi_fm_ec *)(fm_raw + fm_pos);
1217 fec->pnum = cpu_to_be32(wl_e->pnum);
1218 set_seen(ubi, wl_e->pnum, seen_pebs);
1219 fec->ec = cpu_to_be32(wl_e->ec);
1222 fm_pos += sizeof(*fec);
1223 ubi_assert(fm_pos <= ubi->fm_size);
1225 fmh->used_peb_count = cpu_to_be32(used_peb_count);
1227 ubi_for_each_scrub_peb(ubi, wl_e, tmp_rb) {
1228 fec = (struct ubi_fm_ec *)(fm_raw + fm_pos);
1230 fec->pnum = cpu_to_be32(wl_e->pnum);
1231 set_seen(ubi, wl_e->pnum, seen_pebs);
1232 fec->ec = cpu_to_be32(wl_e->ec);
1235 fm_pos += sizeof(*fec);
1236 ubi_assert(fm_pos <= ubi->fm_size);
1238 fmh->scrub_peb_count = cpu_to_be32(scrub_peb_count);
1241 list_for_each_entry(ubi_wrk, &ubi->works, list) {
1242 if (ubi_is_erase_work(ubi_wrk)) {
1246 fec = (struct ubi_fm_ec *)(fm_raw + fm_pos);
1248 fec->pnum = cpu_to_be32(wl_e->pnum);
1249 set_seen(ubi, wl_e->pnum, seen_pebs);
1250 fec->ec = cpu_to_be32(wl_e->ec);
1253 fm_pos += sizeof(*fec);
1254 ubi_assert(fm_pos <= ubi->fm_size);
1257 fmh->erase_peb_count = cpu_to_be32(erase_peb_count);
1259 for (i = 0; i < UBI_MAX_VOLUMES + UBI_INT_VOL_COUNT; i++) {
1260 vol = ubi->volumes[i];
1267 fvh = (struct ubi_fm_volhdr *)(fm_raw + fm_pos);
1268 fm_pos += sizeof(*fvh);
1269 ubi_assert(fm_pos <= ubi->fm_size);
1271 fvh->magic = cpu_to_be32(UBI_FM_VHDR_MAGIC);
1272 fvh->vol_id = cpu_to_be32(vol->vol_id);
1273 fvh->vol_type = vol->vol_type;
1274 fvh->used_ebs = cpu_to_be32(vol->used_ebs);
1275 fvh->data_pad = cpu_to_be32(vol->data_pad);
1276 fvh->last_eb_bytes = cpu_to_be32(vol->last_eb_bytes);
1278 ubi_assert(vol->vol_type == UBI_DYNAMIC_VOLUME ||
1279 vol->vol_type == UBI_STATIC_VOLUME);
1281 feba = (struct ubi_fm_eba *)(fm_raw + fm_pos);
1282 fm_pos += sizeof(*feba) + (sizeof(__be32) * vol->reserved_pebs);
1283 ubi_assert(fm_pos <= ubi->fm_size);
1285 for (j = 0; j < vol->reserved_pebs; j++)
1286 feba->pnum[j] = cpu_to_be32(vol->eba_tbl[j]);
1288 feba->reserved_pebs = cpu_to_be32(j);
1289 feba->magic = cpu_to_be32(UBI_FM_EBA_MAGIC);
1291 fmh->vol_count = cpu_to_be32(vol_count);
1292 fmh->bad_peb_count = cpu_to_be32(ubi->bad_peb_count);
1294 avhdr->sqnum = cpu_to_be64(ubi_next_sqnum(ubi));
1297 spin_unlock(&ubi->wl_lock);
1298 spin_unlock(&ubi->volumes_lock);
1300 dbg_bld("writing fastmap SB to PEB %i", new_fm->e[0]->pnum);
1301 ret = ubi_io_write_vid_hdr(ubi, new_fm->e[0]->pnum, avhdr);
1303 ubi_err(ubi, "unable to write vid_hdr to fastmap SB!");
1307 for (i = 0; i < new_fm->used_blocks; i++) {
1308 fmsb->block_loc[i] = cpu_to_be32(new_fm->e[i]->pnum);
1309 set_seen(ubi, new_fm->e[i]->pnum, seen_pebs);
1310 fmsb->block_ec[i] = cpu_to_be32(new_fm->e[i]->ec);
1314 fmsb->data_crc = cpu_to_be32(crc32(UBI_CRC32_INIT, fm_raw,
1317 for (i = 1; i < new_fm->used_blocks; i++) {
1318 dvhdr->sqnum = cpu_to_be64(ubi_next_sqnum(ubi));
1319 dvhdr->lnum = cpu_to_be32(i);
1320 dbg_bld("writing fastmap data to PEB %i sqnum %llu",
1321 new_fm->e[i]->pnum, be64_to_cpu(dvhdr->sqnum));
1322 ret = ubi_io_write_vid_hdr(ubi, new_fm->e[i]->pnum, dvhdr);
1324 ubi_err(ubi, "unable to write vid_hdr to PEB %i!",
1325 new_fm->e[i]->pnum);
1330 for (i = 0; i < new_fm->used_blocks; i++) {
1331 ret = ubi_io_write(ubi, fm_raw + (i * ubi->leb_size),
1332 new_fm->e[i]->pnum, ubi->leb_start, ubi->leb_size);
1334 ubi_err(ubi, "unable to write fastmap to PEB %i!",
1335 new_fm->e[i]->pnum);
1343 ret = self_check_seen(ubi, seen_pebs);
1344 dbg_bld("fastmap written!");
1347 ubi_free_vid_hdr(ubi, avhdr);
1348 ubi_free_vid_hdr(ubi, dvhdr);
1349 free_seen(seen_pebs);
1355 * erase_block - Manually erase a PEB.
1356 * @ubi: UBI device object
1357 * @pnum: PEB to be erased
1359 * Returns the new EC value on success, < 0 indicates an internal error.
1361 static int erase_block(struct ubi_device *ubi, int pnum)
1364 struct ubi_ec_hdr *ec_hdr;
1367 ec_hdr = kzalloc(ubi->ec_hdr_alsize, GFP_KERNEL);
1371 ret = ubi_io_read_ec_hdr(ubi, pnum, ec_hdr, 0);
1374 else if (ret && ret != UBI_IO_BITFLIPS) {
1379 ret = ubi_io_sync_erase(ubi, pnum, 0);
1383 ec = be64_to_cpu(ec_hdr->ec);
1385 if (ec > UBI_MAX_ERASECOUNTER) {
1390 ec_hdr->ec = cpu_to_be64(ec);
1391 ret = ubi_io_write_ec_hdr(ubi, pnum, ec_hdr);
1402 * invalidate_fastmap - destroys a fastmap.
1403 * @ubi: UBI device object
1405 * This function ensures that upon next UBI attach a full scan
1406 * is issued. We need this if UBI is about to write a new fastmap
1407 * but is unable to do so. In this case we have two options:
1408 * a) Make sure that the current fastmap will not be usued upon
1409 * attach time and contine or b) fall back to RO mode to have the
1410 * current fastmap in a valid state.
1411 * Returns 0 on success, < 0 indicates an internal error.
1413 static int invalidate_fastmap(struct ubi_device *ubi)
1416 struct ubi_fastmap_layout *fm;
1417 struct ubi_wl_entry *e;
1418 struct ubi_vid_hdr *vh = NULL;
1426 fm = kzalloc(sizeof(*fm), GFP_KERNEL);
1430 vh = new_fm_vhdr(ubi, UBI_FM_SB_VOLUME_ID);
1435 e = ubi_wl_get_fm_peb(ubi, 1);
1440 * Create fake fastmap such that UBI will fall back
1443 vh->sqnum = cpu_to_be64(ubi_next_sqnum(ubi));
1444 ret = ubi_io_write_vid_hdr(ubi, e->pnum, vh);
1446 ubi_wl_put_fm_peb(ubi, e, 0, 0);
1450 fm->used_blocks = 1;
1456 ubi_free_vid_hdr(ubi, vh);
1465 * return_fm_pebs - returns all PEBs used by a fastmap back to the
1467 * @ubi: UBI device object
1468 * @fm: fastmap layout object
1470 static void return_fm_pebs(struct ubi_device *ubi,
1471 struct ubi_fastmap_layout *fm)
1478 for (i = 0; i < fm->used_blocks; i++) {
1480 ubi_wl_put_fm_peb(ubi, fm->e[i], i,
1481 fm->to_be_tortured[i]);
1488 * ubi_update_fastmap - will be called by UBI if a volume changes or
1489 * a fastmap pool becomes full.
1490 * @ubi: UBI device object
1492 * Returns 0 on success, < 0 indicates an internal error.
1494 int ubi_update_fastmap(struct ubi_device *ubi)
1497 struct ubi_fastmap_layout *new_fm, *old_fm;
1498 struct ubi_wl_entry *tmp_e;
1500 down_write(&ubi->fm_protect);
1502 ubi_refill_pools(ubi);
1504 if (ubi->ro_mode || ubi->fm_disabled) {
1505 up_write(&ubi->fm_protect);
1509 ret = ubi_ensure_anchor_pebs(ubi);
1511 up_write(&ubi->fm_protect);
1515 new_fm = kzalloc(sizeof(*new_fm), GFP_KERNEL);
1517 up_write(&ubi->fm_protect);
1521 new_fm->used_blocks = ubi->fm_size / ubi->leb_size;
1525 if (new_fm->used_blocks > UBI_FM_MAX_BLOCKS) {
1526 ubi_err(ubi, "fastmap too large");
1531 for (i = 1; i < new_fm->used_blocks; i++) {
1532 spin_lock(&ubi->wl_lock);
1533 tmp_e = ubi_wl_get_fm_peb(ubi, 0);
1534 spin_unlock(&ubi->wl_lock);
1537 if (old_fm && old_fm->e[i]) {
1538 ret = erase_block(ubi, old_fm->e[i]->pnum);
1540 ubi_err(ubi, "could not erase old fastmap PEB");
1542 for (j = 1; j < i; j++) {
1543 ubi_wl_put_fm_peb(ubi, new_fm->e[j],
1545 new_fm->e[j] = NULL;
1549 new_fm->e[i] = old_fm->e[i];
1550 old_fm->e[i] = NULL;
1552 ubi_err(ubi, "could not get any free erase block");
1554 for (j = 1; j < i; j++) {
1555 ubi_wl_put_fm_peb(ubi, new_fm->e[j], j, 0);
1556 new_fm->e[j] = NULL;
1563 new_fm->e[i] = tmp_e;
1565 if (old_fm && old_fm->e[i]) {
1566 ubi_wl_put_fm_peb(ubi, old_fm->e[i], i,
1567 old_fm->to_be_tortured[i]);
1568 old_fm->e[i] = NULL;
1573 /* Old fastmap is larger than the new one */
1574 if (old_fm && new_fm->used_blocks < old_fm->used_blocks) {
1575 for (i = new_fm->used_blocks; i < old_fm->used_blocks; i++) {
1576 ubi_wl_put_fm_peb(ubi, old_fm->e[i], i,
1577 old_fm->to_be_tortured[i]);
1578 old_fm->e[i] = NULL;
1582 spin_lock(&ubi->wl_lock);
1583 tmp_e = ubi_wl_get_fm_peb(ubi, 1);
1584 spin_unlock(&ubi->wl_lock);
1587 /* no fresh anchor PEB was found, reuse the old one */
1589 ret = erase_block(ubi, old_fm->e[0]->pnum);
1591 ubi_err(ubi, "could not erase old anchor PEB");
1593 for (i = 1; i < new_fm->used_blocks; i++) {
1594 ubi_wl_put_fm_peb(ubi, new_fm->e[i],
1596 new_fm->e[i] = NULL;
1600 new_fm->e[0] = old_fm->e[0];
1601 new_fm->e[0]->ec = ret;
1602 old_fm->e[0] = NULL;
1604 /* we've got a new anchor PEB, return the old one */
1605 ubi_wl_put_fm_peb(ubi, old_fm->e[0], 0,
1606 old_fm->to_be_tortured[0]);
1607 new_fm->e[0] = tmp_e;
1608 old_fm->e[0] = NULL;
1612 ubi_err(ubi, "could not find any anchor PEB");
1614 for (i = 1; i < new_fm->used_blocks; i++) {
1615 ubi_wl_put_fm_peb(ubi, new_fm->e[i], i, 0);
1616 new_fm->e[i] = NULL;
1622 new_fm->e[0] = tmp_e;
1625 down_write(&ubi->work_sem);
1626 down_write(&ubi->fm_eba_sem);
1627 ret = ubi_write_fastmap(ubi, new_fm);
1628 up_write(&ubi->fm_eba_sem);
1629 up_write(&ubi->work_sem);
1635 up_write(&ubi->fm_protect);
1640 ubi_warn(ubi, "Unable to write new fastmap, err=%i", ret);
1642 ret = invalidate_fastmap(ubi);
1644 ubi_err(ubi, "Unable to invalidiate current fastmap!");
1647 return_fm_pebs(ubi, old_fm);
1648 return_fm_pebs(ubi, new_fm);