aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/ethernet
diff options
context:
space:
mode:
authorGreg Rose <gregory.v.rose@intel.com>2015-01-29 02:17:17 -0500
committerJeff Kirsher <jeffrey.t.kirsher@intel.com>2015-02-23 20:13:19 -0500
commit30d71af54d3df9752cee70e320da8d58ec3292b4 (patch)
tree522df14e1cd7b9738fc4a0aa40b44db051145be1 /drivers/net/ethernet
parentc952f6c719c1bd972b5ec20d8d4c083268cd0d6e (diff)
i40e: Fix i40e_ndo_set_vf_spoofchk
The netdev op that allows the operator to turn MAC/VLAN spoof checking on and off did not include the flag for VLAN spoof checking. This patch fixes that problem. Change-ID: Ib4c9e639024a854592d97af22706544881ac3fcb Signed-off-by: Greg Rose <gregory.v.rose@intel.com> Tested-by: Jim Young <james.m.young@intel.com> Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
Diffstat (limited to 'drivers/net/ethernet')
-rw-r--r--drivers/net/ethernet/intel/i40e/i40e_virtchnl_pf.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/net/ethernet/intel/i40e/i40e_virtchnl_pf.c b/drivers/net/ethernet/intel/i40e/i40e_virtchnl_pf.c
index 40f042af4131..5450b9f1aa3a 100644
--- a/drivers/net/ethernet/intel/i40e/i40e_virtchnl_pf.c
+++ b/drivers/net/ethernet/intel/i40e/i40e_virtchnl_pf.c
@@ -2427,7 +2427,8 @@ int i40e_ndo_set_vf_spoofchk(struct net_device *netdev, int vf_id, bool enable)
2427 ctxt.pf_num = pf->hw.pf_id; 2427 ctxt.pf_num = pf->hw.pf_id;
2428 ctxt.info.valid_sections = cpu_to_le16(I40E_AQ_VSI_PROP_SECURITY_VALID); 2428 ctxt.info.valid_sections = cpu_to_le16(I40E_AQ_VSI_PROP_SECURITY_VALID);
2429 if (enable) 2429 if (enable)
2430 ctxt.info.sec_flags |= I40E_AQ_VSI_SEC_FLAG_ENABLE_MAC_CHK; 2430 ctxt.info.sec_flags |= (I40E_AQ_VSI_SEC_FLAG_ENABLE_VLAN_CHK |
2431 I40E_AQ_VSI_SEC_FLAG_ENABLE_MAC_CHK);
2431 ret = i40e_aq_update_vsi_params(hw, &ctxt, NULL); 2432 ret = i40e_aq_update_vsi_params(hw, &ctxt, NULL);
2432 if (ret) { 2433 if (ret) {
2433 dev_err(&pf->pdev->dev, "Error %d updating VSI parameters\n", 2434 dev_err(&pf->pdev->dev, "Error %d updating VSI parameters\n",