]> git.karo-electronics.de Git - mv-sheeva.git/commitdiff
[SCSI] libfcoe: reorder FCF list to put latest advertiser first
authorJoe Eykholt <jeykholt@cisco.com>
Wed, 1 Dec 2010 00:20:07 +0000 (16:20 -0800)
committerJames Bottomley <James.Bottomley@suse.de>
Tue, 21 Dec 2010 18:24:33 +0000 (12:24 -0600)
When there are several FCFs to choose from, the one most likely
to accept a FLOGI on certian switches is the one that last
answered a multicast solicit.

So, when receiving an advertisement, move the FCF to the front
of the list so that it gets chosen first among those with the
same priority.

Without this, more FLOGIs need to be sent in a test with
multiple FCFs and a switch in NPV mode, but it still
eventually finds one that accepts the FLOGI.

Signed-off-by: Joe Eykholt <jeykholt@cisco.com>
Signed-off-by: Robert Love <robert.w.love@intel.com>
Signed-off-by: James Bottomley <James.Bottomley@suse.de>
drivers/scsi/fcoe/libfcoe.c

index dcccb0bf3170a33fbb165e9d1d5d30baf6ee59bd..1a0bb230dd0395cae60d315d196dac205722034b 100644 (file)
@@ -999,6 +999,17 @@ static void fcoe_ctlr_recv_adv(struct fcoe_ctlr *fip, struct sk_buff *skb)
        if (first && time_after(jiffies, fip->sol_time + sol_tov))
                fcoe_ctlr_solicit(fip, NULL);
 
+       /*
+        * Put this FCF at the head of the list for priority among equals.
+        * This helps in the case of an NPV switch which insists we use
+        * 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 this is the first validated FCF, note the time and
         * set a timer to trigger selection.