Commit ec32816f authored by Eric Sesterhenn's avatar Eric Sesterhenn Committed by Artem Bityutskiy

UBIFS: list usage cleanup

Trivial cleanup, list_del(); list_add{,_tail}() is equivalent
to list_move{,_tail}(). Semantic patch for coccinelle can be
found at www.cccmz.de/~snakebyte/list_move_tail.spatch
Signed-off-by: default avatarEric Sesterhenn <snakebyte@gmx.de>
Signed-off-by: default avatarArtem Bityutskiy <Artem.Bityutskiy@nokia.com>
parent 2bc275e9
...@@ -367,7 +367,6 @@ static void remove_buds(struct ubifs_info *c) ...@@ -367,7 +367,6 @@ static void remove_buds(struct ubifs_info *c)
bud->jhead, c->leb_size - bud->start, bud->jhead, c->leb_size - bud->start,
c->cmt_bud_bytes); c->cmt_bud_bytes);
rb_erase(p1, &c->buds); rb_erase(p1, &c->buds);
list_del(&bud->list);
/* /*
* If the commit does not finish, the recovery will need * If the commit does not finish, the recovery will need
* to replay the journal, in which case the old buds * to replay the journal, in which case the old buds
...@@ -375,7 +374,7 @@ static void remove_buds(struct ubifs_info *c) ...@@ -375,7 +374,7 @@ static void remove_buds(struct ubifs_info *c)
* commit i.e. do not allow them to be garbage * commit i.e. do not allow them to be garbage
* collected. * collected.
*/ */
list_add(&bud->list, &c->old_buds); list_move(&bud->list, &c->old_buds);
} }
} }
spin_unlock(&c->buds_lock); spin_unlock(&c->buds_lock);
......
...@@ -206,8 +206,7 @@ static int shrink_tnc_trees(int nr, int age, int *contention) ...@@ -206,8 +206,7 @@ static int shrink_tnc_trees(int nr, int age, int *contention)
* Move this one to the end of the list to provide some * Move this one to the end of the list to provide some
* fairness. * fairness.
*/ */
list_del(&c->infos_list); list_move_tail(&c->infos_list, &ubifs_infos);
list_add_tail(&c->infos_list, &ubifs_infos);
mutex_unlock(&c->umount_mutex); mutex_unlock(&c->umount_mutex);
if (freed >= nr) if (freed >= nr)
break; break;
...@@ -263,8 +262,7 @@ static int kick_a_thread(void) ...@@ -263,8 +262,7 @@ static int kick_a_thread(void)
} }
if (i == 1) { if (i == 1) {
list_del(&c->infos_list); list_move_tail(&c->infos_list, &ubifs_infos);
list_add_tail(&c->infos_list, &ubifs_infos);
spin_unlock(&ubifs_infos_lock); spin_unlock(&ubifs_infos_lock);
ubifs_request_bg_commit(c); ubifs_request_bg_commit(c);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment