test suite reviews and discussions
 help / color / mirror / Atom feed
From: lihong <lihongx.ma@intel.com>
To: dts@dpdk.org, weix.xie@intel.com
Cc: lihong <lihongx.ma@intel.com>
Subject: [dts] [PATCH V1] framework/pktgen_trex: check the port status before start transmission
Date: Thu,  4 Jun 2020 09:25:39 +0800	[thread overview]
Message-ID: <1591233939-19335-1-git-send-email-lihongx.ma@intel.com> (raw)

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


             reply	other threads:[~2020-06-04  8:57 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-06-04  1:25 lihong [this message]
2020-06-05  7:46 ` Xie, WeiX
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=1591233939-19335-1-git-send-email-lihongx.ma@intel.com \
    --to=lihongx.ma@intel.com \
    --cc=dts@dpdk.org \
    --cc=weix.xie@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).