2 * Copyright (c) 2012 Linutronix GmbH
3 * Copyright (c) 2014 sigma star gmbh
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
13 * the GNU General Public License for more details.
17 #include <linux/crc32.h>
21 * init_seen - allocate memory for used for debugging.
22 * @ubi: UBI device description object
24 static inline int *init_seen(struct ubi_device *ubi)
28 if (!ubi_dbg_chk_fastmap(ubi))
31 ret = kcalloc(ubi->peb_count, sizeof(int), GFP_KERNEL);
33 return ERR_PTR(-ENOMEM);
39 * free_seen - free the seen logic integer array.
40 * @seen: integer array of @ubi->peb_count size
42 static inline void free_seen(int *seen)
48 * set_seen - mark a PEB as seen.
49 * @ubi: UBI device description object
50 * @pnum: The PEB to be makred as seen
51 * @seen: integer array of @ubi->peb_count size
53 static inline void set_seen(struct ubi_device *ubi, int pnum, int *seen)
55 if (!ubi_dbg_chk_fastmap(ubi) || !seen)
62 * self_check_seen - check whether all PEB have been seen by fastmap.
63 * @ubi: UBI device description object
64 * @seen: integer array of @ubi->peb_count size
66 static int self_check_seen(struct ubi_device *ubi, int *seen)
70 if (!ubi_dbg_chk_fastmap(ubi) || !seen)
73 for (pnum = 0; pnum < ubi->peb_count; pnum++) {
74 if (!seen[pnum] && ubi->lookuptbl[pnum]) {
75 ubi_err(ubi, "self-check failed for PEB %d, fastmap didn't see it", pnum);
84 * ubi_calc_fm_size - calculates the fastmap size in bytes for an UBI device.
85 * @ubi: UBI device description object
87 size_t ubi_calc_fm_size(struct ubi_device *ubi)
91 size = sizeof(struct ubi_fm_sb) +
92 sizeof(struct ubi_fm_hdr) +
93 sizeof(struct ubi_fm_scan_pool) +
94 sizeof(struct ubi_fm_scan_pool) +
95 (ubi->peb_count * sizeof(struct ubi_fm_ec)) +
96 (sizeof(struct ubi_fm_eba) +
97 (ubi->peb_count * sizeof(__be32))) +
98 sizeof(struct ubi_fm_volhdr) * UBI_MAX_VOLUMES;
99 return roundup(size, ubi->leb_size);
104 * new_fm_vhdr - allocate a new volume header for fastmap usage.
105 * @ubi: UBI device description object
106 * @vol_id: the VID of the new header
108 * Returns a new struct ubi_vid_hdr on success.
109 * NULL indicates out of memory.
111 static struct ubi_vid_hdr *new_fm_vhdr(struct ubi_device *ubi, int vol_id)
113 struct ubi_vid_hdr *new;
115 new = ubi_zalloc_vid_hdr(ubi, GFP_KERNEL);
119 new->vol_type = UBI_VID_DYNAMIC;
120 new->vol_id = cpu_to_be32(vol_id);
122 /* UBI implementations without fastmap support have to delete the
125 new->compat = UBI_COMPAT_DELETE;
132 * add_aeb - create and add a attach erase block to a given list.
133 * @ai: UBI attach info object
134 * @list: the target list
135 * @pnum: PEB number of the new attach erase block
136 * @ec: erease counter of the new LEB
137 * @scrub: scrub this PEB after attaching
139 * Returns 0 on success, < 0 indicates an internal error.
141 static int add_aeb(struct ubi_attach_info *ai, struct list_head *list,
142 int pnum, int ec, int scrub)
144 struct ubi_ainf_peb *aeb;
146 aeb = kmem_cache_alloc(ai->aeb_slab_cache, GFP_KERNEL);
154 aeb->copy_flag = aeb->sqnum = 0;
156 ai->ec_sum += aeb->ec;
159 if (ai->max_ec < aeb->ec)
160 ai->max_ec = aeb->ec;
162 if (ai->min_ec > aeb->ec)
163 ai->min_ec = aeb->ec;
165 list_add_tail(&aeb->u.list, list);
171 * add_vol - create and add a new volume to ubi_attach_info.
172 * @ai: ubi_attach_info object
173 * @vol_id: VID of the new volume
174 * @used_ebs: number of used EBS
175 * @data_pad: data padding value of the new volume
176 * @vol_type: volume type
177 * @last_eb_bytes: number of bytes in the last LEB
179 * Returns the new struct ubi_ainf_volume on success.
180 * NULL indicates an error.
182 static struct ubi_ainf_volume *add_vol(struct ubi_attach_info *ai, int vol_id,
183 int used_ebs, int data_pad, u8 vol_type,
186 struct ubi_ainf_volume *av;
187 struct rb_node **p = &ai->volumes.rb_node, *parent = NULL;
191 av = rb_entry(parent, struct ubi_ainf_volume, rb);
193 if (vol_id > av->vol_id)
195 else if (vol_id < av->vol_id)
198 return ERR_PTR(-EINVAL);
201 av = kmalloc(sizeof(struct ubi_ainf_volume), GFP_KERNEL);
205 av->highest_lnum = av->leb_count = av->used_ebs = 0;
207 av->data_pad = data_pad;
208 av->last_data_size = last_eb_bytes;
210 av->vol_type = vol_type;
212 if (av->vol_type == UBI_STATIC_VOLUME)
213 av->used_ebs = used_ebs;
215 dbg_bld("found volume (ID %i)", vol_id);
217 rb_link_node(&av->rb, parent, p);
218 rb_insert_color(&av->rb, &ai->volumes);
225 * assign_aeb_to_av - assigns a SEB to a given ainf_volume and removes it
226 * from it's original list.
227 * @ai: ubi_attach_info object
228 * @aeb: the to be assigned SEB
229 * @av: target scan volume
231 static void assign_aeb_to_av(struct ubi_attach_info *ai,
232 struct ubi_ainf_peb *aeb,
233 struct ubi_ainf_volume *av)
235 struct ubi_ainf_peb *tmp_aeb;
236 struct rb_node **p = &ai->volumes.rb_node, *parent = NULL;
238 p = &av->root.rb_node;
242 tmp_aeb = rb_entry(parent, struct ubi_ainf_peb, u.rb);
243 if (aeb->lnum != tmp_aeb->lnum) {
244 if (aeb->lnum < tmp_aeb->lnum)
254 list_del(&aeb->u.list);
257 rb_link_node(&aeb->u.rb, parent, p);
258 rb_insert_color(&aeb->u.rb, &av->root);
262 * update_vol - inserts or updates a LEB which was found a pool.
263 * @ubi: the UBI device object
264 * @ai: attach info object
265 * @av: the volume this LEB belongs to
266 * @new_vh: the volume header derived from new_aeb
267 * @new_aeb: the AEB to be examined
269 * Returns 0 on success, < 0 indicates an internal error.
271 static int update_vol(struct ubi_device *ubi, struct ubi_attach_info *ai,
272 struct ubi_ainf_volume *av, struct ubi_vid_hdr *new_vh,
273 struct ubi_ainf_peb *new_aeb)
275 struct rb_node **p = &av->root.rb_node, *parent = NULL;
276 struct ubi_ainf_peb *aeb, *victim;
281 aeb = rb_entry(parent, struct ubi_ainf_peb, u.rb);
283 if (be32_to_cpu(new_vh->lnum) != aeb->lnum) {
284 if (be32_to_cpu(new_vh->lnum) < aeb->lnum)
292 /* This case can happen if the fastmap gets written
293 * because of a volume change (creation, deletion, ..).
294 * Then a PEB can be within the persistent EBA and the pool.
296 if (aeb->pnum == new_aeb->pnum) {
297 ubi_assert(aeb->lnum == new_aeb->lnum);
298 kmem_cache_free(ai->aeb_slab_cache, new_aeb);
303 cmp_res = ubi_compare_lebs(ubi, aeb, new_aeb->pnum, new_vh);
307 /* new_aeb is newer */
309 victim = kmem_cache_alloc(ai->aeb_slab_cache,
314 victim->ec = aeb->ec;
315 victim->pnum = aeb->pnum;
316 list_add_tail(&victim->u.list, &ai->erase);
318 if (av->highest_lnum == be32_to_cpu(new_vh->lnum))
320 be32_to_cpu(new_vh->data_size);
322 dbg_bld("vol %i: AEB %i's PEB %i is the newer",
323 av->vol_id, aeb->lnum, new_aeb->pnum);
325 aeb->ec = new_aeb->ec;
326 aeb->pnum = new_aeb->pnum;
327 aeb->copy_flag = new_vh->copy_flag;
328 aeb->scrub = new_aeb->scrub;
329 kmem_cache_free(ai->aeb_slab_cache, new_aeb);
331 /* new_aeb is older */
333 dbg_bld("vol %i: AEB %i's PEB %i is old, dropping it",
334 av->vol_id, aeb->lnum, new_aeb->pnum);
335 list_add_tail(&new_aeb->u.list, &ai->erase);
340 /* This LEB is new, let's add it to the volume */
342 if (av->highest_lnum <= be32_to_cpu(new_vh->lnum)) {
343 av->highest_lnum = be32_to_cpu(new_vh->lnum);
344 av->last_data_size = be32_to_cpu(new_vh->data_size);
347 if (av->vol_type == UBI_STATIC_VOLUME)
348 av->used_ebs = be32_to_cpu(new_vh->used_ebs);
352 rb_link_node(&new_aeb->u.rb, parent, p);
353 rb_insert_color(&new_aeb->u.rb, &av->root);
359 * process_pool_aeb - we found a non-empty PEB in a pool.
360 * @ubi: UBI device object
361 * @ai: attach info object
362 * @new_vh: the volume header derived from new_aeb
363 * @new_aeb: the AEB to be examined
365 * Returns 0 on success, < 0 indicates an internal error.
367 static int process_pool_aeb(struct ubi_device *ubi, struct ubi_attach_info *ai,
368 struct ubi_vid_hdr *new_vh,
369 struct ubi_ainf_peb *new_aeb)
371 struct ubi_ainf_volume *av, *tmp_av = NULL;
372 struct rb_node **p = &ai->volumes.rb_node, *parent = NULL;
375 if (be32_to_cpu(new_vh->vol_id) == UBI_FM_SB_VOLUME_ID ||
376 be32_to_cpu(new_vh->vol_id) == UBI_FM_DATA_VOLUME_ID) {
377 kmem_cache_free(ai->aeb_slab_cache, new_aeb);
382 /* Find the volume this SEB belongs to */
385 tmp_av = rb_entry(parent, struct ubi_ainf_volume, rb);
387 if (be32_to_cpu(new_vh->vol_id) > tmp_av->vol_id)
389 else if (be32_to_cpu(new_vh->vol_id) < tmp_av->vol_id)
400 ubi_err(ubi, "orphaned volume in fastmap pool!");
401 kmem_cache_free(ai->aeb_slab_cache, new_aeb);
402 return UBI_BAD_FASTMAP;
405 ubi_assert(be32_to_cpu(new_vh->vol_id) == av->vol_id);
407 return update_vol(ubi, ai, av, new_vh, new_aeb);
411 * unmap_peb - unmap a PEB.
412 * If fastmap detects a free PEB in the pool it has to check whether
413 * this PEB has been unmapped after writing the fastmap.
415 * @ai: UBI attach info object
416 * @pnum: The PEB to be unmapped
418 static void unmap_peb(struct ubi_attach_info *ai, int pnum)
420 struct ubi_ainf_volume *av;
421 struct rb_node *node, *node2;
422 struct ubi_ainf_peb *aeb;
424 for (node = rb_first(&ai->volumes); node; node = rb_next(node)) {
425 av = rb_entry(node, struct ubi_ainf_volume, rb);
427 for (node2 = rb_first(&av->root); node2;
428 node2 = rb_next(node2)) {
429 aeb = rb_entry(node2, struct ubi_ainf_peb, u.rb);
430 if (aeb->pnum == pnum) {
431 rb_erase(&aeb->u.rb, &av->root);
433 kmem_cache_free(ai->aeb_slab_cache, aeb);
441 * scan_pool - scans a pool for changed (no longer empty PEBs).
442 * @ubi: UBI device object
443 * @ai: attach info object
444 * @pebs: an array of all PEB numbers in the to be scanned pool
445 * @pool_size: size of the pool (number of entries in @pebs)
446 * @max_sqnum: pointer to the maximal sequence number
447 * @free: list of PEBs which are most likely free (and go into @ai->free)
449 * Returns 0 on success, if the pool is unusable UBI_BAD_FASTMAP is returned.
450 * < 0 indicates an internal error.
452 static int scan_pool(struct ubi_device *ubi, struct ubi_attach_info *ai,
453 int *pebs, int pool_size, unsigned long long *max_sqnum,
454 struct list_head *free)
456 struct ubi_vid_hdr *vh;
457 struct ubi_ec_hdr *ech;
458 struct ubi_ainf_peb *new_aeb;
459 int i, pnum, err, ret = 0;
461 ech = kzalloc(ubi->ec_hdr_alsize, GFP_KERNEL);
465 vh = ubi_zalloc_vid_hdr(ubi, GFP_KERNEL);
471 dbg_bld("scanning fastmap pool: size = %i", pool_size);
474 * Now scan all PEBs in the pool to find changes which have been made
475 * after the creation of the fastmap
477 for (i = 0; i < pool_size; i++) {
481 pnum = be32_to_cpu(pebs[i]);
483 if (ubi_io_is_bad(ubi, pnum)) {
484 ubi_err(ubi, "bad PEB in fastmap pool!");
485 ret = UBI_BAD_FASTMAP;
489 err = ubi_io_read_ec_hdr(ubi, pnum, ech, 0);
490 if (err && err != UBI_IO_BITFLIPS) {
491 ubi_err(ubi, "unable to read EC header! PEB:%i err:%i",
493 ret = err > 0 ? UBI_BAD_FASTMAP : err;
495 } else if (err == UBI_IO_BITFLIPS)
499 * Older UBI implementations have image_seq set to zero, so
500 * we shouldn't fail if image_seq == 0.
502 image_seq = be32_to_cpu(ech->image_seq);
504 if (image_seq && (image_seq != ubi->image_seq)) {
505 ubi_err(ubi, "bad image seq: 0x%x, expected: 0x%x",
506 be32_to_cpu(ech->image_seq), ubi->image_seq);
507 ret = UBI_BAD_FASTMAP;
511 err = ubi_io_read_vid_hdr(ubi, pnum, vh, 0);
512 if (err == UBI_IO_FF || err == UBI_IO_FF_BITFLIPS) {
513 unsigned long long ec = be64_to_cpu(ech->ec);
515 dbg_bld("Adding PEB to free: %i", pnum);
516 if (err == UBI_IO_FF_BITFLIPS)
517 add_aeb(ai, free, pnum, ec, 1);
519 add_aeb(ai, free, pnum, ec, 0);
521 } else if (err == 0 || err == UBI_IO_BITFLIPS) {
522 dbg_bld("Found non empty PEB:%i in pool", pnum);
524 if (err == UBI_IO_BITFLIPS)
527 new_aeb = kmem_cache_alloc(ai->aeb_slab_cache,
534 new_aeb->ec = be64_to_cpu(ech->ec);
535 new_aeb->pnum = pnum;
536 new_aeb->lnum = be32_to_cpu(vh->lnum);
537 new_aeb->sqnum = be64_to_cpu(vh->sqnum);
538 new_aeb->copy_flag = vh->copy_flag;
539 new_aeb->scrub = scrub;
541 if (*max_sqnum < new_aeb->sqnum)
542 *max_sqnum = new_aeb->sqnum;
544 err = process_pool_aeb(ubi, ai, vh, new_aeb);
546 ret = err > 0 ? UBI_BAD_FASTMAP : err;
550 /* We are paranoid and fall back to scanning mode */
551 ubi_err(ubi, "fastmap pool PEBs contains damaged PEBs!");
552 ret = err > 0 ? UBI_BAD_FASTMAP : err;
559 ubi_free_vid_hdr(ubi, vh);
565 * count_fastmap_pebs - Counts the PEBs found by fastmap.
566 * @ai: The UBI attach info object
568 static int count_fastmap_pebs(struct ubi_attach_info *ai)
570 struct ubi_ainf_peb *aeb;
571 struct ubi_ainf_volume *av;
572 struct rb_node *rb1, *rb2;
575 list_for_each_entry(aeb, &ai->erase, u.list)
578 list_for_each_entry(aeb, &ai->free, u.list)
581 ubi_rb_for_each_entry(rb1, av, &ai->volumes, rb)
582 ubi_rb_for_each_entry(rb2, aeb, &av->root, u.rb)
589 * ubi_attach_fastmap - creates ubi_attach_info from a fastmap.
590 * @ubi: UBI device object
591 * @ai: UBI attach info object
592 * @fm: the fastmap to be attached
594 * Returns 0 on success, UBI_BAD_FASTMAP if the found fastmap was unusable.
595 * < 0 indicates an internal error.
597 static int ubi_attach_fastmap(struct ubi_device *ubi,
598 struct ubi_attach_info *ai,
599 struct ubi_fastmap_layout *fm)
601 struct list_head used, free;
602 struct ubi_ainf_volume *av;
603 struct ubi_ainf_peb *aeb, *tmp_aeb, *_tmp_aeb;
604 struct ubi_fm_sb *fmsb;
605 struct ubi_fm_hdr *fmhdr;
606 struct ubi_fm_scan_pool *fmpl, *fmpl_wl;
607 struct ubi_fm_ec *fmec;
608 struct ubi_fm_volhdr *fmvhdr;
609 struct ubi_fm_eba *fm_eba;
610 int ret, i, j, pool_size, wl_pool_size;
611 size_t fm_pos = 0, fm_size = ubi->fm_size;
612 unsigned long long max_sqnum = 0;
613 void *fm_raw = ubi->fm_buf;
615 INIT_LIST_HEAD(&used);
616 INIT_LIST_HEAD(&free);
617 ai->min_ec = UBI_MAX_ERASECOUNTER;
619 fmsb = (struct ubi_fm_sb *)(fm_raw);
620 ai->max_sqnum = fmsb->sqnum;
621 fm_pos += sizeof(struct ubi_fm_sb);
622 if (fm_pos >= fm_size)
625 fmhdr = (struct ubi_fm_hdr *)(fm_raw + fm_pos);
626 fm_pos += sizeof(*fmhdr);
627 if (fm_pos >= fm_size)
630 if (be32_to_cpu(fmhdr->magic) != UBI_FM_HDR_MAGIC) {
631 ubi_err(ubi, "bad fastmap header magic: 0x%x, expected: 0x%x",
632 be32_to_cpu(fmhdr->magic), UBI_FM_HDR_MAGIC);
636 fmpl = (struct ubi_fm_scan_pool *)(fm_raw + fm_pos);
637 fm_pos += sizeof(*fmpl);
638 if (fm_pos >= fm_size)
640 if (be32_to_cpu(fmpl->magic) != UBI_FM_POOL_MAGIC) {
641 ubi_err(ubi, "bad fastmap pool magic: 0x%x, expected: 0x%x",
642 be32_to_cpu(fmpl->magic), UBI_FM_POOL_MAGIC);
646 fmpl_wl = (struct ubi_fm_scan_pool *)(fm_raw + fm_pos);
647 fm_pos += sizeof(*fmpl_wl);
648 if (fm_pos >= fm_size)
650 if (be32_to_cpu(fmpl_wl->magic) != UBI_FM_POOL_MAGIC) {
651 ubi_err(ubi, "bad fastmap WL pool magic: 0x%x, expected: 0x%x",
652 be32_to_cpu(fmpl_wl->magic), UBI_FM_POOL_MAGIC);
656 pool_size = be16_to_cpu(fmpl->size);
657 wl_pool_size = be16_to_cpu(fmpl_wl->size);
658 fm->max_pool_size = be16_to_cpu(fmpl->max_size);
659 fm->max_wl_pool_size = be16_to_cpu(fmpl_wl->max_size);
661 if (pool_size > UBI_FM_MAX_POOL_SIZE || pool_size < 0) {
662 ubi_err(ubi, "bad pool size: %i", pool_size);
666 if (wl_pool_size > UBI_FM_MAX_POOL_SIZE || wl_pool_size < 0) {
667 ubi_err(ubi, "bad WL pool size: %i", wl_pool_size);
672 if (fm->max_pool_size > UBI_FM_MAX_POOL_SIZE ||
673 fm->max_pool_size < 0) {
674 ubi_err(ubi, "bad maximal pool size: %i", fm->max_pool_size);
678 if (fm->max_wl_pool_size > UBI_FM_MAX_POOL_SIZE ||
679 fm->max_wl_pool_size < 0) {
680 ubi_err(ubi, "bad maximal WL pool size: %i",
681 fm->max_wl_pool_size);
685 /* read EC values from free list */
686 for (i = 0; i < be32_to_cpu(fmhdr->free_peb_count); i++) {
687 fmec = (struct ubi_fm_ec *)(fm_raw + fm_pos);
688 fm_pos += sizeof(*fmec);
689 if (fm_pos >= fm_size)
692 add_aeb(ai, &ai->free, be32_to_cpu(fmec->pnum),
693 be32_to_cpu(fmec->ec), 0);
696 /* read EC values from used list */
697 for (i = 0; i < be32_to_cpu(fmhdr->used_peb_count); i++) {
698 fmec = (struct ubi_fm_ec *)(fm_raw + fm_pos);
699 fm_pos += sizeof(*fmec);
700 if (fm_pos >= fm_size)
703 add_aeb(ai, &used, be32_to_cpu(fmec->pnum),
704 be32_to_cpu(fmec->ec), 0);
707 /* read EC values from scrub list */
708 for (i = 0; i < be32_to_cpu(fmhdr->scrub_peb_count); i++) {
709 fmec = (struct ubi_fm_ec *)(fm_raw + fm_pos);
710 fm_pos += sizeof(*fmec);
711 if (fm_pos >= fm_size)
714 add_aeb(ai, &used, be32_to_cpu(fmec->pnum),
715 be32_to_cpu(fmec->ec), 1);
718 /* read EC values from erase list */
719 for (i = 0; i < be32_to_cpu(fmhdr->erase_peb_count); i++) {
720 fmec = (struct ubi_fm_ec *)(fm_raw + fm_pos);
721 fm_pos += sizeof(*fmec);
722 if (fm_pos >= fm_size)
725 add_aeb(ai, &ai->erase, be32_to_cpu(fmec->pnum),
726 be32_to_cpu(fmec->ec), 1);
729 ai->mean_ec = div_u64(ai->ec_sum, ai->ec_count);
730 ai->bad_peb_count = be32_to_cpu(fmhdr->bad_peb_count);
732 /* Iterate over all volumes and read their EBA table */
733 for (i = 0; i < be32_to_cpu(fmhdr->vol_count); i++) {
734 fmvhdr = (struct ubi_fm_volhdr *)(fm_raw + fm_pos);
735 fm_pos += sizeof(*fmvhdr);
736 if (fm_pos >= fm_size)
739 if (be32_to_cpu(fmvhdr->magic) != UBI_FM_VHDR_MAGIC) {
740 ubi_err(ubi, "bad fastmap vol header magic: 0x%x, expected: 0x%x",
741 be32_to_cpu(fmvhdr->magic), UBI_FM_VHDR_MAGIC);
745 av = add_vol(ai, be32_to_cpu(fmvhdr->vol_id),
746 be32_to_cpu(fmvhdr->used_ebs),
747 be32_to_cpu(fmvhdr->data_pad),
749 be32_to_cpu(fmvhdr->last_eb_bytes));
753 if (PTR_ERR(av) == -EINVAL) {
754 ubi_err(ubi, "volume (ID %i) already exists",
760 if (ai->highest_vol_id < be32_to_cpu(fmvhdr->vol_id))
761 ai->highest_vol_id = be32_to_cpu(fmvhdr->vol_id);
763 fm_eba = (struct ubi_fm_eba *)(fm_raw + fm_pos);
764 fm_pos += sizeof(*fm_eba);
765 fm_pos += (sizeof(__be32) * be32_to_cpu(fm_eba->reserved_pebs));
766 if (fm_pos >= fm_size)
769 if (be32_to_cpu(fm_eba->magic) != UBI_FM_EBA_MAGIC) {
770 ubi_err(ubi, "bad fastmap EBA header magic: 0x%x, expected: 0x%x",
771 be32_to_cpu(fm_eba->magic), UBI_FM_EBA_MAGIC);
775 for (j = 0; j < be32_to_cpu(fm_eba->reserved_pebs); j++) {
776 int pnum = be32_to_cpu(fm_eba->pnum[j]);
778 if ((int)be32_to_cpu(fm_eba->pnum[j]) < 0)
782 list_for_each_entry(tmp_aeb, &used, u.list) {
783 if (tmp_aeb->pnum == pnum) {
790 ubi_err(ubi, "PEB %i is in EBA but not in used list", pnum);
796 if (av->highest_lnum <= aeb->lnum)
797 av->highest_lnum = aeb->lnum;
799 assign_aeb_to_av(ai, aeb, av);
801 dbg_bld("inserting PEB:%i (LEB %i) to vol %i",
802 aeb->pnum, aeb->lnum, av->vol_id);
806 ret = scan_pool(ubi, ai, fmpl->pebs, pool_size, &max_sqnum, &free);
810 ret = scan_pool(ubi, ai, fmpl_wl->pebs, wl_pool_size, &max_sqnum, &free);
814 if (max_sqnum > ai->max_sqnum)
815 ai->max_sqnum = max_sqnum;
817 list_for_each_entry_safe(tmp_aeb, _tmp_aeb, &free, u.list)
818 list_move_tail(&tmp_aeb->u.list, &ai->free);
820 list_for_each_entry_safe(tmp_aeb, _tmp_aeb, &used, u.list)
821 list_move_tail(&tmp_aeb->u.list, &ai->erase);
823 ubi_assert(list_empty(&free));
826 * If fastmap is leaking PEBs (must not happen), raise a
827 * fat warning and fall back to scanning mode.
828 * We do this here because in ubi_wl_init() it's too late
829 * and we cannot fall back to scanning.
831 if (WARN_ON(count_fastmap_pebs(ai) != ubi->peb_count -
832 ai->bad_peb_count - fm->used_blocks))
838 ret = UBI_BAD_FASTMAP;
840 list_for_each_entry_safe(tmp_aeb, _tmp_aeb, &used, u.list) {
841 list_del(&tmp_aeb->u.list);
842 kmem_cache_free(ai->aeb_slab_cache, tmp_aeb);
844 list_for_each_entry_safe(tmp_aeb, _tmp_aeb, &free, u.list) {
845 list_del(&tmp_aeb->u.list);
846 kmem_cache_free(ai->aeb_slab_cache, tmp_aeb);
853 * ubi_scan_fastmap - scan the fastmap.
854 * @ubi: UBI device object
855 * @ai: UBI attach info to be filled
856 * @fm_anchor: The fastmap starts at this PEB
858 * Returns 0 on success, UBI_NO_FASTMAP if no fastmap was found,
859 * UBI_BAD_FASTMAP if one was found but is not usable.
860 * < 0 indicates an internal error.
862 int ubi_scan_fastmap(struct ubi_device *ubi, struct ubi_attach_info *ai,
865 struct ubi_fm_sb *fmsb, *fmsb2;
866 struct ubi_vid_hdr *vh;
867 struct ubi_ec_hdr *ech;
868 struct ubi_fastmap_layout *fm;
869 int i, used_blocks, pnum, ret = 0;
872 unsigned long long sqnum = 0;
874 down_write(&ubi->fm_protect);
875 memset(ubi->fm_buf, 0, ubi->fm_size);
877 fmsb = kmalloc(sizeof(*fmsb), GFP_KERNEL);
883 fm = kzalloc(sizeof(*fm), GFP_KERNEL);
890 ret = ubi_io_read(ubi, fmsb, fm_anchor, ubi->leb_start, sizeof(*fmsb));
891 if (ret && ret != UBI_IO_BITFLIPS)
893 else if (ret == UBI_IO_BITFLIPS)
894 fm->to_be_tortured[0] = 1;
896 if (be32_to_cpu(fmsb->magic) != UBI_FM_SB_MAGIC) {
897 ubi_err(ubi, "bad super block magic: 0x%x, expected: 0x%x",
898 be32_to_cpu(fmsb->magic), UBI_FM_SB_MAGIC);
899 ret = UBI_BAD_FASTMAP;
903 if (fmsb->version != UBI_FM_FMT_VERSION) {
904 ubi_err(ubi, "bad fastmap version: %i, expected: %i",
905 fmsb->version, UBI_FM_FMT_VERSION);
906 ret = UBI_BAD_FASTMAP;
910 used_blocks = be32_to_cpu(fmsb->used_blocks);
911 if (used_blocks > UBI_FM_MAX_BLOCKS || used_blocks < 1) {
912 ubi_err(ubi, "number of fastmap blocks is invalid: %i",
914 ret = UBI_BAD_FASTMAP;
918 fm_size = ubi->leb_size * used_blocks;
919 if (fm_size != ubi->fm_size) {
920 ubi_err(ubi, "bad fastmap size: %zi, expected: %zi",
921 fm_size, ubi->fm_size);
922 ret = UBI_BAD_FASTMAP;
926 ech = kzalloc(ubi->ec_hdr_alsize, GFP_KERNEL);
932 vh = ubi_zalloc_vid_hdr(ubi, GFP_KERNEL);
938 for (i = 0; i < used_blocks; i++) {
941 pnum = be32_to_cpu(fmsb->block_loc[i]);
943 if (ubi_io_is_bad(ubi, pnum)) {
944 ret = UBI_BAD_FASTMAP;
948 ret = ubi_io_read_ec_hdr(ubi, pnum, ech, 0);
949 if (ret && ret != UBI_IO_BITFLIPS) {
950 ubi_err(ubi, "unable to read fastmap block# %i EC (PEB: %i)",
953 ret = UBI_BAD_FASTMAP;
955 } else if (ret == UBI_IO_BITFLIPS)
956 fm->to_be_tortured[i] = 1;
958 image_seq = be32_to_cpu(ech->image_seq);
960 ubi->image_seq = image_seq;
963 * Older UBI implementations have image_seq set to zero, so
964 * we shouldn't fail if image_seq == 0.
966 if (image_seq && (image_seq != ubi->image_seq)) {
967 ubi_err(ubi, "wrong image seq:%d instead of %d",
968 be32_to_cpu(ech->image_seq), ubi->image_seq);
969 ret = UBI_BAD_FASTMAP;
973 ret = ubi_io_read_vid_hdr(ubi, pnum, vh, 0);
974 if (ret && ret != UBI_IO_BITFLIPS) {
975 ubi_err(ubi, "unable to read fastmap block# %i (PEB: %i)",
981 if (be32_to_cpu(vh->vol_id) != UBI_FM_SB_VOLUME_ID) {
982 ubi_err(ubi, "bad fastmap anchor vol_id: 0x%x, expected: 0x%x",
983 be32_to_cpu(vh->vol_id),
984 UBI_FM_SB_VOLUME_ID);
985 ret = UBI_BAD_FASTMAP;
989 if (be32_to_cpu(vh->vol_id) != UBI_FM_DATA_VOLUME_ID) {
990 ubi_err(ubi, "bad fastmap data vol_id: 0x%x, expected: 0x%x",
991 be32_to_cpu(vh->vol_id),
992 UBI_FM_DATA_VOLUME_ID);
993 ret = UBI_BAD_FASTMAP;
998 if (sqnum < be64_to_cpu(vh->sqnum))
999 sqnum = be64_to_cpu(vh->sqnum);
1001 ret = ubi_io_read(ubi, ubi->fm_buf + (ubi->leb_size * i), pnum,
1002 ubi->leb_start, ubi->leb_size);
1003 if (ret && ret != UBI_IO_BITFLIPS) {
1004 ubi_err(ubi, "unable to read fastmap block# %i (PEB: %i, "
1005 "err: %i)", i, pnum, ret);
1013 fmsb2 = (struct ubi_fm_sb *)(ubi->fm_buf);
1014 tmp_crc = be32_to_cpu(fmsb2->data_crc);
1015 fmsb2->data_crc = 0;
1016 crc = crc32(UBI_CRC32_INIT, ubi->fm_buf, fm_size);
1017 if (crc != tmp_crc) {
1018 ubi_err(ubi, "fastmap data CRC is invalid");
1019 ubi_err(ubi, "CRC should be: 0x%x, calc: 0x%x",
1021 ret = UBI_BAD_FASTMAP;
1025 fmsb2->sqnum = sqnum;
1027 fm->used_blocks = used_blocks;
1029 ret = ubi_attach_fastmap(ubi, ai, fm);
1032 ret = UBI_BAD_FASTMAP;
1036 for (i = 0; i < used_blocks; i++) {
1037 struct ubi_wl_entry *e;
1039 e = kmem_cache_alloc(ubi_wl_entry_slab, GFP_KERNEL);
1048 e->pnum = be32_to_cpu(fmsb2->block_loc[i]);
1049 e->ec = be32_to_cpu(fmsb2->block_ec[i]);
1054 ubi->fm_pool.max_size = ubi->fm->max_pool_size;
1055 ubi->fm_wl_pool.max_size = ubi->fm->max_wl_pool_size;
1056 ubi_msg(ubi, "attached by fastmap");
1057 ubi_msg(ubi, "fastmap pool size: %d", ubi->fm_pool.max_size);
1058 ubi_msg(ubi, "fastmap WL pool size: %d",
1059 ubi->fm_wl_pool.max_size);
1060 ubi->fm_disabled = 0;
1062 ubi_free_vid_hdr(ubi, vh);
1065 up_write(&ubi->fm_protect);
1066 if (ret == UBI_BAD_FASTMAP)
1067 ubi_err(ubi, "Attach by fastmap failed, doing a full scan!");
1071 ubi_free_vid_hdr(ubi, vh);
1080 * ubi_write_fastmap - writes a fastmap.
1081 * @ubi: UBI device object
1082 * @new_fm: the to be written fastmap
1084 * Returns 0 on success, < 0 indicates an internal error.
1086 static int ubi_write_fastmap(struct ubi_device *ubi,
1087 struct ubi_fastmap_layout *new_fm)
1091 struct ubi_fm_sb *fmsb;
1092 struct ubi_fm_hdr *fmh;
1093 struct ubi_fm_scan_pool *fmpl, *fmpl_wl;
1094 struct ubi_fm_ec *fec;
1095 struct ubi_fm_volhdr *fvh;
1096 struct ubi_fm_eba *feba;
1097 struct ubi_wl_entry *wl_e;
1098 struct ubi_volume *vol;
1099 struct ubi_vid_hdr *avhdr, *dvhdr;
1100 struct ubi_work *ubi_wrk;
1101 struct rb_node *tmp_rb;
1102 int ret, i, j, free_peb_count, used_peb_count, vol_count;
1103 int scrub_peb_count, erase_peb_count;
1104 int *seen_pebs = NULL;
1106 fm_raw = ubi->fm_buf;
1107 memset(ubi->fm_buf, 0, ubi->fm_size);
1109 avhdr = new_fm_vhdr(ubi, UBI_FM_SB_VOLUME_ID);
1115 dvhdr = new_fm_vhdr(ubi, UBI_FM_DATA_VOLUME_ID);
1121 seen_pebs = init_seen(ubi);
1122 if (IS_ERR(seen_pebs)) {
1123 ret = PTR_ERR(seen_pebs);
1127 spin_lock(&ubi->volumes_lock);
1128 spin_lock(&ubi->wl_lock);
1130 fmsb = (struct ubi_fm_sb *)fm_raw;
1131 fm_pos += sizeof(*fmsb);
1132 ubi_assert(fm_pos <= ubi->fm_size);
1134 fmh = (struct ubi_fm_hdr *)(fm_raw + fm_pos);
1135 fm_pos += sizeof(*fmh);
1136 ubi_assert(fm_pos <= ubi->fm_size);
1138 fmsb->magic = cpu_to_be32(UBI_FM_SB_MAGIC);
1139 fmsb->version = UBI_FM_FMT_VERSION;
1140 fmsb->used_blocks = cpu_to_be32(new_fm->used_blocks);
1141 /* the max sqnum will be filled in while *reading* the fastmap */
1144 fmh->magic = cpu_to_be32(UBI_FM_HDR_MAGIC);
1147 scrub_peb_count = 0;
1148 erase_peb_count = 0;
1151 fmpl = (struct ubi_fm_scan_pool *)(fm_raw + fm_pos);
1152 fm_pos += sizeof(*fmpl);
1153 fmpl->magic = cpu_to_be32(UBI_FM_POOL_MAGIC);
1154 fmpl->size = cpu_to_be16(ubi->fm_pool.size);
1155 fmpl->max_size = cpu_to_be16(ubi->fm_pool.max_size);
1157 for (i = 0; i < ubi->fm_pool.size; i++) {
1158 fmpl->pebs[i] = cpu_to_be32(ubi->fm_pool.pebs[i]);
1159 set_seen(ubi, ubi->fm_pool.pebs[i], seen_pebs);
1162 fmpl_wl = (struct ubi_fm_scan_pool *)(fm_raw + fm_pos);
1163 fm_pos += sizeof(*fmpl_wl);
1164 fmpl_wl->magic = cpu_to_be32(UBI_FM_POOL_MAGIC);
1165 fmpl_wl->size = cpu_to_be16(ubi->fm_wl_pool.size);
1166 fmpl_wl->max_size = cpu_to_be16(ubi->fm_wl_pool.max_size);
1168 for (i = 0; i < ubi->fm_wl_pool.size; i++) {
1169 fmpl_wl->pebs[i] = cpu_to_be32(ubi->fm_wl_pool.pebs[i]);
1170 set_seen(ubi, ubi->fm_wl_pool.pebs[i], seen_pebs);
1173 ubi_for_each_free_peb(ubi, wl_e, tmp_rb) {
1174 fec = (struct ubi_fm_ec *)(fm_raw + fm_pos);
1176 fec->pnum = cpu_to_be32(wl_e->pnum);
1177 set_seen(ubi, wl_e->pnum, seen_pebs);
1178 fec->ec = cpu_to_be32(wl_e->ec);
1181 fm_pos += sizeof(*fec);
1182 ubi_assert(fm_pos <= ubi->fm_size);
1184 fmh->free_peb_count = cpu_to_be32(free_peb_count);
1186 ubi_for_each_used_peb(ubi, wl_e, tmp_rb) {
1187 fec = (struct ubi_fm_ec *)(fm_raw + fm_pos);
1189 fec->pnum = cpu_to_be32(wl_e->pnum);
1190 set_seen(ubi, wl_e->pnum, seen_pebs);
1191 fec->ec = cpu_to_be32(wl_e->ec);
1194 fm_pos += sizeof(*fec);
1195 ubi_assert(fm_pos <= ubi->fm_size);
1198 ubi_for_each_protected_peb(ubi, i, wl_e) {
1199 fec = (struct ubi_fm_ec *)(fm_raw + fm_pos);
1201 fec->pnum = cpu_to_be32(wl_e->pnum);
1202 set_seen(ubi, wl_e->pnum, seen_pebs);
1203 fec->ec = cpu_to_be32(wl_e->ec);
1206 fm_pos += sizeof(*fec);
1207 ubi_assert(fm_pos <= ubi->fm_size);
1209 fmh->used_peb_count = cpu_to_be32(used_peb_count);
1211 ubi_for_each_scrub_peb(ubi, wl_e, tmp_rb) {
1212 fec = (struct ubi_fm_ec *)(fm_raw + fm_pos);
1214 fec->pnum = cpu_to_be32(wl_e->pnum);
1215 set_seen(ubi, wl_e->pnum, seen_pebs);
1216 fec->ec = cpu_to_be32(wl_e->ec);
1219 fm_pos += sizeof(*fec);
1220 ubi_assert(fm_pos <= ubi->fm_size);
1222 fmh->scrub_peb_count = cpu_to_be32(scrub_peb_count);
1225 list_for_each_entry(ubi_wrk, &ubi->works, list) {
1226 if (ubi_is_erase_work(ubi_wrk)) {
1230 fec = (struct ubi_fm_ec *)(fm_raw + fm_pos);
1232 fec->pnum = cpu_to_be32(wl_e->pnum);
1233 set_seen(ubi, wl_e->pnum, seen_pebs);
1234 fec->ec = cpu_to_be32(wl_e->ec);
1237 fm_pos += sizeof(*fec);
1238 ubi_assert(fm_pos <= ubi->fm_size);
1241 fmh->erase_peb_count = cpu_to_be32(erase_peb_count);
1243 for (i = 0; i < UBI_MAX_VOLUMES + UBI_INT_VOL_COUNT; i++) {
1244 vol = ubi->volumes[i];
1251 fvh = (struct ubi_fm_volhdr *)(fm_raw + fm_pos);
1252 fm_pos += sizeof(*fvh);
1253 ubi_assert(fm_pos <= ubi->fm_size);
1255 fvh->magic = cpu_to_be32(UBI_FM_VHDR_MAGIC);
1256 fvh->vol_id = cpu_to_be32(vol->vol_id);
1257 fvh->vol_type = vol->vol_type;
1258 fvh->used_ebs = cpu_to_be32(vol->used_ebs);
1259 fvh->data_pad = cpu_to_be32(vol->data_pad);
1260 fvh->last_eb_bytes = cpu_to_be32(vol->last_eb_bytes);
1262 ubi_assert(vol->vol_type == UBI_DYNAMIC_VOLUME ||
1263 vol->vol_type == UBI_STATIC_VOLUME);
1265 feba = (struct ubi_fm_eba *)(fm_raw + fm_pos);
1266 fm_pos += sizeof(*feba) + (sizeof(__be32) * vol->reserved_pebs);
1267 ubi_assert(fm_pos <= ubi->fm_size);
1269 for (j = 0; j < vol->reserved_pebs; j++)
1270 feba->pnum[j] = cpu_to_be32(vol->eba_tbl[j]);
1272 feba->reserved_pebs = cpu_to_be32(j);
1273 feba->magic = cpu_to_be32(UBI_FM_EBA_MAGIC);
1275 fmh->vol_count = cpu_to_be32(vol_count);
1276 fmh->bad_peb_count = cpu_to_be32(ubi->bad_peb_count);
1278 avhdr->sqnum = cpu_to_be64(ubi_next_sqnum(ubi));
1281 spin_unlock(&ubi->wl_lock);
1282 spin_unlock(&ubi->volumes_lock);
1284 dbg_bld("writing fastmap SB to PEB %i", new_fm->e[0]->pnum);
1285 ret = ubi_io_write_vid_hdr(ubi, new_fm->e[0]->pnum, avhdr);
1287 ubi_err(ubi, "unable to write vid_hdr to fastmap SB!");
1291 for (i = 0; i < new_fm->used_blocks; i++) {
1292 fmsb->block_loc[i] = cpu_to_be32(new_fm->e[i]->pnum);
1293 set_seen(ubi, new_fm->e[i]->pnum, seen_pebs);
1294 fmsb->block_ec[i] = cpu_to_be32(new_fm->e[i]->ec);
1298 fmsb->data_crc = cpu_to_be32(crc32(UBI_CRC32_INIT, fm_raw,
1301 for (i = 1; i < new_fm->used_blocks; i++) {
1302 dvhdr->sqnum = cpu_to_be64(ubi_next_sqnum(ubi));
1303 dvhdr->lnum = cpu_to_be32(i);
1304 dbg_bld("writing fastmap data to PEB %i sqnum %llu",
1305 new_fm->e[i]->pnum, be64_to_cpu(dvhdr->sqnum));
1306 ret = ubi_io_write_vid_hdr(ubi, new_fm->e[i]->pnum, dvhdr);
1308 ubi_err(ubi, "unable to write vid_hdr to PEB %i!",
1309 new_fm->e[i]->pnum);
1314 for (i = 0; i < new_fm->used_blocks; i++) {
1315 ret = ubi_io_write(ubi, fm_raw + (i * ubi->leb_size),
1316 new_fm->e[i]->pnum, ubi->leb_start, ubi->leb_size);
1318 ubi_err(ubi, "unable to write fastmap to PEB %i!",
1319 new_fm->e[i]->pnum);
1327 ret = self_check_seen(ubi, seen_pebs);
1328 dbg_bld("fastmap written!");
1331 ubi_free_vid_hdr(ubi, avhdr);
1332 ubi_free_vid_hdr(ubi, dvhdr);
1333 free_seen(seen_pebs);
1339 * erase_block - Manually erase a PEB.
1340 * @ubi: UBI device object
1341 * @pnum: PEB to be erased
1343 * Returns the new EC value on success, < 0 indicates an internal error.
1345 static int erase_block(struct ubi_device *ubi, int pnum)
1348 struct ubi_ec_hdr *ec_hdr;
1351 ec_hdr = kzalloc(ubi->ec_hdr_alsize, GFP_KERNEL);
1355 ret = ubi_io_read_ec_hdr(ubi, pnum, ec_hdr, 0);
1358 else if (ret && ret != UBI_IO_BITFLIPS) {
1363 ret = ubi_io_sync_erase(ubi, pnum, 0);
1367 ec = be64_to_cpu(ec_hdr->ec);
1369 if (ec > UBI_MAX_ERASECOUNTER) {
1374 ec_hdr->ec = cpu_to_be64(ec);
1375 ret = ubi_io_write_ec_hdr(ubi, pnum, ec_hdr);
1386 * invalidate_fastmap - destroys a fastmap.
1387 * @ubi: UBI device object
1389 * This function ensures that upon next UBI attach a full scan
1390 * is issued. We need this if UBI is about to write a new fastmap
1391 * but is unable to do so. In this case we have two options:
1392 * a) Make sure that the current fastmap will not be usued upon
1393 * attach time and contine or b) fall back to RO mode to have the
1394 * current fastmap in a valid state.
1395 * Returns 0 on success, < 0 indicates an internal error.
1397 static int invalidate_fastmap(struct ubi_device *ubi)
1400 struct ubi_fastmap_layout *fm;
1401 struct ubi_wl_entry *e;
1402 struct ubi_vid_hdr *vh = NULL;
1410 fm = kzalloc(sizeof(*fm), GFP_KERNEL);
1414 vh = new_fm_vhdr(ubi, UBI_FM_SB_VOLUME_ID);
1419 e = ubi_wl_get_fm_peb(ubi, 1);
1424 * Create fake fastmap such that UBI will fall back
1427 vh->sqnum = cpu_to_be64(ubi_next_sqnum(ubi));
1428 ret = ubi_io_write_vid_hdr(ubi, e->pnum, vh);
1430 ubi_wl_put_fm_peb(ubi, e, 0, 0);
1434 fm->used_blocks = 1;
1440 ubi_free_vid_hdr(ubi, vh);
1449 * return_fm_pebs - returns all PEBs used by a fastmap back to the
1451 * @ubi: UBI device object
1452 * @fm: fastmap layout object
1454 static void return_fm_pebs(struct ubi_device *ubi,
1455 struct ubi_fastmap_layout *fm)
1462 for (i = 0; i < fm->used_blocks; i++) {
1464 ubi_wl_put_fm_peb(ubi, fm->e[i], i,
1465 fm->to_be_tortured[i]);
1472 * ubi_update_fastmap - will be called by UBI if a volume changes or
1473 * a fastmap pool becomes full.
1474 * @ubi: UBI device object
1476 * Returns 0 on success, < 0 indicates an internal error.
1478 int ubi_update_fastmap(struct ubi_device *ubi)
1481 struct ubi_fastmap_layout *new_fm, *old_fm;
1482 struct ubi_wl_entry *tmp_e;
1484 down_write(&ubi->fm_protect);
1486 ubi_refill_pools(ubi);
1488 if (ubi->ro_mode || ubi->fm_disabled) {
1489 up_write(&ubi->fm_protect);
1493 ret = ubi_ensure_anchor_pebs(ubi);
1495 up_write(&ubi->fm_protect);
1499 new_fm = kzalloc(sizeof(*new_fm), GFP_KERNEL);
1501 up_write(&ubi->fm_protect);
1505 new_fm->used_blocks = ubi->fm_size / ubi->leb_size;
1509 if (new_fm->used_blocks > UBI_FM_MAX_BLOCKS) {
1510 ubi_err(ubi, "fastmap too large");
1515 for (i = 1; i < new_fm->used_blocks; i++) {
1516 spin_lock(&ubi->wl_lock);
1517 tmp_e = ubi_wl_get_fm_peb(ubi, 0);
1518 spin_unlock(&ubi->wl_lock);
1521 if (old_fm && old_fm->e[i]) {
1522 ret = erase_block(ubi, old_fm->e[i]->pnum);
1524 ubi_err(ubi, "could not erase old fastmap PEB");
1526 for (j = 1; j < i; j++) {
1527 ubi_wl_put_fm_peb(ubi, new_fm->e[j],
1529 new_fm->e[j] = NULL;
1533 new_fm->e[i] = old_fm->e[i];
1534 old_fm->e[i] = NULL;
1536 ubi_err(ubi, "could not get any free erase block");
1538 for (j = 1; j < i; j++) {
1539 ubi_wl_put_fm_peb(ubi, new_fm->e[j], j, 0);
1540 new_fm->e[j] = NULL;
1547 new_fm->e[i] = tmp_e;
1549 if (old_fm && old_fm->e[i]) {
1550 ubi_wl_put_fm_peb(ubi, old_fm->e[i], i,
1551 old_fm->to_be_tortured[i]);
1552 old_fm->e[i] = NULL;
1557 /* Old fastmap is larger than the new one */
1558 if (old_fm && new_fm->used_blocks < old_fm->used_blocks) {
1559 for (i = new_fm->used_blocks; i < old_fm->used_blocks; i++) {
1560 ubi_wl_put_fm_peb(ubi, old_fm->e[i], i,
1561 old_fm->to_be_tortured[i]);
1562 old_fm->e[i] = NULL;
1566 spin_lock(&ubi->wl_lock);
1567 tmp_e = ubi_wl_get_fm_peb(ubi, 1);
1568 spin_unlock(&ubi->wl_lock);
1571 /* no fresh anchor PEB was found, reuse the old one */
1573 ret = erase_block(ubi, old_fm->e[0]->pnum);
1575 ubi_err(ubi, "could not erase old anchor PEB");
1577 for (i = 1; i < new_fm->used_blocks; i++) {
1578 ubi_wl_put_fm_peb(ubi, new_fm->e[i],
1580 new_fm->e[i] = NULL;
1584 new_fm->e[0] = old_fm->e[0];
1585 new_fm->e[0]->ec = ret;
1586 old_fm->e[0] = NULL;
1588 /* we've got a new anchor PEB, return the old one */
1589 ubi_wl_put_fm_peb(ubi, old_fm->e[0], 0,
1590 old_fm->to_be_tortured[0]);
1591 new_fm->e[0] = tmp_e;
1592 old_fm->e[0] = NULL;
1596 ubi_err(ubi, "could not find any anchor PEB");
1598 for (i = 1; i < new_fm->used_blocks; i++) {
1599 ubi_wl_put_fm_peb(ubi, new_fm->e[i], i, 0);
1600 new_fm->e[i] = NULL;
1606 new_fm->e[0] = tmp_e;
1609 down_write(&ubi->work_sem);
1610 down_write(&ubi->fm_eba_sem);
1611 ret = ubi_write_fastmap(ubi, new_fm);
1612 up_write(&ubi->fm_eba_sem);
1613 up_write(&ubi->work_sem);
1619 up_write(&ubi->fm_protect);
1624 ubi_warn(ubi, "Unable to write new fastmap, err=%i", ret);
1626 ret = invalidate_fastmap(ubi);
1628 ubi_err(ubi, "Unable to invalidiate current fastmap!");
1631 return_fm_pebs(ubi, old_fm);
1632 return_fm_pebs(ubi, new_fm);