diff options
author | Patrick McHardy <kaber@trash.net> | 2008-07-16 23:15:45 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-07-16 23:15:45 -0400 |
commit | 746b9f0228a1c607b3db67c80da1c2a963321926 (patch) | |
tree | ea5e89d69279918691885c7c2abbc8a0894f4c9c /drivers/net/ixgb | |
parent | 70efce27fc3d54271519244dc5e47da4ed711dd4 (diff) |
netdrv intel: disable VLAN filtering in promiscous mode
As discussed in this thread:
http://www.mail-archive.com/netdev@vger.kernel.org/msg53976.html
promiscous mode means to disable *all* filters. Currently only unicast
and multicast filtering is disabled. This patch changes all Intel
drivers to also disable VLAN filtering.
Signed-off-by: Patrick McHardy <kaber@trash.net>
Acked-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
Acked-by: Peter P Waskiewicz Jr <peter.p.waskiewicz.jr@intel.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ixgb')
-rw-r--r-- | drivers/net/ixgb/ixgb_main.c | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/drivers/net/ixgb/ixgb_main.c b/drivers/net/ixgb/ixgb_main.c index e83feaf830bd..ec95cd4ea588 100644 --- a/drivers/net/ixgb/ixgb_main.c +++ b/drivers/net/ixgb/ixgb_main.c | |||
@@ -1053,11 +1053,16 @@ ixgb_set_multi(struct net_device *netdev) | |||
1053 | 1053 | ||
1054 | if (netdev->flags & IFF_PROMISC) { | 1054 | if (netdev->flags & IFF_PROMISC) { |
1055 | rctl |= (IXGB_RCTL_UPE | IXGB_RCTL_MPE); | 1055 | rctl |= (IXGB_RCTL_UPE | IXGB_RCTL_MPE); |
1056 | } else if (netdev->flags & IFF_ALLMULTI) { | 1056 | rctl &= ~IXGB_RCTL_VFE; |
1057 | rctl |= IXGB_RCTL_MPE; | ||
1058 | rctl &= ~IXGB_RCTL_UPE; | ||
1059 | } else { | 1057 | } else { |
1060 | rctl &= ~(IXGB_RCTL_UPE | IXGB_RCTL_MPE); | 1058 | if (netdev->flags & IFF_ALLMULTI) { |
1059 | rctl |= IXGB_RCTL_MPE; | ||
1060 | rctl &= ~IXGB_RCTL_UPE; | ||
1061 | } else { | ||
1062 | rctl &= ~(IXGB_RCTL_UPE | IXGB_RCTL_MPE); | ||
1063 | } | ||
1064 | if (adapter->vlgrp) | ||
1065 | rctl |= IXGB_RCTL_VFE; | ||
1061 | } | 1066 | } |
1062 | 1067 | ||
1063 | if (netdev->mc_count > IXGB_MAX_NUM_MULTICAST_ADDRESSES) { | 1068 | if (netdev->mc_count > IXGB_MAX_NUM_MULTICAST_ADDRESSES) { |
@@ -2104,7 +2109,8 @@ ixgb_vlan_rx_register(struct net_device *netdev, struct vlan_group *grp) | |||
2104 | /* enable VLAN receive filtering */ | 2109 | /* enable VLAN receive filtering */ |
2105 | 2110 | ||
2106 | rctl = IXGB_READ_REG(&adapter->hw, RCTL); | 2111 | rctl = IXGB_READ_REG(&adapter->hw, RCTL); |
2107 | rctl |= IXGB_RCTL_VFE; | 2112 | if (!(netdev->flags & IFF_PROMISC)) |
2113 | rctl |= IXGB_RCTL_VFE; | ||
2108 | rctl &= ~IXGB_RCTL_CFIEN; | 2114 | rctl &= ~IXGB_RCTL_CFIEN; |
2109 | IXGB_WRITE_REG(&adapter->hw, RCTL, rctl); | 2115 | IXGB_WRITE_REG(&adapter->hw, RCTL, rctl); |
2110 | } else { | 2116 | } else { |