DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [DPDK] net/ixgbe: fix status synchronization on BSD
@ 2020-03-25  3:31 zhihongx.peng
  2020-03-26 22:01 ` Stephen Hemminger
  0 siblings, 1 reply; 4+ messages in thread
From: zhihongx.peng @ 2020-03-25  3:31 UTC (permalink / raw)
  To: xiaolong.ye, wenzhuo.lu, konstantin.ananyev
  Cc: dev, Peng Zhihong, liang-min.wang

From: Peng Zhihong <zhihongx.peng@intel.com>

DPDK does not implement interrupt mechanism on BSD,
so force NIC status synchronization.

Fixes: dc66e5fd01b9 (net/ixgbe: improve link state check on VF)
Cc: liang-min.wang@intel.com

Signed-off-by: Peng Zhihong <zhihongx.peng@intel.com>
---
 drivers/net/ixgbe/ixgbe_ethdev.c | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/drivers/net/ixgbe/ixgbe_ethdev.c b/drivers/net/ixgbe/ixgbe_ethdev.c
index 23b3f5b0c..6135effcd 100644
--- a/drivers/net/ixgbe/ixgbe_ethdev.c
+++ b/drivers/net/ixgbe/ixgbe_ethdev.c
@@ -4243,6 +4243,11 @@ ixgbe_dev_link_update_share(struct rte_eth_dev *dev,
 	if (wait_to_complete == 0 || dev->data->dev_conf.intr_conf.lsc != 0)
 		wait = 0;
 
+/*BSD has no interrupt mechanism, so force NIC status synchronization.*/
+#ifdef RTE_EXEC_ENV_FREEBSD
+	wait = 1;
+#endif
+
 	if (vf)
 		diag = ixgbevf_check_link(hw, &link_speed, &link_up, wait);
 	else
-- 
2.17.1


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

* Re: [dpdk-dev] [DPDK] net/ixgbe: fix status synchronization on BSD
  2020-03-25  3:31 [dpdk-dev] [DPDK] net/ixgbe: fix status synchronization on BSD zhihongx.peng
@ 2020-03-26 22:01 ` Stephen Hemminger
  2020-04-26  5:26   ` Peng, ZhihongX
  0 siblings, 1 reply; 4+ messages in thread
From: Stephen Hemminger @ 2020-03-26 22:01 UTC (permalink / raw)
  To: zhihongx.peng
  Cc: xiaolong.ye, wenzhuo.lu, konstantin.ananyev, dev, liang-min.wang

On Tue, 24 Mar 2020 23:31:11 -0400
zhihongx.peng@intel.com wrote:

> +/*BSD has no interrupt mechanism, so force NIC status synchronization.*/
> +#ifdef RTE_EXEC_ENV_FREEBSD
> +	wait = 1;
> +#endif
> +

Please format comments correctly.
Is there a better way to detect interrupt mechanism with a function?
#ifdef's make for hard to maintain code.


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

* Re: [dpdk-dev] [DPDK] net/ixgbe: fix status synchronization on BSD
  2020-03-26 22:01 ` Stephen Hemminger
@ 2020-04-26  5:26   ` Peng, ZhihongX
  0 siblings, 0 replies; 4+ messages in thread
From: Peng, ZhihongX @ 2020-04-26  5:26 UTC (permalink / raw)
  To: Stephen Hemminger
  Cc: Ye, Xiaolong, Lu, Wenzhuo, Ananyev, Konstantin, dev, Wang, Liang-min

Sorry, because the mail filtering is wrong, I have not seen this mail, and the community canceled the patch. I resubmitted a pacth, only modified the format. Judging this flag, it feels a bit more complicated.

New patch: http://patches.dpdk.org/patch/68713/

-----Original Message-----
From: Stephen Hemminger [mailto:stephen@networkplumber.org] 
Sent: Friday, March 27, 2020 6:02 AM
To: Peng, ZhihongX <zhihongx.peng@intel.com>
Cc: Ye, Xiaolong <xiaolong.ye@intel.com>; Lu, Wenzhuo <wenzhuo.lu@intel.com>; Ananyev, Konstantin <konstantin.ananyev@intel.com>; dev@dpdk.org; Wang, Liang-min <liang-min.wang@intel.com>
Subject: Re: [dpdk-dev] [DPDK] net/ixgbe: fix status synchronization on BSD

On Tue, 24 Mar 2020 23:31:11 -0400
zhihongx.peng@intel.com wrote:

> +/*BSD has no interrupt mechanism, so force NIC status 
> +synchronization.*/ #ifdef RTE_EXEC_ENV_FREEBSD
> +	wait = 1;
> +#endif
> +

Please format comments correctly.
Is there a better way to detect interrupt mechanism with a function?
#ifdef's make for hard to maintain code.


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

* [dpdk-dev] [DPDK] net/ixgbe: fix status synchronization on BSD
@ 2020-03-25  7:32 zhihongx.peng
  0 siblings, 0 replies; 4+ messages in thread
From: zhihongx.peng @ 2020-03-25  7:32 UTC (permalink / raw)
  To: xiaolong.ye, wenzhuo.lu, konstantin.ananyev
  Cc: dev, Peng Zhihong, liang-min.wang

From: Peng Zhihong <zhihongx.peng@intel.com>

DPDK does not implement interrupt mechanism on BSD,
so force NIC status synchronization.

Fixes: dc66e5fd01b9 (net/ixgbe: improve link state check on VF)
Cc: liang-min.wang@intel.com

Signed-off-by: Peng Zhihong <zhihongx.peng@intel.com>
---
 drivers/net/ixgbe/ixgbe_ethdev.c | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/drivers/net/ixgbe/ixgbe_ethdev.c b/drivers/net/ixgbe/ixgbe_ethdev.c
index 23b3f5b0c..6135effcd 100644
--- a/drivers/net/ixgbe/ixgbe_ethdev.c
+++ b/drivers/net/ixgbe/ixgbe_ethdev.c
@@ -4243,6 +4243,11 @@ ixgbe_dev_link_update_share(struct rte_eth_dev *dev,
 	if (wait_to_complete == 0 || dev->data->dev_conf.intr_conf.lsc != 0)
 		wait = 0;
 
+/*BSD has no interrupt mechanism, so force NIC status synchronization.*/
+#ifdef RTE_EXEC_ENV_FREEBSD
+	wait = 1;
+#endif
+
 	if (vf)
 		diag = ixgbevf_check_link(hw, &link_speed, &link_up, wait);
 	else
-- 
2.17.1


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

end of thread, other threads:[~2020-04-26  5:26 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-03-25  3:31 [dpdk-dev] [DPDK] net/ixgbe: fix status synchronization on BSD zhihongx.peng
2020-03-26 22:01 ` Stephen Hemminger
2020-04-26  5:26   ` Peng, ZhihongX
2020-03-25  7:32 zhihongx.peng

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).