Todd Fujinaka changed bug 1009911
What Removed Added
Flags   needinfo?(matwey.kornilov@gmail.com)

Comment # 25 on bug 1009911 from
First, I think Dave Miller likes the Intel Ethernet patches to come from Jeff
Kirsher's tree, and that's why I suggested the other mailing list.

Second, instead of your patch, can you try using commit a67bc5ea20106ec "igb:
Workaround for igb i210 firmware issue" and also this additional patch:

commit a521563b36fb562d0feff7873bdf4fee0be30570
Author: Todd Fujinaka <todd.fujinaka@intel.com>
Date:   Mon Nov 28 07:53:18 2016 -0800

    igb: add i211 to i210 PHY workaround

    i210 and i211 share the same PHY but have different PCI IDs. Don't
    forget i211 for any i210 workarounds.

    Signed-off-by: Todd Fujinaka <todd.fujinaka@intel.com>

diff --git a/drivers/net/ethernet/intel/igb/e1000_phy.c
b/drivers/net/ethernet/intel/igb/e1000_phy.c
index 93ec2d0..6ebfb75 100644
--- a/drivers/net/ethernet/intel/igb/e1000_phy.c
+++ b/drivers/net/ethernet/intel/igb/e1000_phy.c
@@ -78,7 +78,7 @@ s32 igb_get_phy_id(struct e1000_hw *hw)
        u16 phy_id;

        /* ensure phy page selection to fix misconfigured i210 */
-       if (hw->mac.type == e1000_i210)
+       if ((hw->mac.type == e1000_i210) || (hw->mac.type == e1000_i211))
                phy->ops.write_reg(hw, I347AT4_PAGE_SELECT, 0);

        ret_val = phy->ops.read_reg(hw, PHY_ID1, &phy_id);


You are receiving this mail because: