* [dts] [PATCH V1] framework/crb:add check link status public method
@ 2022-01-05 19:56 Zhimin Huang
2022-01-12 5:56 ` Tu, Lijuan
0 siblings, 1 reply; 2+ messages in thread
From: Zhimin Huang @ 2022-01-05 19:56 UTC (permalink / raw)
To: dts; +Cc: Zhimin Huang
when we meet testpmd or app start but link is not up.
we can loop up the interface to ensure link.
Signed-off-by: Zhimin Huang <zhiminx.huang@intel.com>
---
framework/crb.py | 14 ++++++++++++++
1 file changed, 14 insertions(+)
diff --git a/framework/crb.py b/framework/crb.py
index bd4f565d..22af9ad3 100755
--- a/framework/crb.py
+++ b/framework/crb.py
@@ -907,3 +907,17 @@ class Crb(object):
else:
self.logger.info("NIC %s may be not find %s" % (intf, flag))
return False
+
+ def check_interfaces_link(self, intf, timeout=15):
+ """
+ loop to check port link status
+ """
+ for i in range(timeout):
+ out = self.send_expect("ethtool {} | tail -1 ".format(intf), "# ")
+ if 'Link detected: yes' not in out:
+ self.send_expect("ifconfig {} up".format(intf), "# ")
+ time.sleep(1)
+ else:
+ return True
+ self.logger.error("{} link is down".format(intf))
+ return False
--
2.17.1
^ permalink raw reply [flat|nested] 2+ messages in thread
* RE: [dts] [PATCH V1] framework/crb:add check link status public method
2022-01-05 19:56 [dts] [PATCH V1] framework/crb:add check link status public method Zhimin Huang
@ 2022-01-12 5:56 ` Tu, Lijuan
0 siblings, 0 replies; 2+ messages in thread
From: Tu, Lijuan @ 2022-01-12 5:56 UTC (permalink / raw)
To: Huang, ZhiminX, dts; +Cc: Huang, ZhiminX
> -----Original Message-----
> From: Zhimin Huang <zhiminx.huang@intel.com>
> Sent: 2022年1月6日 3:56
> To: dts@dpdk.org
> Cc: Huang, ZhiminX <zhiminx.huang@intel.com>
> Subject: [dts] [PATCH V1] framework/crb:add check link status public method
>
> when we meet testpmd or app start but link is not up.
> we can loop up the interface to ensure link.
>
> Signed-off-by: Zhimin Huang <zhiminx.huang@intel.com>
> ---
> framework/crb.py | 14 ++++++++++++++
> 1 file changed, 14 insertions(+)
>
> diff --git a/framework/crb.py b/framework/crb.py index bd4f565d..22af9ad3
> 100755
> --- a/framework/crb.py
> +++ b/framework/crb.py
> @@ -907,3 +907,17 @@ class Crb(object):
> else:
> self.logger.info("NIC %s may be not find %s" % (intf, flag))
> return False
> +
> + def check_interfaces_link(self, intf, timeout=15):
It only accept 1 interface, so the function name should be " check_interface_link "
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2022-01-12 5:56 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-01-05 19:56 [dts] [PATCH V1] framework/crb:add check link status public method Zhimin Huang
2022-01-12 5:56 ` Tu, Lijuan
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).