test suite reviews and discussions
 help / color / mirror / Atom feed
* [dts] [PATCH V2 0/2] userspace_ethtool: update automation testing script/test plan
@ 2017-01-16  8:13 Yufen Mo
  2017-01-16  8:13 ` [dts] [PATCH V2 1/2] userspace_ethtool: update test plan Yufen Mo
                   ` (2 more replies)
  0 siblings, 3 replies; 8+ messages in thread
From: Yufen Mo @ 2017-01-16  8:13 UTC (permalink / raw)
  To: dts; +Cc: yufengmx

From: yufengmx <yufengx.mo@intel.com>

*.add nic's firmware/bus-info information query checking, which is corresponding with Qiming Yang's patchset 18597-18600 patchset 18601 

yufengmx (2):
  userspace_ethtool: update test plan.
  userspace_ethtool: update automation testing script.

 test_plans/userspace_ethtool_test_plan.rst |   8 +-
 tests/TestSuite_userspace_ethtool.py       | 141 +++++++++++++++++++++++------
 2 files changed, 117 insertions(+), 32 deletions(-)

-- 
1.9.3

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

* [dts] [PATCH V2 1/2] userspace_ethtool: update test plan.
  2017-01-16  8:13 [dts] [PATCH V2 0/2] userspace_ethtool: update automation testing script/test plan Yufen Mo
@ 2017-01-16  8:13 ` Yufen Mo
  2017-01-16  8:21   ` Mo, YufengX
  2017-01-16  8:13 ` [dts] [PATCH V2 2/2] userspace_ethtool: update automation testing script Yufen Mo
  2017-01-16  8:21 ` [dts] [PATCH V2 0/2] userspace_ethtool: update automation testing script/test plan Mo, YufengX
  2 siblings, 1 reply; 8+ messages in thread
From: Yufen Mo @ 2017-01-16  8:13 UTC (permalink / raw)
  To: dts; +Cc: yufengmx

From: yufengmx <yufengx.mo@intel.com>


*. add nic's firmware/bus-info information query checking

Signed-off-by: yufengmx <yufengx.mo@intel.com>
---
 test_plans/userspace_ethtool_test_plan.rst | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/test_plans/userspace_ethtool_test_plan.rst b/test_plans/userspace_ethtool_test_plan.rst
index 83e7fac..498cc38 100644
--- a/test_plans/userspace_ethtool_test_plan.rst
+++ b/test_plans/userspace_ethtool_test_plan.rst
@@ -65,8 +65,12 @@ dumped information, which are dumped separately by dpdk's ethtool and
 linux's ethtool, were exactly the same.
 
 	EthApp> drvinfo
-	Port 0 driver: rte_ixgbe_pmd (ver: RTE 2.1.0)
-	Port 1 driver: rte_ixgbe_pmd (ver: RTE 2.1.0)
+    Port 0 driver: net_ixgbe (ver: DPDK 17.02.0-rc0)
+    bus-info: 0000:84:00.0
+    firmware-version: 0x61bf0001
+    Port 1 driver: net_ixgbe (ver: DPDK 17.02.0-rc0)
+    bus-info: 0000:84:00.1
+    firmware-version: 0x61bf0001
 
 Use "link" command to dump all ports link status.
 Notice:: On FVL, link detect need a physical link disconnect.
-- 
1.9.3

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

* [dts] [PATCH V2 2/2] userspace_ethtool: update automation testing script.
  2017-01-16  8:13 [dts] [PATCH V2 0/2] userspace_ethtool: update automation testing script/test plan Yufen Mo
  2017-01-16  8:13 ` [dts] [PATCH V2 1/2] userspace_ethtool: update test plan Yufen Mo
@ 2017-01-16  8:13 ` Yufen Mo
  2017-01-16  8:20   ` Mo, YufengX
  2017-01-16  8:21 ` [dts] [PATCH V2 0/2] userspace_ethtool: update automation testing script/test plan Mo, YufengX
  2 siblings, 1 reply; 8+ messages in thread
From: Yufen Mo @ 2017-01-16  8:13 UTC (permalink / raw)
  To: dts; +Cc: yufengmx

From: yufengmx <yufengx.mo@intel.com>


*. add nic's firmware/bus-info information query checking, which is corresponding with
Qiming Yang's
patchset 18597-18600(accepted)
patchset 18601(accepted)

Signed-off-by: yufengmx <yufengx.mo@intel.com>
---
 tests/TestSuite_userspace_ethtool.py | 141 +++++++++++++++++++++++++++--------
 1 file changed, 111 insertions(+), 30 deletions(-)

diff --git a/tests/TestSuite_userspace_ethtool.py b/tests/TestSuite_userspace_ethtool.py
index ced7e96..937a9e5 100644
--- a/tests/TestSuite_userspace_ethtool.py
+++ b/tests/TestSuite_userspace_ethtool.py
@@ -128,22 +128,6 @@ class TestUserspaceEthtool(TestCase, IxiaPacketGenerator):
         else:
             return 1518
 
-    def resize_linux_eeprom_file(self, dpdk_eeprom_file, linux_eeprom_file):
-        basePath = os.sep + "root" + self.dut.base_dir[1:] + os.sep
-        with open( basePath + os.sep + dpdk_eeprom_file, 'rb') as fpDpdk:
-            dpdk_bytes = fpDpdk.read()
-            dpdk_length = len(dpdk_bytes)
-
-        with open( basePath + linux_eeprom_file, 'rb') as fplinux:
-            linux_bytes = fplinux.read()
-            linux_length = len(linux_bytes)
-        
-        self.verify(dpdk_length <= linux_length, 
-                    "linux ethtool haven't dump out enough data as dpdk ethtool")
-
-        with open( basePath + linux_eeprom_file, 'wb') as fplinux:
-            fplinux.write(linux_bytes[:dpdk_length])
-
     def strip_md5(self, filename):
         md5_info = self.dut.send_expect("md5sum %s" % filename, "# ")
         md5_pattern = r"(\w+)  (\w+)"
@@ -153,25 +137,123 @@ class TestUserspaceEthtool(TestCase, IxiaPacketGenerator):
         else:
             return ""
 
+    def dpdk_get_nic_info(self, dpdk_driver_msg):
+        # get nic driver information using dpdk's ethtool
+        info_lines = dpdk_driver_msg.strip().splitlines()
+        driver_pattern = r"Port (\d+) driver: (.*) \(ver: (.*)\)"
+        pattern = "(.*): (.*)"
+        firmwarePat = "0x([0-9a-f]+)"
+        check_content = ['firmware-version', 'driver']
+        nic_infos = {}
+        port = None
+        cnt = 0
+        while cnt < len(info_lines):
+            if not info_lines[cnt]:
+                pass
+            else:
+                m = re.match(driver_pattern, info_lines[cnt])
+                if m:
+                    port = m.group(1)
+                    nic_infos[port] = {}
+                    nic_infos[port]['driver'] = m.group(2).split('_').pop()
+                    dpdk_version = m.group(3)
+                else:
+                    if port:
+                        out = re.findall(pattern, info_lines[cnt], re.M)[0]
+                        if len(out) == 2:
+                            if out[0] == 'firmware-version':
+                                nic_infos[port][out[0]] = "0x" + re.findall(firmwarePat, out[1], re.M)[0]
+                            else:
+                                nic_infos[port][out[0]] = out[1]
+            cnt += 1
+        # check driver content
+        status = []
+        for port_no in nic_infos:
+            nic_info = nic_infos[port_no]
+            for item in check_content:
+                if item not in nic_info.keys():
+                    status.append("port {0} get {1} failed".format(port_no, item))
+                    break
+        # if there is error in status, clear nic_infos 
+        if status:
+            msg = os.linesep.join(status)
+            nic_infos = None
+        else:
+            msg = ''
+        
+        return nic_infos, msg
+
+    def linux_get_nic_info(self, port_name):
+        # get nic driver information using linux's ethtool
+        pattern = "(.*): (.*)"
+        firmwarePat = "0x([0-9a-f]+)"
+        infos = self.dut.send_expect("ethtool -i %s"%port_name, "# ").splitlines()
+        sys_nic_info = {}
+        for info in infos:
+            if not info:
+                continue
+            result = re.findall(pattern, info, re.M)
+            if not result:
+                continue
+            out = result[0]
+            if len(out) == 2:
+                if out[0] == 'firmware-version':
+                    sys_nic_info[out[0]] = "0x" + re.findall(firmwarePat, out[1], re.M)[0]
+                else:
+                    sys_nic_info[out[0]] = out[1]
+        return sys_nic_info
+
+    def check_driver_info(self, port_name, sys_nic_info, dpdk_drv_info):
+        # compare dpdk query nic information with linux query nic information 
+        for item, value in dpdk_drv_info.items():
+            if item not in sys_nic_info.keys():
+                msg = "linux ethtool failed to dump driver info"
+                status = False
+                break
+            if value != sys_nic_info[item]:
+                msg = "Userspace ethtool failed to dump driver info"
+                status = False
+                break
+        else:
+            msg = "{0}: dpdk ethtool dump nic information done".format(port_name)
+            status = True
+
+        return status, msg
+
     def test_dump_driver_info(self):
         """
         Test ethtool can dump basic information
         """
         self.dut.send_expect(self.cmd, "EthApp>", 60)
-        out = self.dut.send_expect("drvinfo", "EthApp>")
-        driver_pattern = r"Port (\d+) driver: rte_(.*)_pmd \(ver: RTE (.*)\)"
-        driver_infos = out.split("\r\n")
-        self.verify(len(driver_infos) > 1, "Userspace tool failed to dump driver infor")
-
-        # check dump driver info function
-        for driver_info in driver_infos:
-            m = re.match(driver_pattern, driver_info)
-            if m:
-                port = m.group(1)
-                driver = m.group(2)
-                version = m.group(3)
-                print utils.GREEN("Detect port %s with %s driver\n" % (port, driver))
+        dpdk_driver_msg = self.dut.send_expect("drvinfo", "EthApp>")
+        self.dut.send_expect("quit", "# ")
+        dpdk_nic_infos, msg = self.dpdk_get_nic_info(dpdk_driver_msg)
+        self.verify(dpdk_nic_infos, msg)
+        
+        portsinfo = {}
+        for index in range(len(self.ports)):
+            portsinfo[index] = {}
+            portinfo = portsinfo[index]
+            port = self.ports[index]
+            netdev = self.dut.ports_info[port]['port']
+            # strip orignal driver
+            portinfo['ori_driver'] = netdev.get_nic_driver()
+            portinfo['net_dev'] = netdev
+            # bind to default driver
+            netdev.bind_driver()
+            # get linux interface
+            intf_name = netdev.get_interface_name()
+            sys_nic_info = self.linux_get_nic_info(intf_name)
+            status, msg = self.check_driver_info(intf_name, sys_nic_info, dpdk_nic_infos[str(index)])
+            self.logger.info(msg)
+            self.verify(status, msg)
 
+        for index in range(len(self.ports)):
+            # bind to original driver
+            portinfo = portsinfo[index]
+            portinfo['net_dev'].bind_driver(portinfo['ori_driver'])
+
+        self.dut.send_expect(self.cmd, "EthApp>", 60)
         # ethtool doesn't support port disconnect by tools of linux 
         # only detect physical link disconnect status
         if self.nic.startswith("fortville") == False:  
@@ -294,7 +376,6 @@ class TestUserspaceEthtool(TestCase, IxiaPacketGenerator):
 
         for index in range(len(self.ports)):
             md5 = self.strip_md5(portsinfo[index]['eeprom_file'])
-            self.resize_linux_eeprom_file( portsinfo[index]['eeprom_file'], portsinfo[index]['ethtool_eeprom'])
             md5_ref = self.strip_md5(portsinfo[index]['ethtool_eeprom'])
             print utils.GREEN("Reference eeprom md5 %s" % md5)
             print utils.GREEN("Reference eeprom md5_ref %s" % md5_ref)
-- 
1.9.3

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

* Re: [dts] [PATCH V2 2/2] userspace_ethtool: update automation testing script.
  2017-01-16  8:13 ` [dts] [PATCH V2 2/2] userspace_ethtool: update automation testing script Yufen Mo
@ 2017-01-16  8:20   ` Mo, YufengX
  0 siblings, 0 replies; 8+ messages in thread
From: Mo, YufengX @ 2017-01-16  8:20 UTC (permalink / raw)
  To: Liu, Yong; +Cc: dts

ignore this mail. Use to test mail account

> -----Original Message-----
> From: Mo, YufengX
> Sent: January 16, 2017 4:13 PM
> To: dts@dpdk.org
> Cc: Mo, YufengX
> Subject: [dts][PATCH V2 2/2] userspace_ethtool: update automation testing script.
> 
> From: yufengmx <yufengx.mo@intel.com>
> 
> 
> *. add nic's firmware/bus-info information query checking, which is corresponding with
> Qiming Yang's
> patchset 18597-18600(accepted)
> patchset 18601(accepted)
> 
> Signed-off-by: yufengmx <yufengx.mo@intel.com>
> ---
>  tests/TestSuite_userspace_ethtool.py | 141 +++++++++++++++++++++++++++--------
>  1 file changed, 111 insertions(+), 30 deletions(-)
> 
> diff --git a/tests/TestSuite_userspace_ethtool.py b/tests/TestSuite_userspace_ethtool.py
> index ced7e96..937a9e5 100644
> --- a/tests/TestSuite_userspace_ethtool.py
> +++ b/tests/TestSuite_userspace_ethtool.py
> @@ -128,22 +128,6 @@ class TestUserspaceEthtool(TestCase, IxiaPacketGenerator):
>          else:
>              return 1518
> 
> -    def resize_linux_eeprom_file(self, dpdk_eeprom_file, linux_eeprom_file):
> -        basePath = os.sep + "root" + self.dut.base_dir[1:] + os.sep
> -        with open( basePath + os.sep + dpdk_eeprom_file, 'rb') as fpDpdk:
> -            dpdk_bytes = fpDpdk.read()
> -            dpdk_length = len(dpdk_bytes)
> -
> -        with open( basePath + linux_eeprom_file, 'rb') as fplinux:
> -            linux_bytes = fplinux.read()
> -            linux_length = len(linux_bytes)
> -
> -        self.verify(dpdk_length <= linux_length,
> -                    "linux ethtool haven't dump out enough data as dpdk ethtool")
> -
> -        with open( basePath + linux_eeprom_file, 'wb') as fplinux:
> -            fplinux.write(linux_bytes[:dpdk_length])
> -
>      def strip_md5(self, filename):
>          md5_info = self.dut.send_expect("md5sum %s" % filename, "# ")
>          md5_pattern = r"(\w+)  (\w+)"
> @@ -153,25 +137,123 @@ class TestUserspaceEthtool(TestCase, IxiaPacketGenerator):
>          else:
>              return ""
> 
> +    def dpdk_get_nic_info(self, dpdk_driver_msg):
> +        # get nic driver information using dpdk's ethtool
> +        info_lines = dpdk_driver_msg.strip().splitlines()
> +        driver_pattern = r"Port (\d+) driver: (.*) \(ver: (.*)\)"
> +        pattern = "(.*): (.*)"
> +        firmwarePat = "0x([0-9a-f]+)"
> +        check_content = ['firmware-version', 'driver']
> +        nic_infos = {}
> +        port = None
> +        cnt = 0
> +        while cnt < len(info_lines):
> +            if not info_lines[cnt]:
> +                pass
> +            else:
> +                m = re.match(driver_pattern, info_lines[cnt])
> +                if m:
> +                    port = m.group(1)
> +                    nic_infos[port] = {}
> +                    nic_infos[port]['driver'] = m.group(2).split('_').pop()
> +                    dpdk_version = m.group(3)
> +                else:
> +                    if port:
> +                        out = re.findall(pattern, info_lines[cnt], re.M)[0]
> +                        if len(out) == 2:
> +                            if out[0] == 'firmware-version':
> +                                nic_infos[port][out[0]] = "0x" + re.findall(firmwarePat, out[1], re.M)[0]
> +                            else:
> +                                nic_infos[port][out[0]] = out[1]
> +            cnt += 1
> +        # check driver content
> +        status = []
> +        for port_no in nic_infos:
> +            nic_info = nic_infos[port_no]
> +            for item in check_content:
> +                if item not in nic_info.keys():
> +                    status.append("port {0} get {1} failed".format(port_no, item))
> +                    break
> +        # if there is error in status, clear nic_infos
> +        if status:
> +            msg = os.linesep.join(status)
> +            nic_infos = None
> +        else:
> +            msg = ''
> +
> +        return nic_infos, msg
> +
> +    def linux_get_nic_info(self, port_name):
> +        # get nic driver information using linux's ethtool
> +        pattern = "(.*): (.*)"
> +        firmwarePat = "0x([0-9a-f]+)"
> +        infos = self.dut.send_expect("ethtool -i %s"%port_name, "# ").splitlines()
> +        sys_nic_info = {}
> +        for info in infos:
> +            if not info:
> +                continue
> +            result = re.findall(pattern, info, re.M)
> +            if not result:
> +                continue
> +            out = result[0]
> +            if len(out) == 2:
> +                if out[0] == 'firmware-version':
> +                    sys_nic_info[out[0]] = "0x" + re.findall(firmwarePat, out[1], re.M)[0]
> +                else:
> +                    sys_nic_info[out[0]] = out[1]
> +        return sys_nic_info
> +
> +    def check_driver_info(self, port_name, sys_nic_info, dpdk_drv_info):
> +        # compare dpdk query nic information with linux query nic information
> +        for item, value in dpdk_drv_info.items():
> +            if item not in sys_nic_info.keys():
> +                msg = "linux ethtool failed to dump driver info"
> +                status = False
> +                break
> +            if value != sys_nic_info[item]:
> +                msg = "Userspace ethtool failed to dump driver info"
> +                status = False
> +                break
> +        else:
> +            msg = "{0}: dpdk ethtool dump nic information done".format(port_name)
> +            status = True
> +
> +        return status, msg
> +
>      def test_dump_driver_info(self):
>          """
>          Test ethtool can dump basic information
>          """
>          self.dut.send_expect(self.cmd, "EthApp>", 60)
> -        out = self.dut.send_expect("drvinfo", "EthApp>")
> -        driver_pattern = r"Port (\d+) driver: rte_(.*)_pmd \(ver: RTE (.*)\)"
> -        driver_infos = out.split("\r\n")
> -        self.verify(len(driver_infos) > 1, "Userspace tool failed to dump driver infor")
> -
> -        # check dump driver info function
> -        for driver_info in driver_infos:
> -            m = re.match(driver_pattern, driver_info)
> -            if m:
> -                port = m.group(1)
> -                driver = m.group(2)
> -                version = m.group(3)
> -                print utils.GREEN("Detect port %s with %s driver\n" % (port, driver))
> +        dpdk_driver_msg = self.dut.send_expect("drvinfo", "EthApp>")
> +        self.dut.send_expect("quit", "# ")
> +        dpdk_nic_infos, msg = self.dpdk_get_nic_info(dpdk_driver_msg)
> +        self.verify(dpdk_nic_infos, msg)
> +
> +        portsinfo = {}
> +        for index in range(len(self.ports)):
> +            portsinfo[index] = {}
> +            portinfo = portsinfo[index]
> +            port = self.ports[index]
> +            netdev = self.dut.ports_info[port]['port']
> +            # strip orignal driver
> +            portinfo['ori_driver'] = netdev.get_nic_driver()
> +            portinfo['net_dev'] = netdev
> +            # bind to default driver
> +            netdev.bind_driver()
> +            # get linux interface
> +            intf_name = netdev.get_interface_name()
> +            sys_nic_info = self.linux_get_nic_info(intf_name)
> +            status, msg = self.check_driver_info(intf_name, sys_nic_info, dpdk_nic_infos[str(index)])
> +            self.logger.info(msg)
> +            self.verify(status, msg)
> 
> +        for index in range(len(self.ports)):
> +            # bind to original driver
> +            portinfo = portsinfo[index]
> +            portinfo['net_dev'].bind_driver(portinfo['ori_driver'])
> +
> +        self.dut.send_expect(self.cmd, "EthApp>", 60)
>          # ethtool doesn't support port disconnect by tools of linux
>          # only detect physical link disconnect status
>          if self.nic.startswith("fortville") == False:
> @@ -294,7 +376,6 @@ class TestUserspaceEthtool(TestCase, IxiaPacketGenerator):
> 
>          for index in range(len(self.ports)):
>              md5 = self.strip_md5(portsinfo[index]['eeprom_file'])
> -            self.resize_linux_eeprom_file( portsinfo[index]['eeprom_file'], portsinfo[index]['ethtool_eeprom'])
>              md5_ref = self.strip_md5(portsinfo[index]['ethtool_eeprom'])
>              print utils.GREEN("Reference eeprom md5 %s" % md5)
>              print utils.GREEN("Reference eeprom md5_ref %s" % md5_ref)
> --
> 1.9.3

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

* Re: [dts] [PATCH V2 0/2] userspace_ethtool: update automation testing script/test plan
  2017-01-16  8:13 [dts] [PATCH V2 0/2] userspace_ethtool: update automation testing script/test plan Yufen Mo
  2017-01-16  8:13 ` [dts] [PATCH V2 1/2] userspace_ethtool: update test plan Yufen Mo
  2017-01-16  8:13 ` [dts] [PATCH V2 2/2] userspace_ethtool: update automation testing script Yufen Mo
@ 2017-01-16  8:21 ` Mo, YufengX
  2 siblings, 0 replies; 8+ messages in thread
From: Mo, YufengX @ 2017-01-16  8:21 UTC (permalink / raw)
  To: Liu, Yong; +Cc: dts

ignore this mail. Use to test mail account

> -----Original Message-----
> From: Mo, YufengX
> Sent: January 16, 2017 4:13 PM
> To: dts@dpdk.org
> Cc: Mo, YufengX
> Subject: [dts][PATCH V2 0/2] userspace_ethtool: update automation testing script/test plan
> 
> From: yufengmx <yufengx.mo@intel.com>
> 
> *.add nic's firmware/bus-info information query checking, which is corresponding with Qiming Yang's patchset 18597-18600 patchset
> 18601
> 
> yufengmx (2):
>   userspace_ethtool: update test plan.
>   userspace_ethtool: update automation testing script.
> 
>  test_plans/userspace_ethtool_test_plan.rst |   8 +-
>  tests/TestSuite_userspace_ethtool.py       | 141 +++++++++++++++++++++++------
>  2 files changed, 117 insertions(+), 32 deletions(-)
> 
> --
> 1.9.3

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

* Re: [dts] [PATCH V2 1/2] userspace_ethtool: update test plan.
  2017-01-16  8:13 ` [dts] [PATCH V2 1/2] userspace_ethtool: update test plan Yufen Mo
@ 2017-01-16  8:21   ` Mo, YufengX
  0 siblings, 0 replies; 8+ messages in thread
From: Mo, YufengX @ 2017-01-16  8:21 UTC (permalink / raw)
  To: Liu, Yong; +Cc: dts

ignore this mail. Use to test mail account

> -----Original Message-----
> From: Mo, YufengX
> Sent: January 16, 2017 4:13 PM
> To: dts@dpdk.org
> Cc: Mo, YufengX
> Subject: [dts][PATCH V2 1/2] userspace_ethtool: update test plan.
> 
> From: yufengmx <yufengx.mo@intel.com>
> 
> 
> *. add nic's firmware/bus-info information query checking
> 
> Signed-off-by: yufengmx <yufengx.mo@intel.com>
> ---
>  test_plans/userspace_ethtool_test_plan.rst | 8 ++++++--
>  1 file changed, 6 insertions(+), 2 deletions(-)
> 
> diff --git a/test_plans/userspace_ethtool_test_plan.rst b/test_plans/userspace_ethtool_test_plan.rst
> index 83e7fac..498cc38 100644
> --- a/test_plans/userspace_ethtool_test_plan.rst
> +++ b/test_plans/userspace_ethtool_test_plan.rst
> @@ -65,8 +65,12 @@ dumped information, which are dumped separately by dpdk's ethtool and
>  linux's ethtool, were exactly the same.
> 
>  	EthApp> drvinfo
> -	Port 0 driver: rte_ixgbe_pmd (ver: RTE 2.1.0)
> -	Port 1 driver: rte_ixgbe_pmd (ver: RTE 2.1.0)
> +    Port 0 driver: net_ixgbe (ver: DPDK 17.02.0-rc0)
> +    bus-info: 0000:84:00.0
> +    firmware-version: 0x61bf0001
> +    Port 1 driver: net_ixgbe (ver: DPDK 17.02.0-rc0)
> +    bus-info: 0000:84:00.1
> +    firmware-version: 0x61bf0001
> 
>  Use "link" command to dump all ports link status.
>  Notice:: On FVL, link detect need a physical link disconnect.
> --
> 1.9.3

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

* Re: [dts] [PATCH V2 1/2] userspace_ethtool: update test plan.
  2017-01-16  8:29 ` [dts] [PATCH V2 1/2] userspace_ethtool: update test plan yufengx.mo
@ 2017-01-16  8:52   ` Mo, YufengX
  0 siblings, 0 replies; 8+ messages in thread
From: Mo, YufengX @ 2017-01-16  8:52 UTC (permalink / raw)
  To: Liu, Yong; +Cc: dts

ignore this mail.  

> -----Original Message-----
> From: Mo, YufengX
> Sent: January 16, 2017 4:30 PM
> To: dts@dpdk.org
> Cc: Mo, YufengX
> Subject: [dts][PATCH V2 1/2] userspace_ethtool: update test plan.
> 
> From: yufengmx <yufengx.mo@intel.com>
> 
> 
> *. add nic's firmware/bus-info information query checking
> 
> Signed-off-by: yufengmx <yufengx.mo@intel.com>
> ---
>  test_plans/userspace_ethtool_test_plan.rst | 8 ++++++--
>  1 file changed, 6 insertions(+), 2 deletions(-)
> 
> diff --git a/test_plans/userspace_ethtool_test_plan.rst b/test_plans/userspace_ethtool_test_plan.rst
> index 83e7fac..498cc38 100644
> --- a/test_plans/userspace_ethtool_test_plan.rst
> +++ b/test_plans/userspace_ethtool_test_plan.rst
> @@ -65,8 +65,12 @@ dumped information, which are dumped separately by dpdk's ethtool and
>  linux's ethtool, were exactly the same.
> 
>  	EthApp> drvinfo
> -	Port 0 driver: rte_ixgbe_pmd (ver: RTE 2.1.0)
> -	Port 1 driver: rte_ixgbe_pmd (ver: RTE 2.1.0)
> +    Port 0 driver: net_ixgbe (ver: DPDK 17.02.0-rc0)
> +    bus-info: 0000:84:00.0
> +    firmware-version: 0x61bf0001
> +    Port 1 driver: net_ixgbe (ver: DPDK 17.02.0-rc0)
> +    bus-info: 0000:84:00.1
> +    firmware-version: 0x61bf0001
> 
>  Use "link" command to dump all ports link status.
>  Notice:: On FVL, link detect need a physical link disconnect.
> --
> 1.9.3

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

* [dts] [PATCH V2 1/2] userspace_ethtool: update test plan.
  2017-01-16  8:29 yufengx.mo
@ 2017-01-16  8:29 ` yufengx.mo
  2017-01-16  8:52   ` Mo, YufengX
  0 siblings, 1 reply; 8+ messages in thread
From: yufengx.mo @ 2017-01-16  8:29 UTC (permalink / raw)
  To: dts; +Cc: yufengmx

From: yufengmx <yufengx.mo@intel.com>


*. add nic's firmware/bus-info information query checking

Signed-off-by: yufengmx <yufengx.mo@intel.com>
---
 test_plans/userspace_ethtool_test_plan.rst | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/test_plans/userspace_ethtool_test_plan.rst b/test_plans/userspace_ethtool_test_plan.rst
index 83e7fac..498cc38 100644
--- a/test_plans/userspace_ethtool_test_plan.rst
+++ b/test_plans/userspace_ethtool_test_plan.rst
@@ -65,8 +65,12 @@ dumped information, which are dumped separately by dpdk's ethtool and
 linux's ethtool, were exactly the same.
 
 	EthApp> drvinfo
-	Port 0 driver: rte_ixgbe_pmd (ver: RTE 2.1.0)
-	Port 1 driver: rte_ixgbe_pmd (ver: RTE 2.1.0)
+    Port 0 driver: net_ixgbe (ver: DPDK 17.02.0-rc0)
+    bus-info: 0000:84:00.0
+    firmware-version: 0x61bf0001
+    Port 1 driver: net_ixgbe (ver: DPDK 17.02.0-rc0)
+    bus-info: 0000:84:00.1
+    firmware-version: 0x61bf0001
 
 Use "link" command to dump all ports link status.
 Notice:: On FVL, link detect need a physical link disconnect.
-- 
1.9.3

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

end of thread, other threads:[~2017-01-16  8:52 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-01-16  8:13 [dts] [PATCH V2 0/2] userspace_ethtool: update automation testing script/test plan Yufen Mo
2017-01-16  8:13 ` [dts] [PATCH V2 1/2] userspace_ethtool: update test plan Yufen Mo
2017-01-16  8:21   ` Mo, YufengX
2017-01-16  8:13 ` [dts] [PATCH V2 2/2] userspace_ethtool: update automation testing script Yufen Mo
2017-01-16  8:20   ` Mo, YufengX
2017-01-16  8:21 ` [dts] [PATCH V2 0/2] userspace_ethtool: update automation testing script/test plan Mo, YufengX
2017-01-16  8:29 yufengx.mo
2017-01-16  8:29 ` [dts] [PATCH V2 1/2] userspace_ethtool: update test plan yufengx.mo
2017-01-16  8:52   ` Mo, YufengX

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).