be2net: Fix VF driver load for Lancer
Lancer FW has added new capability checks for VFs. Driver should only use those capabilities which are allowed for VFs. Signed-off-by: Padmanabh Ratnakar <padmanabh.ratnakar@emulex.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
c3fe065cea
commit
0b13fb458f
|
@ -1631,7 +1631,8 @@ int be_cmd_rx_filter(struct be_adapter *adapter, u32 flags, u32 value)
|
|||
/* Reset mcast promisc mode if already set by setting mask
|
||||
* and not setting flags field
|
||||
*/
|
||||
req->if_flags_mask |=
|
||||
if (!lancer_chip(adapter) || be_physfn(adapter))
|
||||
req->if_flags_mask |=
|
||||
cpu_to_le32(BE_IF_FLAGS_MCAST_PROMISCUOUS);
|
||||
|
||||
req->mcast_num = cpu_to_le32(netdev_mc_count(adapter->netdev));
|
||||
|
|
|
@ -2772,6 +2772,13 @@ static int be_setup(struct be_adapter *adapter)
|
|||
en_flags |= BE_IF_FLAGS_RSS;
|
||||
}
|
||||
|
||||
if (lancer_chip(adapter) && !be_physfn(adapter)) {
|
||||
en_flags = BE_IF_FLAGS_UNTAGGED |
|
||||
BE_IF_FLAGS_BROADCAST |
|
||||
BE_IF_FLAGS_MULTICAST;
|
||||
cap_flags = en_flags;
|
||||
}
|
||||
|
||||
status = be_cmd_if_create(adapter, cap_flags, en_flags,
|
||||
&adapter->if_handle, 0);
|
||||
if (status != 0)
|
||||
|
|
Loading…
Reference in New Issue