Skip to content

Commit f5f9d43

Browse files
Boris Brezillonrichardweinberger
authored andcommitted
UBI: fastmap: use ubi_find_volume() instead of open coding it
process_pool_aeb() re-implements the logic found in ubi_find_volume(). Call ubi_find_volume() to avoid this duplication. Signed-off-by: Boris Brezillon <boris.brezillon@free-electrons.com> Signed-off-by: Richard Weinberger <richard@nod.at>
1 parent 3be7988 commit f5f9d43

File tree

1 file changed

+3
-20
lines changed

1 file changed

+3
-20
lines changed

drivers/mtd/ubi/fastmap.c

Lines changed: 3 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -370,9 +370,7 @@ static int process_pool_aeb(struct ubi_device *ubi, struct ubi_attach_info *ai,
370370
struct ubi_vid_hdr *new_vh,
371371
struct ubi_ainf_peb *new_aeb)
372372
{
373-
struct ubi_ainf_volume *av, *tmp_av = NULL;
374-
struct rb_node **p = &ai->volumes.rb_node, *parent = NULL;
375-
int found = 0;
373+
struct ubi_ainf_volume *av;
376374

377375
if (be32_to_cpu(new_vh->vol_id) == UBI_FM_SB_VOLUME_ID ||
378376
be32_to_cpu(new_vh->vol_id) == UBI_FM_DATA_VOLUME_ID) {
@@ -382,23 +380,8 @@ static int process_pool_aeb(struct ubi_device *ubi, struct ubi_attach_info *ai,
382380
}
383381

384382
/* Find the volume this SEB belongs to */
385-
while (*p) {
386-
parent = *p;
387-
tmp_av = rb_entry(parent, struct ubi_ainf_volume, rb);
388-
389-
if (be32_to_cpu(new_vh->vol_id) > tmp_av->vol_id)
390-
p = &(*p)->rb_left;
391-
else if (be32_to_cpu(new_vh->vol_id) < tmp_av->vol_id)
392-
p = &(*p)->rb_right;
393-
else {
394-
found = 1;
395-
break;
396-
}
397-
}
398-
399-
if (found)
400-
av = tmp_av;
401-
else {
383+
av = ubi_find_av(ai, be32_to_cpu(new_vh->vol_id));
384+
if (!av) {
402385
ubi_err(ubi, "orphaned volume in fastmap pool!");
403386
kmem_cache_free(ai->aeb_slab_cache, new_aeb);
404387
return UBI_BAD_FASTMAP;

0 commit comments

Comments
 (0)