mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 01:31:44 +00:00
UBI: use list_move_tail instead of list_del/list_add_tail
Using list_move_tail() instead of list_del() + list_add_tail(). dpatch engine is used to auto generate this patch. (https://github.com/weiyj/dpatch) Signed-off-by: Wei Yongjun <yongjun_wei@trendmicro.com.cn> Acked-by: Richard Weinberger <richard@nod.at> Signed-off-by: Artem Bityutskiy <artem.bityutskiy@linux.intel.com>
This commit is contained in:
parent
6f0c0580b7
commit
6a059abdba
@ -814,10 +814,8 @@ static int ubi_attach_fastmap(struct ubi_device *ubi,
|
||||
if (max_sqnum > ai->max_sqnum)
|
||||
ai->max_sqnum = max_sqnum;
|
||||
|
||||
list_for_each_entry_safe(tmp_aeb, _tmp_aeb, &free, u.list) {
|
||||
list_del(&tmp_aeb->u.list);
|
||||
list_add_tail(&tmp_aeb->u.list, &ai->free);
|
||||
}
|
||||
list_for_each_entry_safe(tmp_aeb, _tmp_aeb, &free, u.list)
|
||||
list_move_tail(&tmp_aeb->u.list, &ai->free);
|
||||
|
||||
/*
|
||||
* If fastmap is leaking PEBs (must not happen), raise a
|
||||
|
Loading…
Reference in New Issue
Block a user