test suite reviews and discussions
 help / color / mirror / Atom feed
From: Xueqin Lin <xueqin.lin@intel.com>
To: dts@dpdk.org
Cc: Xueqin Lin <xueqin.lin@intel.com>
Subject: [dts] [PATCH] add --crc-strip param when starting i40evf driver testpmd
Date: Mon,  6 Mar 2017 22:40:49 -0500	[thread overview]
Message-ID: <1488858049-5412-1-git-send-email-xueqin.lin@intel.com> (raw)

---
 framework/pmd_output.py | 14 +++++++++++++-
 1 file changed, 13 insertions(+), 1 deletion(-)

diff --git a/framework/pmd_output.py b/framework/pmd_output.py
index 13dcaef..7585088 100644
--- a/framework/pmd_output.py
+++ b/framework/pmd_output.py
@@ -31,9 +31,10 @@
 
 import os
 import re
+import settings
 from settings import TIMEOUT,PROTOCOL_PACKET_SIZE
 from utils import create_mask
-
+from serializer import Serializer
 
 class PmdOutput():
 
@@ -43,6 +44,7 @@ class PmdOutput():
 
     def __init__(self, dut):
         self.dut = dut
+        self.NAME = '%s' %dut
         self.dut.testpmd = self
         self.rx_pkts_prefix = "RX-packets:"
         self.rx_missed_prefix = "RX-missed:"
@@ -100,6 +102,16 @@ class PmdOutput():
         return self.command
 
     def start_testpmd(self, cores, param='', eal_param='', socket=0):
+        # add --crc-strip param to start testpmd for i40evf driver in VM
+        if "virt_dut" in self.NAME:
+            serializer = Serializer() 
+            ports_info = serializer.load('dut_port_info')
+            for port in ports_info:
+                pci_id = port['type']
+                driver = settings.get_nic_driver(pci_id)
+            if driver == "i40evf":
+                if "--crc-strip" not in param:
+                    param += " --crc-strip"
         # in dpdk2.0 need used --txqflags param to open hardware features
         if "--txqflags" not in param:
             param += " --txqflags=0"
-- 
2.5.5

             reply	other threads:[~2017-03-07  9:44 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-03-07  3:40 Xueqin Lin [this message]
2017-03-08  1:33 ` Liu, Yong
2017-03-08  2:51   ` Lin, Xueqin
2017-03-08  5:44     ` Liu, Yong
2017-03-08  8:19       ` Lin, Xueqin

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=1488858049-5412-1-git-send-email-xueqin.lin@intel.com \
    --to=xueqin.lin@intel.com \
    --cc=dts@dpdk.org \
    /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).