[PATCH 04/13] dm: use list_move() instead of list_del()/list_add() combination

From: Kirill A. Shutemov
Date: Tue Mar 15 2011 - 18:53:42 EST


Signed-off-by: Kirill A. Shutemov <kirill@xxxxxxxxxxxxx>
Cc: Neil Brown <neilb@xxxxxxx>
Cc: dm-devel@xxxxxxxxxx
Cc: linux-raid@xxxxxxxxxxxxxxx
---
drivers/md/dm-log-userspace-base.c | 3 +--
1 files changed, 1 insertions(+), 2 deletions(-)

diff --git a/drivers/md/dm-log-userspace-base.c b/drivers/md/dm-log-userspace-base.c
index aa2e0c3..1021c89 100644
--- a/drivers/md/dm-log-userspace-base.c
+++ b/drivers/md/dm-log-userspace-base.c
@@ -394,8 +394,7 @@ static int flush_by_group(struct log_c *lc, struct list_head *flush_list)
group[count] = fe->region;
count++;

- list_del(&fe->list);
- list_add(&fe->list, &tmp_list);
+ list_move(&fe->list, &tmp_list);

type = fe->type;
if (count >= MAX_FLUSH_GROUP_COUNT)
--
1.7.4.1

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/