diff options
author | Eric Sesterhenn <snakebyte@gmx.de> | 2009-02-13 09:13:11 +0100 |
---|---|---|
committer | Artem Bityutskiy <Artem.Bityutskiy@nokia.com> | 2009-02-17 12:45:22 +0200 |
commit | ec32816f94a0baf90f5e73033dcdbc8679c7f91d (patch) | |
tree | c8b1c9b3d4f782e131c621ae27a7cf74de041995 /fs/ubifs/log.c | |
parent | 2bc275e9b04f23708c495a8bfe92a5f4b65345c8 (diff) | |
download | op-kernel-dev-ec32816f94a0baf90f5e73033dcdbc8679c7f91d.zip op-kernel-dev-ec32816f94a0baf90f5e73033dcdbc8679c7f91d.tar.gz |
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: Eric Sesterhenn <snakebyte@gmx.de>
Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
Diffstat (limited to 'fs/ubifs/log.c')
-rw-r--r-- | fs/ubifs/log.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/ubifs/log.c b/fs/ubifs/log.c index 3e0aa73..1004261 100644 --- a/fs/ubifs/log.c +++ b/fs/ubifs/log.c @@ -367,7 +367,6 @@ 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 @@ -375,7 +374,7 @@ static void remove_buds(struct ubifs_info *c) * 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); |