> -----Original Message-----
> From: dev [mailto:[email protected]] On Behalf Of Xiaoyun Li
> Sent: Tuesday, July 25, 2017 2:43 AM
> To: [email protected]
> Cc: Wu, Jingjing <[email protected]>; Li, Xiaoyun <[email protected]>;
> [email protected]
> Subject: [dpdk-dev] [PATCH] net/i40e: fix PF notify issue when VF not up
> 
> This patch modifies PF notify error to warning when not starting up VF.
> 
> Fixes: 4861cde46116 ("i40e: new poll mode driver")
> Cc: [email protected]
> 
> Signed-off-by: Xiaoyun Li <[email protected]>
> ---
>  drivers/net/i40e/i40e_pf.c | 8 ++++++--
>  1 file changed, 6 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/net/i40e/i40e_pf.c b/drivers/net/i40e/i40e_pf.c index
> b4cf57f..2a29f1a 100644
> --- a/drivers/net/i40e/i40e_pf.c
> +++ b/drivers/net/i40e/i40e_pf.c
> @@ -267,8 +267,12 @@ i40e_pf_host_send_msg_to_vf(struct i40e_pf_vf *vf,
>       ret = i40e_aq_send_msg_to_vf(hw, abs_vf_id, opcode, retval,
>                                               msg, msglen, NULL);
>       if (ret) {
> -             PMD_INIT_LOG(ERR, "Fail to send message to VF, err %u",
> -                          hw->aq.asq_last_status);
> +             if (vf->state == I40E_VF_INACTIVE)
> +                     PMD_DRV_LOG(WARNING, "Warning! VF %u is inactive
> now!",
> +                             abs_vf_id);
> +             else
> +                     PMD_INIT_LOG(ERR, "Fail to send message to VF,
> err %u",
> +                             hw->aq.asq_last_status);
>       }
> 
>       return ret;
> --
> 2.7.4
Reviewed-by: Qiming Yang <[email protected]>

Reply via email to