DPDK patches and discussions
 help / color / mirror / Atom feed
* [PATCH] net/ice: fix overwriting of LSE bit by DCF
@ 2022-02-18 11:57 Michal Wilczynski
  2022-02-18 13:35 ` Wang, Haiyue
  0 siblings, 1 reply; 3+ messages in thread
From: Michal Wilczynski @ 2022-02-18 11:57 UTC (permalink / raw)
  To: dev; +Cc: haiyue.wang, qi.z.zhang, Michal Wilczynski

After enabling DCF on a VF, the ice driver stops receiving
link updates on it's Admin Receive Queue. During the init
of DCF ice_aqc_opc_get_link_status command is send to the
firmware without LSE(LINK STATUS EVENT) bit set. This prevents
the ice driver from receiving up/down events, and correspondingly
updating netdev.

Signed-off-by: Michal Wilczynski <michal.wilczynski@intel.com>
---
 drivers/net/ice/ice_dcf_parent.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/ice/ice_dcf_parent.c b/drivers/net/ice/ice_dcf_parent.c
index 0c8c2ed6c7..2f96dedcce 100644
--- a/drivers/net/ice/ice_dcf_parent.c
+++ b/drivers/net/ice/ice_dcf_parent.c
@@ -340,7 +340,7 @@ ice_dcf_init_parent_hw(struct ice_hw *hw)
 		goto err_unroll_alloc;
 
 	/* Initialize port_info struct with link information */
-	status = ice_aq_get_link_info(hw->port_info, false, NULL, NULL);
+	status = ice_aq_get_link_info(hw->port_info, true, NULL, NULL);
 	if (status)
 		goto err_unroll_alloc;
 
-- 
2.25.1

---------------------------------------------------------------------
Intel Technology Poland sp. z o.o.
ul. Slowackiego 173 | 80-298 Gdansk | Sad Rejonowy Gdansk Polnoc | VII Wydzial Gospodarczy Krajowego Rejestru Sadowego - KRS 101882 | NIP 957-07-52-316 | Kapital zakladowy 200.000 PLN.
Ta wiadomosc wraz z zalacznikami jest przeznaczona dla okreslonego adresata i moze zawierac informacje poufne. W razie przypadkowego otrzymania tej wiadomosci, prosimy o powiadomienie nadawcy oraz trwale jej usuniecie; jakiekolwiek przegladanie lub rozpowszechnianie jest zabronione.
This e-mail and any attachments may contain confidential material for the sole use of the intended recipient(s). If you are not the intended recipient, please contact the sender and delete all copies; any review or distribution by others is strictly prohibited.


^ permalink raw reply	[flat|nested] 3+ messages in thread

* RE: [PATCH] net/ice: fix overwriting of LSE bit by DCF
  2022-02-18 11:57 [PATCH] net/ice: fix overwriting of LSE bit by DCF Michal Wilczynski
@ 2022-02-18 13:35 ` Wang, Haiyue
  2022-02-20  5:04   ` Zhang, Qi Z
  0 siblings, 1 reply; 3+ messages in thread
From: Wang, Haiyue @ 2022-02-18 13:35 UTC (permalink / raw)
  To: Wilczynski, Michal, dev; +Cc: Zhang, Qi Z

> -----Original Message-----
> From: Wilczynski, Michal <michal.wilczynski@intel.com>
> Sent: Friday, February 18, 2022 19:57
> To: dev@dpdk.org
> Cc: Wang, Haiyue <haiyue.wang@intel.com>; Zhang, Qi Z <qi.z.zhang@intel.com>; Wilczynski, Michal
> <michal.wilczynski@intel.com>
> Subject: [PATCH] net/ice: fix overwriting of LSE bit by DCF
> 
> After enabling DCF on a VF, the ice driver stops receiving
> link updates on it's Admin Receive Queue. During the init
> of DCF ice_aqc_opc_get_link_status command is send to the
> firmware without LSE(LINK STATUS EVENT) bit set. This prevents
> the ice driver from receiving up/down events, and correspondingly
> updating netdev.
> 
> Signed-off-by: Michal Wilczynski <michal.wilczynski@intel.com>
> ---
>  drivers/net/ice/ice_dcf_parent.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 

Acked-by: Haiyue Wang <haiyue.wang@intel.com>

> 
> --
> 2.25.1


^ permalink raw reply	[flat|nested] 3+ messages in thread

* RE: [PATCH] net/ice: fix overwriting of LSE bit by DCF
  2022-02-18 13:35 ` Wang, Haiyue
@ 2022-02-20  5:04   ` Zhang, Qi Z
  0 siblings, 0 replies; 3+ messages in thread
From: Zhang, Qi Z @ 2022-02-20  5:04 UTC (permalink / raw)
  To: Wang, Haiyue, Wilczynski, Michal, dev



> -----Original Message-----
> From: Wang, Haiyue <haiyue.wang@intel.com>
> Sent: Friday, February 18, 2022 9:35 PM
> To: Wilczynski, Michal <michal.wilczynski@intel.com>; dev@dpdk.org
> Cc: Zhang, Qi Z <qi.z.zhang@intel.com>
> Subject: RE: [PATCH] net/ice: fix overwriting of LSE bit by DCF
> 
> > -----Original Message-----
> > From: Wilczynski, Michal <michal.wilczynski@intel.com>
> > Sent: Friday, February 18, 2022 19:57
> > To: dev@dpdk.org
> > Cc: Wang, Haiyue <haiyue.wang@intel.com>; Zhang, Qi Z
> > <qi.z.zhang@intel.com>; Wilczynski, Michal
> > <michal.wilczynski@intel.com>
> > Subject: [PATCH] net/ice: fix overwriting of LSE bit by DCF
> >
> > After enabling DCF on a VF, the ice driver stops receiving link
> > updates on it's Admin Receive Queue. During the init of DCF
> > ice_aqc_opc_get_link_status command is send to the firmware without
> > LSE(LINK STATUS EVENT) bit set. This prevents the ice driver from
> > receiving up/down events, and correspondingly updating netdev.
> >
> > Signed-off-by: Michal Wilczynski <michal.wilczynski@intel.com>
> > ---
> >  drivers/net/ice/ice_dcf_parent.c | 2 +-
> >  1 file changed, 1 insertion(+), 1 deletion(-)
> >
> 
> Acked-by: Haiyue Wang <haiyue.wang@intel.com>

Applied to dpdk-next-net-intel after added below fixline and cc stable

Fixes: 0b02c9519432 ("net/ice: handle PF initialization by DCF")
Cc: stable@dpdk.org

Thanks
Qi
> 
> >
> > --
> > 2.25.1
> 


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2022-02-20  5:04 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-02-18 11:57 [PATCH] net/ice: fix overwriting of LSE bit by DCF Michal Wilczynski
2022-02-18 13:35 ` Wang, Haiyue
2022-02-20  5:04   ` Zhang, Qi Z

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).