Author: arybchik
Date: Sat Feb 21 06:27:16 2015
New Revision: 279096
URL: https://svnweb.freebsd.org/changeset/base/279096

Log:
  sfxge: keep fw and driver view of autoneg parameters consistent
  
  Previously the driver's view was the expected outcome of any
  reconfiguration even if that reconfiguration failed.
  
  Submitted by:   Ben Horgan
  Sponsored by:   Solarflare Communications, Inc.
  Approved by:    gnn (mentor)

Modified:
  head/sys/dev/sfxge/common/efx_phy.c

Modified: head/sys/dev/sfxge/common/efx_phy.c
==============================================================================
--- head/sys/dev/sfxge/common/efx_phy.c Sat Feb 21 06:26:10 2015        
(r279095)
+++ head/sys/dev/sfxge/common/efx_phy.c Sat Feb 21 06:27:16 2015        
(r279096)
@@ -427,6 +427,7 @@ efx_phy_adv_cap_set(
 {
        efx_port_t *epp = &(enp->en_port);
        efx_phy_ops_t *epop = epp->ep_epop;
+       uint32_t old_mask;
        int rc;
 
        EFSYS_ASSERT3U(enp->en_magic, ==, EFX_NIC_MAGIC);
@@ -440,6 +441,7 @@ efx_phy_adv_cap_set(
        if (epp->ep_adv_cap_mask == mask)
                goto done;
 
+       old_mask = epp->ep_adv_cap_mask;
        epp->ep_adv_cap_mask = mask;
 
        if ((rc = epop->epo_reconfigure(enp)) != 0)
@@ -450,6 +452,17 @@ done:
 
 fail2:
        EFSYS_PROBE(fail2);
+
+       epp->ep_adv_cap_mask = old_mask;
+       /* Reconfigure for robustness */
+       if (epop->epo_reconfigure(enp) != 0) {
+               /*
+                * We may have an inconsistent view of our advertised speed
+                * capabilities.
+                */
+               EFSYS_ASSERT(0);
+       }
+
 fail1:
        EFSYS_PROBE1(fail1, int, rc);
 
_______________________________________________
svn-src-head@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to