For edge cases where the transceiver is physically inserted first and
immediately afterwards the DPDK PF is started the LSC event may occur
outside the current setting for the maximum check interval window. This
change lengthens the check interval to account for this along with other
reported cases where the link event may be longer than 1 second.

Signed-off-by: Timothy Miskell <timothy.misk...@intel.com>
Tested-by: Jonathan Tsai <jonathan1.t...@intel.com>
---
 .mailmap                     | 2 ++
 drivers/net/ice/ice_ethdev.c | 4 ++--
 2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/.mailmap b/.mailmap
index 3f5bab26a8..93c09a23ee 100644
--- a/.mailmap
+++ b/.mailmap
@@ -674,6 +674,7 @@ John Romein <rom...@astron.nl>
 John W. Linville <linvi...@tuxdriver.com>
 Jonas Pfefferle <j...@zurich.ibm.com> <peppe...@japf.ch>
 Jonathan Erb <jonathan....@threatblockr.com> <jonathan....@banduracyber.com>
+Jonathan Tsai <jonathan1.t...@intel.com>
 Jon DeVree <n...@vault24.org>
 Jon Loeliger <j...@netgate.com>
 Joongi Kim <joo...@an.kaist.ac.kr>
@@ -1414,6 +1415,7 @@ Tianli Lai <laitia...@tom.com>
 Tianyu Li <tianyu...@arm.com>
 Timmons C. Player <timmons.pla...@spirent.com>
 Timothy McDaniel <timothy.mcdan...@intel.com>
+Timothy Miskell <timothy.misk...@intel.com>
 Timothy Redaelli <tredae...@redhat.com>
 Tim Shearer <tim.shea...@overturenetworks.com>
 Ting Xu <ting...@intel.com>
diff --git a/drivers/net/ice/ice_ethdev.c b/drivers/net/ice/ice_ethdev.c
index 305077e74e..6ef06b9926 100644
--- a/drivers/net/ice/ice_ethdev.c
+++ b/drivers/net/ice/ice_ethdev.c
@@ -3992,8 +3992,8 @@ ice_atomic_write_link_status(struct rte_eth_dev *dev,
 static int
 ice_link_update(struct rte_eth_dev *dev, int wait_to_complete)
 {
-#define CHECK_INTERVAL 100  /* 100ms */
-#define MAX_REPEAT_TIME 10  /* 1s (10 * 100ms) in total */
+#define CHECK_INTERVAL 50  /* 50ms */
+#define MAX_REPEAT_TIME 40  /* 2s (40 * 50ms) in total */
        struct ice_hw *hw = ICE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
        struct ice_link_status link_status;
        struct rte_eth_link link, old;
-- 
2.25.1

Reply via email to