aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/ixgb/ixgb_main.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/net/ixgb/ixgb_main.c')
-rw-r--r--drivers/net/ixgb/ixgb_main.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/net/ixgb/ixgb_main.c b/drivers/net/ixgb/ixgb_main.c
index c56ea69762cd..6a7b2ccef72c 100644
--- a/drivers/net/ixgb/ixgb_main.c
+++ b/drivers/net/ixgb/ixgb_main.c
@@ -1077,7 +1077,7 @@ ixgb_set_multi(struct net_device *netdev)
1077 rctl |= IXGB_RCTL_VFE; 1077 rctl |= IXGB_RCTL_VFE;
1078 } 1078 }
1079 1079
1080 if (netdev->mc_count > IXGB_MAX_NUM_MULTICAST_ADDRESSES) { 1080 if (netdev_mc_count(netdev) > IXGB_MAX_NUM_MULTICAST_ADDRESSES) {
1081 rctl |= IXGB_RCTL_MPE; 1081 rctl |= IXGB_RCTL_MPE;
1082 IXGB_WRITE_REG(hw, RCTL, rctl); 1082 IXGB_WRITE_REG(hw, RCTL, rctl);
1083 } else { 1083 } else {
@@ -1092,7 +1092,7 @@ ixgb_set_multi(struct net_device *netdev)
1092 memcpy(&mta[i * IXGB_ETH_LENGTH_OF_ADDRESS], 1092 memcpy(&mta[i * IXGB_ETH_LENGTH_OF_ADDRESS],
1093 mc_ptr->dmi_addr, IXGB_ETH_LENGTH_OF_ADDRESS); 1093 mc_ptr->dmi_addr, IXGB_ETH_LENGTH_OF_ADDRESS);
1094 1094
1095 ixgb_mc_addr_list_update(hw, mta, netdev->mc_count, 0); 1095 ixgb_mc_addr_list_update(hw, mta, netdev_mc_count(netdev), 0);
1096 } 1096 }
1097} 1097}
1098 1098
@@ -1616,7 +1616,7 @@ ixgb_update_stats(struct ixgb_adapter *adapter)
1616 return; 1616 return;
1617 1617
1618 if ((netdev->flags & IFF_PROMISC) || (netdev->flags & IFF_ALLMULTI) || 1618 if ((netdev->flags & IFF_PROMISC) || (netdev->flags & IFF_ALLMULTI) ||
1619 (netdev->mc_count > IXGB_MAX_NUM_MULTICAST_ADDRESSES)) { 1619 (netdev_mc_count(netdev) > IXGB_MAX_NUM_MULTICAST_ADDRESSES)) {
1620 u64 multi = IXGB_READ_REG(&adapter->hw, MPRCL); 1620 u64 multi = IXGB_READ_REG(&adapter->hw, MPRCL);
1621 u32 bcast_l = IXGB_READ_REG(&adapter->hw, BPRCL); 1621 u32 bcast_l = IXGB_READ_REG(&adapter->hw, BPRCL);
1622 u32 bcast_h = IXGB_READ_REG(&adapter->hw, BPRCH); 1622 u32 bcast_h = IXGB_READ_REG(&adapter->hw, BPRCH);