On Wed, 2015-08-26 at 15:49 -0700, Jeff Kirsher wrote:

> diff --git a/drivers/net/ethernet/intel/i40e/i40e_virtchnl_pf.c 
> b/drivers/net/ethernet/intel/i40e/i40e_virtchnl_pf.c
[]
> @@ -2106,11 +2106,12 @@ int i40e_ndo_set_vf_port_vlan(struct net_device 
> *netdev,
[]
>               dev_err(&pf->pdev->dev,
>                       "VF %d has already configured VLAN filters and the 
> administrator is requesting a port VLAN override.\nPlease unload and reload 
> the VF driver for this change to take effect.\n",
>                       vf_id);

Unrelated trivia:

This might be better with separate dev_err calls so
there is a consistent prefix in the logging output.

                dev_err(&pf->pdev->dev,
                        "VF %d has already configured VLAN filters and the 
administrator is requesting a port VLAN override.\n",
                        vf_id);
                dev_err(&pf->pdev->dev,
                        "Please unload and reload the VF driver for this change 
to take effect.\n");


--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to