mirror of
https://github.com/torvalds/linux.git
synced 2024-11-11 22:51:42 +00:00
qlcnic: Restrict VF from configuring any VLAN mode.
o Adapter should allow vlan traffic only for vlans configured on a VF. On configuring any vlan mode from VF, adapter will allow any vlan traffic to pass for that VF. Do not allow VF to configure this mode. Signed-off-by: Sucheta Chakraborty <sucheta.chakraborty@qlogic.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
2315dc91a5
commit
1414abea04
@ -9,9 +9,12 @@
|
||||
#include "qlcnic.h"
|
||||
#include <linux/types.h>
|
||||
|
||||
#define QLCNIC_SRIOV_VF_MAX_MAC 8
|
||||
#define QLCNIC_SRIOV_VF_MAX_MAC 7
|
||||
#define QLC_VF_MIN_TX_RATE 100
|
||||
#define QLC_VF_MAX_TX_RATE 9999
|
||||
#define QLC_MAC_OPCODE_MASK 0x7
|
||||
#define QLC_MAC_STAR_ADD 6
|
||||
#define QLC_MAC_STAR_DEL 7
|
||||
|
||||
static int qlcnic_sriov_pf_get_vport_handle(struct qlcnic_adapter *, u8);
|
||||
|
||||
@ -1173,6 +1176,13 @@ static int qlcnic_sriov_validate_cfg_macvlan(struct qlcnic_adapter *adapter,
|
||||
struct qlcnic_vport *vp = vf->vp;
|
||||
u8 op, new_op;
|
||||
|
||||
if (((cmd->req.arg[1] & QLC_MAC_OPCODE_MASK) == QLC_MAC_STAR_ADD) ||
|
||||
((cmd->req.arg[1] & QLC_MAC_OPCODE_MASK) == QLC_MAC_STAR_DEL)) {
|
||||
netdev_err(adapter->netdev, "MAC + any VLAN filter not allowed from VF %d\n",
|
||||
vf->pci_func);
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
if (!(cmd->req.arg[1] & BIT_8))
|
||||
return -EINVAL;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user