1
0
Fork 0

target: use list_move_tail instead of list_del/list_add_tail

Using list_move_tail() instead of list_del() + list_add_tail().

spatch with a semantic match is used to found this problem.
(http://coccinelle.lip6.fr/)

Signed-off-by: Wei Yongjun <yongjun_wei@trendmicro.com.cn>
Signed-off-by: Nicholas Bellinger <nab@linux-iscsi.org>
hifive-unleashed-5.1
Wei Yongjun 2012-09-05 14:42:48 +08:00 committed by Nicholas Bellinger
parent 06cda529d2
commit bf11eefcb1
1 changed files with 1 additions and 2 deletions

View File

@ -660,8 +660,7 @@ static void session_reconnect_expired(struct sbp_session *sess)
spin_lock_bh(&sess->lock);
list_for_each_entry_safe(login, temp, &sess->login_list, link) {
login->sess = NULL;
list_del(&login->link);
list_add_tail(&login->link, &login_list);
list_move_tail(&login->link, &login_list);
}
spin_unlock_bh(&sess->lock);