diff options
author | Kirill A. Shutemov <kirill@shutemov.name> | 2011-04-01 16:06:09 -0700 |
---|---|---|
committer | James Bottomley <James.Bottomley@suse.de> | 2011-05-01 10:20:10 -0500 |
commit | 63ce2499947683dcc026373e24a4cb5a9d086e7d (patch) | |
tree | abafb4f3a79e8c7a7a3af9901a966942f4bd181a /drivers/scsi/fcoe | |
parent | 38b34aca30ef1296bbc552505d80c69f274f0872 (diff) | |
download | op-kernel-dev-63ce2499947683dcc026373e24a4cb5a9d086e7d.zip op-kernel-dev-63ce2499947683dcc026373e24a4cb5a9d086e7d.tar.gz |
[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 9d38be2..229e4af 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) * the FCF that answers multicast solicitations, not the others that * are sending periodic multicast advertisements. */ - if (mtu_valid) { - list_del(&fcf->list); - list_add(&fcf->list, &fip->fcfs); - } + if (mtu_valid) + list_move(&fcf->list, &fip->fcfs); /* * If this is the first validated FCF, note the time and |