diff options
author | Boris Brezillon <boris.brezillon@free-electrons.com> | 2016-09-16 10:59:09 -0400 |
---|---|---|
committer | Richard Weinberger <richard@nod.at> | 2016-10-02 16:48:14 -0400 |
commit | f5f9d43f0a61e636008e2325c1c6178bd5b0da27 (patch) | |
tree | 32b3d107c46cd95de3a743dab0e709cb745c6e01 | |
parent | 3be7988674ab33565700a37b210f502563d932e6 (diff) |
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>
-rw-r--r-- | drivers/mtd/ubi/fastmap.c | 23 |
1 files changed, 3 insertions, 20 deletions
diff --git a/drivers/mtd/ubi/fastmap.c b/drivers/mtd/ubi/fastmap.c index 48eb55f344eb..a26dcc9d7703 100644 --- a/drivers/mtd/ubi/fastmap.c +++ b/drivers/mtd/ubi/fastmap.c | |||
@@ -370,9 +370,7 @@ static int process_pool_aeb(struct ubi_device *ubi, struct ubi_attach_info *ai, | |||
370 | struct ubi_vid_hdr *new_vh, | 370 | struct ubi_vid_hdr *new_vh, |
371 | struct ubi_ainf_peb *new_aeb) | 371 | struct ubi_ainf_peb *new_aeb) |
372 | { | 372 | { |
373 | struct ubi_ainf_volume *av, *tmp_av = NULL; | 373 | struct ubi_ainf_volume *av; |
374 | struct rb_node **p = &ai->volumes.rb_node, *parent = NULL; | ||
375 | int found = 0; | ||
376 | 374 | ||
377 | if (be32_to_cpu(new_vh->vol_id) == UBI_FM_SB_VOLUME_ID || | 375 | 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) { | 376 | 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, | |||
382 | } | 380 | } |
383 | 381 | ||
384 | /* Find the volume this SEB belongs to */ | 382 | /* Find the volume this SEB belongs to */ |
385 | while (*p) { | 383 | av = ubi_find_av(ai, be32_to_cpu(new_vh->vol_id)); |
386 | parent = *p; | 384 | if (!av) { |
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 { | ||
402 | ubi_err(ubi, "orphaned volume in fastmap pool!"); | 385 | ubi_err(ubi, "orphaned volume in fastmap pool!"); |
403 | kmem_cache_free(ai->aeb_slab_cache, new_aeb); | 386 | kmem_cache_free(ai->aeb_slab_cache, new_aeb); |
404 | return UBI_BAD_FASTMAP; | 387 | return UBI_BAD_FASTMAP; |