Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 1aa9673c authored by Ajit Khaparde's avatar Ajit Khaparde Committed by David S. Miller
Browse files

be2net: Fix number of VLANs supported in UMC mode for BE3-R.



In BE3-R, when UMC is enabled, the number of VLANs that can be added
to the interface is reduced to 15.

Signed-off-by: default avatarAjit Khaparde <ajit.khaparde@emulex.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent d9d604f8
Loading
Loading
Loading
Loading
+1 −0
Original line number Original line Diff line number Diff line
@@ -88,6 +88,7 @@ static inline char *nic_name(struct pci_dev *pdev)
#define BE_MIN_MTU		256
#define BE_MIN_MTU		256


#define BE_NUM_VLANS_SUPPORTED	64
#define BE_NUM_VLANS_SUPPORTED	64
#define BE_UMC_NUM_VLANS_SUPPORTED	15
#define BE_MAX_EQD		96u
#define BE_MAX_EQD		96u
#define	BE_MAX_TX_FRAG_COUNT	30
#define	BE_MAX_TX_FRAG_COUNT	30


+2 −0
Original line number Original line Diff line number Diff line
@@ -2985,6 +2985,8 @@ static void BEx_get_resources(struct be_adapter *adapter,


	if (adapter->function_mode & FLEX10_MODE)
	if (adapter->function_mode & FLEX10_MODE)
		res->max_vlans = BE_NUM_VLANS_SUPPORTED/8;
		res->max_vlans = BE_NUM_VLANS_SUPPORTED/8;
	else if (adapter->function_mode & UMC_ENABLED)
		res->max_vlans = BE_UMC_NUM_VLANS_SUPPORTED;
	else
	else
		res->max_vlans = BE_NUM_VLANS_SUPPORTED;
		res->max_vlans = BE_NUM_VLANS_SUPPORTED;
	res->max_mcast_mac = BE_MAX_MC;
	res->max_mcast_mac = BE_MAX_MC;