[PATCH] async: use list_move_tail

From: Stefan Richter
Date: Mon Feb 02 2009 - 07:24:49 EST


Signed-off-by: Stefan Richter <stefanr@xxxxxxxxxxxxxxxxx>
---
kernel/async.c | 3 +--
1 files changed, 1 insertions(+), 2 deletions(-)

diff --git a/kernel/async.c b/kernel/async.c
index dd14fc5..c3baaa8 100644
--- a/kernel/async.c
+++ b/kernel/async.c
@@ -133,8 +133,7 @@ static void run_one_entry(void)
entry = list_first_entry(&async_pending, struct async_entry, list);

/* 2) move it to the running queue */
- list_del(&entry->list);
- list_add_tail(&entry->list, entry->running);
+ list_move_tail(&entry->list, entry->running);
spin_unlock_irqrestore(&async_lock, flags);

/* 3) run it (and print duration)*/
--
1.6.0.6


--
Stefan Richter
-=====-==--= --=- ---=-
http://arcgraph.de/sr/

--
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/