[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <1396969110-3114-2-git-send-email-yegorslists@googlemail.com>
Date: Tue, 8 Apr 2014 16:58:30 +0200
From: yegorslists@...glemail.com
To: netdev@...r.kernel.org
Cc: mugunthanvnm@...com, Yegor Yefremov <yegorslists@...glemail.com>
Subject: [PATCH] net: cpsw: fix dual_emac VLAN issue
From: Yegor Yefremov <yegorslists@...glemail.com>
CPSW shows following behavior: some stations in LAN don't
answer CPSW's ARP request. Kernel 3.2 could talk to all stations in
the same LAN.
Use the same cpsw_ale_add_vlan procedure as in kernel 3.2.
Signed-off-by: Yegor Yefremov <yegorslists@...glemail.com>
---
drivers/net/ethernet/ti/cpsw.c | 4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)
diff --git a/drivers/net/ethernet/ti/cpsw.c b/drivers/net/ethernet/ti/cpsw.c
index 5d5fec6..aa06370 100644
--- a/drivers/net/ethernet/ti/cpsw.c
+++ b/drivers/net/ethernet/ti/cpsw.c
@@ -1040,11 +1040,13 @@ static inline void cpsw_add_dual_emac_def_ale_entries(
else
slave_write(slave, slave->port_vlan, CPSW2_PORT_VLAN);
cpsw_ale_add_vlan(priv->ale, slave->port_vlan, port_mask,
- port_mask, port_mask, 0);
+ 0, port_mask, port_mask);
cpsw_ale_add_mcast(priv->ale, priv->ndev->broadcast,
port_mask, ALE_VLAN, slave->port_vlan, 0);
cpsw_ale_add_ucast(priv->ale, priv->mac_addr,
priv->host_port, ALE_VLAN, slave->port_vlan);
+ cpsw_ale_add_vlan(priv->ale, 0, ALE_ALL_PORTS << priv->host_port,
+ ALE_ALL_PORTS << priv->host_port, priv->host_port, 0);
}
static void soft_reset_slave(struct cpsw_slave *slave)
--
1.7.7
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists