aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVince Bridgers <vbridgers2013@gmail.com>2014-05-14 15:38:37 -0400
committerDavid S. Miller <davem@davemloft.net>2014-05-15 16:46:46 -0400
commitd91e5c02555ae838e9d783b9e83e125fd10dca73 (patch)
tree33fdc5086ef4e5bb43353dd8b38f52bfd7a0df30
parent898305806ad56ae11dc2c80931062e6a2c7bba48 (diff)
Altera TSE: Disable Multicast filtering to workaround problem
This patch disables multicast hash filtering if present in the hardware and uses promiscuous mode instead until the problem with multicast filtering has been debugged, integrated and tested. Signed-off-by: Vince Bridgers <vbridgers2013@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r--drivers/net/ethernet/altera/altera_tse_main.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/net/ethernet/altera/altera_tse_main.c b/drivers/net/ethernet/altera/altera_tse_main.c
index ecc3b4e4588b..7330681574d2 100644
--- a/drivers/net/ethernet/altera/altera_tse_main.c
+++ b/drivers/net/ethernet/altera/altera_tse_main.c
@@ -1376,6 +1376,11 @@ static int altera_tse_probe(struct platform_device *pdev)
1376 of_property_read_bool(pdev->dev.of_node, 1376 of_property_read_bool(pdev->dev.of_node,
1377 "altr,has-hash-multicast-filter"); 1377 "altr,has-hash-multicast-filter");
1378 1378
1379 /* Set hash filter to not set for now until the
1380 * multicast filter receive issue is debugged
1381 */
1382 priv->hash_filter = 0;
1383
1379 /* get supplemental address settings for this instance */ 1384 /* get supplemental address settings for this instance */
1380 priv->added_unicast = 1385 priv->added_unicast =
1381 of_property_read_bool(pdev->dev.of_node, 1386 of_property_read_bool(pdev->dev.of_node,