diff options
author | Jiri Pirko <jpirko@redhat.com> | 2011-08-16 02:29:00 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-08-17 23:21:27 -0400 |
commit | 01789349ee52e4a3faf376f1485303d9723c4f1f (patch) | |
tree | cea58b51337ffda221f67d47dd234e52f76f65cf /drivers/net/ethernet/intel/igb/igb_main.c | |
parent | d03462b999307ec5c186851ec9c5751bd5a675f7 (diff) |
net: introduce IFF_UNICAST_FLT private flag
Use IFF_UNICAST_FTL to find out if driver handles unicast address
filtering. In case it does not, promisc mode is entered.
Patch also fixes following drivers:
stmmac, niu: support uc filtering and yet it propagated
ndo_set_multicast_list
bna, benet, pxa168_eth, ks8851, ks8851_mll, ksz884x : has set
ndo_set_rx_mode but do not support uc filtering
Signed-off-by: Jiri Pirko <jpirko@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ethernet/intel/igb/igb_main.c')
-rw-r--r-- | drivers/net/ethernet/intel/igb/igb_main.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/net/ethernet/intel/igb/igb_main.c b/drivers/net/ethernet/intel/igb/igb_main.c index 40d4c405fd7e..592b5c1827bc 100644 --- a/drivers/net/ethernet/intel/igb/igb_main.c +++ b/drivers/net/ethernet/intel/igb/igb_main.c | |||
@@ -39,6 +39,7 @@ | |||
39 | #include <linux/net_tstamp.h> | 39 | #include <linux/net_tstamp.h> |
40 | #include <linux/mii.h> | 40 | #include <linux/mii.h> |
41 | #include <linux/ethtool.h> | 41 | #include <linux/ethtool.h> |
42 | #include <linux/if.h> | ||
42 | #include <linux/if_vlan.h> | 43 | #include <linux/if_vlan.h> |
43 | #include <linux/pci.h> | 44 | #include <linux/pci.h> |
44 | #include <linux/pci-aspm.h> | 45 | #include <linux/pci-aspm.h> |
@@ -1973,6 +1974,8 @@ static int __devinit igb_probe(struct pci_dev *pdev, | |||
1973 | netdev->features |= NETIF_F_SCTP_CSUM; | 1974 | netdev->features |= NETIF_F_SCTP_CSUM; |
1974 | } | 1975 | } |
1975 | 1976 | ||
1977 | netdev->priv_flags |= IFF_UNICAST_FLT; | ||
1978 | |||
1976 | adapter->en_mng_pt = igb_enable_mng_pass_thru(hw); | 1979 | adapter->en_mng_pt = igb_enable_mng_pass_thru(hw); |
1977 | 1980 | ||
1978 | /* before reading the NVM, reset the controller to put the device in a | 1981 | /* before reading the NVM, reset the controller to put the device in a |