mirror of
https://github.com/torvalds/linux.git
synced 2024-12-18 09:02:17 +00:00
UBI: fix rb_tree node comparison in add_map
The comparisons used in add_vol() shouldn't be identical. Pretty sure the following is correct but it is completely untested. Signed-off-by: Mike Snitzer <snitzer@redhat.com> Acked-by: Richard Weinberger <richard@nod.at> Signed-off-by: Artem Bityutskiy <artem.bityutskiy@linux.intel.com>
This commit is contained in:
parent
0da846f42f
commit
604b592e6f
@ -125,9 +125,9 @@ static struct ubi_ainf_volume *add_vol(struct ubi_attach_info *ai, int vol_id,
|
||||
parent = *p;
|
||||
av = rb_entry(parent, struct ubi_ainf_volume, rb);
|
||||
|
||||
if (vol_id > av->vol_id)
|
||||
if (vol_id < av->vol_id)
|
||||
p = &(*p)->rb_left;
|
||||
else if (vol_id > av->vol_id)
|
||||
else
|
||||
p = &(*p)->rb_right;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user