diff options
author | Kirill A. Shutemov <kirill@shutemov.name> | 2011-04-01 19:06:09 -0400 |
---|---|---|
committer | James Bottomley <James.Bottomley@suse.de> | 2011-05-01 11:20:10 -0400 |
commit | 63ce2499947683dcc026373e24a4cb5a9d086e7d (patch) | |
tree | abafb4f3a79e8c7a7a3af9901a966942f4bd181a /drivers/scsi/fcoe | |
parent | 38b34aca30ef1296bbc552505d80c69f274f0872 (diff) |
[SCSI] esp, scsi_tgt_lib, fcoe: use list_move() instead of list_del()/list_add() combination
Signed-off-by: Kirill A. Shutemov <kirill@shutemov.name>
Signed-off-by: Robert Love <robert.w.love@intel.com>
Signed-off-by: James Bottomley <James.Bottomley@suse.de>
Diffstat (limited to 'drivers/scsi/fcoe')
-rw-r--r-- | drivers/scsi/fcoe/fcoe_ctlr.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/drivers/scsi/fcoe/fcoe_ctlr.c b/drivers/scsi/fcoe/fcoe_ctlr.c index 9d38be2a41f9..229e4af5508a 100644 --- a/drivers/scsi/fcoe/fcoe_ctlr.c +++ b/drivers/scsi/fcoe/fcoe_ctlr.c | |||
@@ -978,10 +978,8 @@ static void fcoe_ctlr_recv_adv(struct fcoe_ctlr *fip, struct sk_buff *skb) | |||
978 | * the FCF that answers multicast solicitations, not the others that | 978 | * the FCF that answers multicast solicitations, not the others that |
979 | * are sending periodic multicast advertisements. | 979 | * are sending periodic multicast advertisements. |
980 | */ | 980 | */ |
981 | if (mtu_valid) { | 981 | if (mtu_valid) |
982 | list_del(&fcf->list); | 982 | list_move(&fcf->list, &fip->fcfs); |
983 | list_add(&fcf->list, &fip->fcfs); | ||
984 | } | ||
985 | 983 | ||
986 | /* | 984 | /* |
987 | * If this is the first validated FCF, note the time and | 985 | * If this is the first validated FCF, note the time and |