From: "Xie, WeiX" <weix.xie@intel.com>
To: "Ma, LihongX" <lihongx.ma@intel.com>, "dts@dpdk.org" <dts@dpdk.org>
Subject: Re: [dts] [PATCH V1] framework/pktgen_trex: check the port status before start transmission
Date: Fri, 5 Jun 2020 07:46:38 +0000 [thread overview]
Message-ID: <6FD6A7610D20924F885A4ECF34E8AC910461AF84@CDSMSX102.ccr.corp.intel.com> (raw)
In-Reply-To: <1591233939-19335-1-git-send-email-lihongx.ma@intel.com>
[-- Attachment #1: Type: text/plain, Size: 1825 bytes --]
Tested-by: Xie,WeiX < weix.xie@intel.com>
Regards,
Xie Wei
-----Original Message-----
From: Ma, LihongX
Sent: Thursday, June 4, 2020 9:26 AM
To: dts@dpdk.org; Xie, WeiX <weix.xie@intel.com>
Cc: Ma, LihongX <lihongx.ma@intel.com>
Subject: [dts][PATCH V1] framework/pktgen_trex: check the port status before start transmission
Signed-off-by: lihong <lihongx.ma@intel.com>
---
framework/pktgen_trex.py | 15 +++++++++++++++
1 file changed, 15 insertions(+)
diff --git a/framework/pktgen_trex.py b/framework/pktgen_trex.py index 202c778..8da0c84 100644
--- a/framework/pktgen_trex.py
+++ b/framework/pktgen_trex.py
@@ -790,6 +790,21 @@ class TrexPacketGenerator(PacketGenerator):
rate_percent = "{0}%".format(options.get('rate') or
self._traffic_opt.get('rate') or
'100')
+ # check the link status before transmission
+ self.logger.info('check the trex port link status')
+ for port in self._traffic_ports:
+ try_times = 0
+ port_attr = self._conn.get_port_attr(port)
+ while try_times < 5:
+ self.logger.info(pformat(port_attr))
+ if 'link' in port_attr.keys() and port_attr['link'].lower() == 'down':
+ time.sleep(2)
+ try_times = try_times + 1
+ port_attr = self._conn.get_port_attr(port)
+ else:
+ break
+ if try_times == 5 and port_attr['link'].lower() == 'down':
+ self.logger.error('the port: %d link status is
+ down, the transmission can not work right' % port)
try:
# clear the stats before injecting
self._conn.clear_stats()
--
2.7.4
[-- Attachment #2: TestVmHotplug.log --]
[-- Type: application/octet-stream, Size: 7263124 bytes --]
next prev parent reply other threads:[~2020-06-05 7:47 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-06-04 1:25 lihong
2020-06-05 7:46 ` Xie, WeiX [this message]
2020-06-11 12:16 ` Tu, Lijuan
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=6FD6A7610D20924F885A4ECF34E8AC910461AF84@CDSMSX102.ccr.corp.intel.com \
--to=weix.xie@intel.com \
--cc=dts@dpdk.org \
--cc=lihongx.ma@intel.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).