Skip to content
Snippets Groups Projects
Commit d91e5c02 authored by Vince Bridgers's avatar Vince Bridgers Committed by David S. Miller
Browse files

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: default avatarVince Bridgers <vbridgers2013@gmail.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 89830580
No related branches found
No related tags found
No related merge requests found
...@@ -1376,6 +1376,11 @@ static int altera_tse_probe(struct platform_device *pdev) ...@@ -1376,6 +1376,11 @@ static int altera_tse_probe(struct platform_device *pdev)
of_property_read_bool(pdev->dev.of_node, of_property_read_bool(pdev->dev.of_node,
"altr,has-hash-multicast-filter"); "altr,has-hash-multicast-filter");
/* Set hash filter to not set for now until the
* multicast filter receive issue is debugged
*/
priv->hash_filter = 0;
/* get supplemental address settings for this instance */ /* get supplemental address settings for this instance */
priv->added_unicast = priv->added_unicast =
of_property_read_bool(pdev->dev.of_node, of_property_read_bool(pdev->dev.of_node,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment