aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/e1000
diff options
context:
space:
mode:
authorJesse Brandeburg <jesse.brandeburg@intel.com>2010-05-13 11:25:33 -0400
committerDavid S. Miller <davem@davemloft.net>2010-05-14 06:06:18 -0400
commit2a2ec45ddeedaddb9ff8cb98eab7d4f85f44df4a (patch)
tree66f498acfb60c7a1da8a5ff6c617e8f45b820b2a /drivers/net/e1000
parenta4b770972b8f819e408d7cc3ae9637e15bff62f6 (diff)
e1000: fix WARN_ON with mac-vlan
When adding more than 14 mac-vlan adapters on e1000 the driver would fire a WARN_ON when adding the 15th. The WARN_ON in this case is completely un-necessary, as the code below the WARN_ON is directly handling the value the WARN_ON triggered on. CC: Jiri Pirko <jpirko@redhat.com> Signed-off-by: Jesse Brandeburg <jesse.brandeburg@intel.com> Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/e1000')
-rw-r--r--drivers/net/e1000/e1000_main.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/net/e1000/e1000_main.c b/drivers/net/e1000/e1000_main.c
index f06c8975f886..5de738a6d0e6 100644
--- a/drivers/net/e1000/e1000_main.c
+++ b/drivers/net/e1000/e1000_main.c
@@ -2161,8 +2161,6 @@ static void e1000_set_rx_mode(struct net_device *netdev)
2161 e1000_rar_set(hw, ha->addr, i++); 2161 e1000_rar_set(hw, ha->addr, i++);
2162 } 2162 }
2163 2163
2164 WARN_ON(i == rar_entries);
2165
2166 netdev_for_each_mc_addr(ha, netdev) { 2164 netdev_for_each_mc_addr(ha, netdev) {
2167 if (i == rar_entries) { 2165 if (i == rar_entries) {
2168 /* load any remaining addresses into the hash table */ 2166 /* load any remaining addresses into the hash table */