Lines Matching refs:tmp_aeb
206 struct ubi_ainf_peb *tmp_aeb; in assign_aeb_to_av() local
212 tmp_aeb = rb_entry(parent, struct ubi_ainf_peb, u.rb); in assign_aeb_to_av()
213 if (aeb->lnum != tmp_aeb->lnum) { in assign_aeb_to_av()
214 if (aeb->lnum < tmp_aeb->lnum) in assign_aeb_to_av()
553 struct ubi_ainf_peb *aeb, *tmp_aeb, *_tmp_aeb; in ubi_attach_fastmap() local
740 list_for_each_entry(tmp_aeb, &used, u.list) { in ubi_attach_fastmap()
741 if (tmp_aeb->pnum == pnum) { in ubi_attach_fastmap()
742 aeb = tmp_aeb; in ubi_attach_fastmap()
775 list_for_each_entry_safe(tmp_aeb, _tmp_aeb, &free, u.list) in ubi_attach_fastmap()
776 list_move_tail(&tmp_aeb->u.list, &ai->free); in ubi_attach_fastmap()
778 list_for_each_entry_safe(tmp_aeb, _tmp_aeb, &used, u.list) in ubi_attach_fastmap()
779 list_move_tail(&tmp_aeb->u.list, &ai->erase); in ubi_attach_fastmap()
798 list_for_each_entry_safe(tmp_aeb, _tmp_aeb, &used, u.list) { in ubi_attach_fastmap()
799 list_del(&tmp_aeb->u.list); in ubi_attach_fastmap()
800 ubi_free_aeb(ai, tmp_aeb); in ubi_attach_fastmap()
802 list_for_each_entry_safe(tmp_aeb, _tmp_aeb, &free, u.list) { in ubi_attach_fastmap()
803 list_del(&tmp_aeb->u.list); in ubi_attach_fastmap()
804 ubi_free_aeb(ai, tmp_aeb); in ubi_attach_fastmap()