Skip to content

Commit

Permalink
UBIFS: list usage cleanup
Browse files Browse the repository at this point in the history
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: Eric Sesterhenn <[email protected]>
Signed-off-by: Artem Bityutskiy <[email protected]>
  • Loading branch information
SesterhennEric authored and Artem Bityutskiy committed Feb 17, 2009
1 parent 2bc275e commit ec32816
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
3 changes: 1 addition & 2 deletions fs/ubifs/log.c
Original file line number Diff line number Diff line change
Expand Up @@ -367,15 +367,14 @@ static void remove_buds(struct ubifs_info *c)
bud->jhead, c->leb_size - bud->start,
c->cmt_bud_bytes);
rb_erase(p1, &c->buds);
list_del(&bud->list);
/*
* If the commit does not finish, the recovery will need
* to replay the journal, in which case the old buds
* must be unchanged. Do not release them until post
* commit i.e. do not allow them to be garbage
* collected.
*/
list_add(&bud->list, &c->old_buds);
list_move(&bud->list, &c->old_buds);
}
}
spin_unlock(&c->buds_lock);
Expand Down
6 changes: 2 additions & 4 deletions fs/ubifs/shrinker.c
Original file line number Diff line number Diff line change
Expand Up @@ -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
* fairness.
*/
list_del(&c->infos_list);
list_add_tail(&c->infos_list, &ubifs_infos);
list_move_tail(&c->infos_list, &ubifs_infos);
mutex_unlock(&c->umount_mutex);
if (freed >= nr)
break;
Expand Down Expand Up @@ -263,8 +262,7 @@ static int kick_a_thread(void)
}

if (i == 1) {
list_del(&c->infos_list);
list_add_tail(&c->infos_list, &ubifs_infos);
list_move_tail(&c->infos_list, &ubifs_infos);
spin_unlock(&ubifs_infos_lock);

ubifs_request_bg_commit(c);
Expand Down

0 comments on commit ec32816

Please sign in to comment.