Commit 82903e4b authored by Ajit Khaparde's avatar Ajit Khaparde Committed by David S. Miller

be2net: fix to limit max vlans supported in certain skews

In certain skews the ASIC can support only 16 vlans per interface.
Once the limit is crossed, the ASIC is programmed in vlan promiscuous mode.
Switch off the vlan promiscuous mode once the number of vlans
falls back to the max vlans supported.
Signed-off-by: default avatarAjit Khaparde <ajitk@serverengines.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 205859a2
...@@ -250,7 +250,8 @@ struct be_adapter { ...@@ -250,7 +250,8 @@ struct be_adapter {
bool rx_post_starved; /* Zero rx frags have been posted to BE */ bool rx_post_starved; /* Zero rx frags have been posted to BE */
struct vlan_group *vlan_grp; struct vlan_group *vlan_grp;
u16 num_vlans; u16 vlans_added;
u16 max_vlans; /* Number of vlans supported */
u8 vlan_tag[VLAN_GROUP_ARRAY_LEN]; u8 vlan_tag[VLAN_GROUP_ARRAY_LEN];
struct be_dma_mem mc_cmd_mem; struct be_dma_mem mc_cmd_mem;
......
...@@ -488,17 +488,16 @@ static int be_change_mtu(struct net_device *netdev, int new_mtu) ...@@ -488,17 +488,16 @@ static int be_change_mtu(struct net_device *netdev, int new_mtu)
} }
/* /*
* if there are BE_NUM_VLANS_SUPPORTED or lesser number of VLANS configured, * A max of 64 (BE_NUM_VLANS_SUPPORTED) vlans can be configured in BE.
* program them in BE. If more than BE_NUM_VLANS_SUPPORTED are configured, * If the user configures more, place BE in vlan promiscuous mode.
* set the BE in promiscuous VLAN mode.
*/ */
static int be_vid_config(struct be_adapter *adapter) static int be_vid_config(struct be_adapter *adapter)
{ {
u16 vtag[BE_NUM_VLANS_SUPPORTED]; u16 vtag[BE_NUM_VLANS_SUPPORTED];
u16 ntags = 0, i; u16 ntags = 0, i;
int status; int status = 0;
if (adapter->num_vlans <= BE_NUM_VLANS_SUPPORTED) { if (adapter->vlans_added <= adapter->max_vlans) {
/* Construct VLAN Table to give to HW */ /* Construct VLAN Table to give to HW */
for (i = 0; i < VLAN_GROUP_ARRAY_LEN; i++) { for (i = 0; i < VLAN_GROUP_ARRAY_LEN; i++) {
if (adapter->vlan_tag[i]) { if (adapter->vlan_tag[i]) {
...@@ -532,21 +531,21 @@ static void be_vlan_add_vid(struct net_device *netdev, u16 vid) ...@@ -532,21 +531,21 @@ static void be_vlan_add_vid(struct net_device *netdev, u16 vid)
{ {
struct be_adapter *adapter = netdev_priv(netdev); struct be_adapter *adapter = netdev_priv(netdev);
adapter->num_vlans++;
adapter->vlan_tag[vid] = 1; adapter->vlan_tag[vid] = 1;
adapter->vlans_added++;
be_vid_config(adapter); if (adapter->vlans_added <= (adapter->max_vlans + 1))
be_vid_config(adapter);
} }
static void be_vlan_rem_vid(struct net_device *netdev, u16 vid) static void be_vlan_rem_vid(struct net_device *netdev, u16 vid)
{ {
struct be_adapter *adapter = netdev_priv(netdev); struct be_adapter *adapter = netdev_priv(netdev);
adapter->num_vlans--;
adapter->vlan_tag[vid] = 0; adapter->vlan_tag[vid] = 0;
vlan_group_set_device(adapter->vlan_grp, vid, NULL); vlan_group_set_device(adapter->vlan_grp, vid, NULL);
be_vid_config(adapter); adapter->vlans_added--;
if (adapter->vlans_added <= adapter->max_vlans)
be_vid_config(adapter);
} }
static void be_set_multicast_list(struct net_device *netdev) static void be_set_multicast_list(struct net_device *netdev)
...@@ -786,7 +785,7 @@ static void be_rx_compl_process(struct be_adapter *adapter, ...@@ -786,7 +785,7 @@ static void be_rx_compl_process(struct be_adapter *adapter,
skb->dev = adapter->netdev; skb->dev = adapter->netdev;
if (vlanf) { if (vlanf) {
if (!adapter->vlan_grp || adapter->num_vlans == 0) { if (!adapter->vlan_grp || adapter->vlans_added == 0) {
kfree_skb(skb); kfree_skb(skb);
return; return;
} }
...@@ -866,7 +865,7 @@ static void be_rx_compl_process_gro(struct be_adapter *adapter, ...@@ -866,7 +865,7 @@ static void be_rx_compl_process_gro(struct be_adapter *adapter,
vid = AMAP_GET_BITS(struct amap_eth_rx_compl, vlan_tag, rxcp); vid = AMAP_GET_BITS(struct amap_eth_rx_compl, vlan_tag, rxcp);
vid = be16_to_cpu(vid); vid = be16_to_cpu(vid);
if (!adapter->vlan_grp || adapter->num_vlans == 0) if (!adapter->vlan_grp || adapter->vlans_added == 0)
return; return;
vlan_gro_frags(&eq_obj->napi, adapter->vlan_grp, vid); vlan_gro_frags(&eq_obj->napi, adapter->vlan_grp, vid);
...@@ -2241,6 +2240,11 @@ static int be_get_config(struct be_adapter *adapter) ...@@ -2241,6 +2240,11 @@ static int be_get_config(struct be_adapter *adapter)
memcpy(adapter->netdev->dev_addr, mac, ETH_ALEN); memcpy(adapter->netdev->dev_addr, mac, ETH_ALEN);
memcpy(adapter->netdev->perm_addr, mac, ETH_ALEN); memcpy(adapter->netdev->perm_addr, mac, ETH_ALEN);
if (adapter->cap & 0x400)
adapter->max_vlans = BE_NUM_VLANS_SUPPORTED/4;
else
adapter->max_vlans = BE_NUM_VLANS_SUPPORTED;
return 0; return 0;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment