test suite reviews and discussions
 help / color / mirror / Atom feed
* [dts] [PATCH V1] framework/pktgen_trex: set core_mask length same with ports list length
@ 2020-01-06  1:12 lihong
  2020-01-06  8:40 ` Ma, LihongX
  2020-01-06  8:57 ` Tu, Lijuan
  0 siblings, 2 replies; 3+ messages in thread
From: lihong @ 2020-01-06  1:12 UTC (permalink / raw)
  To: dts; +Cc: lihong

Signed-off-by: lihong <lihongx.ma@intel.com>
---
 framework/pktgen_trex.py | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/framework/pktgen_trex.py b/framework/pktgen_trex.py
index 2ff5894..705d8f5 100644
--- a/framework/pktgen_trex.py
+++ b/framework/pktgen_trex.py
@@ -793,11 +793,13 @@ class TrexPacketGenerator(PacketGenerator):
         try:
             # clear the stats before injecting
             self._conn.clear_stats()
+            # 'core_mask' list must be the same length as 'ports' list
+            core_mask = self.core_mask[:len(self._traffic_ports)]
             # Start traffic on port(s)
             run_opt = {
                 'ports':    self._traffic_ports,
                 'mult':     rate_percent,
-                'core_mask': self.core_mask,
+                'core_mask': core_mask,
                 'force':    True,}
             self.logger.info("begin traffic ......")
             self.logger.debug(run_opt)
-- 
2.7.4


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

end of thread, other threads:[~2020-01-06  8:57 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-01-06  1:12 [dts] [PATCH V1] framework/pktgen_trex: set core_mask length same with ports list length lihong
2020-01-06  8:40 ` Ma, LihongX
2020-01-06  8:57 ` 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).