> -----Original Message-----
> From: Pei, Andy
> Sent: Friday, June 28, 2019 4:33 PM
> To: [email protected]
> Cc: Pei, Andy <[email protected]>; Zhang, Qi Z <[email protected]>; Wu,
> Jingjing <[email protected]>; Xing, Beilei <[email protected]>; Yigit,
> Ferruh <[email protected]>; Xu, Rosen <[email protected]>; Ye,
> Xiaolong <[email protected]>; Zhang, Roy Fan
> <[email protected]>; [email protected]
> Subject: [PATCH v2] net/i40e: i40e get link status update from ipn3ke
>
> Add switch_mode argument for i40e PF to specify the specific FPGA that i40e
> PF is connected to. i40e PF get link status update via the connected FPGA.
>
> Signed-off-by: Andy Pei <[email protected]>
> ---
....
> @@ -2799,6 +2913,10 @@ void i40e_flex_payload_reg_set_default(struct
> i40e_hw *hw)
> else
> update_link_aq(hw, &link, enable_lse, wait_to_complete);
>
> + devargs = pci_dev->device.devargs;
> + if (devargs)
> + i40e_pf_linkstatus_get_from_switch_ethdev(devargs, &link);
It's not necessary to check devargs every time we do i40e_dev_link_update,
its better initialize the ipn3ke mode during initialization (add some field in
i40e_adapter maybe), so we can reuse the result at runtime
> +
......