* [dts] [PATCH V1 1/3]perf_vm2vm_virtio_net_perf: fix typo
2020-06-29 1:58 [dts] [PATCH V1 0/3] fix typo Xiao Qimai
@ 2020-06-29 1:58 ` Xiao Qimai
2020-06-29 1:58 ` [dts] [PATCH V1 2/3]virtio_pvp_regression: " Xiao Qimai
` (3 subsequent siblings)
4 siblings, 0 replies; 6+ messages in thread
From: Xiao Qimai @ 2020-06-29 1:58 UTC (permalink / raw)
To: dts; +Cc: Xiao Qimai
Signed-off-by: Xiao Qimai <qimaix.xiao@intel.com>
---
tests/TestSuite_perf_vm2vm_virtio_net_perf.py | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/tests/TestSuite_perf_vm2vm_virtio_net_perf.py b/tests/TestSuite_perf_vm2vm_virtio_net_perf.py
index 532cdf7..cd57006 100644
--- a/tests/TestSuite_perf_vm2vm_virtio_net_perf.py
+++ b/tests/TestSuite_perf_vm2vm_virtio_net_perf.py
@@ -62,8 +62,8 @@ class TestPerfVM2VMVirtioNetPerf(TestCase):
self.vm_num = 2
self.virtio_ip1 = "1.1.1.2"
self.virtio_ip2 = "1.1.1.3"
- self.vritio_mac1 = "52:54:00:00:00:01"
- self.vritio_mac2 = "52:54:00:00:00:02"
+ self.virtio_mac1 = "52:54:00:00:00:01"
+ self.virtio_mac2 = "52:54:00:00:00:02"
self.base_dir = self.dut.base_dir.replace('~', '/root')
self.random_string = string.ascii_letters + string.digits
socket_num = len(set([int(core['socket']) for core in self.dut.cores]))
@@ -212,8 +212,8 @@ class TestPerfVM2VMVirtioNetPerf(TestCase):
vm2_intf = self.vm_dut[1].ports_info[0]['intf']
self.vm_dut[0].send_expect("ifconfig %s %s" % (vm1_intf, self.virtio_ip1), "#", 10)
self.vm_dut[1].send_expect("ifconfig %s %s" % (vm2_intf, self.virtio_ip2), "#", 10)
- self.vm_dut[0].send_expect("arp -s %s %s" % (self.virtio_ip2, self.vritio_mac2), "#", 10)
- self.vm_dut[1].send_expect("arp -s %s %s" % (self.virtio_ip1, self.vritio_mac1), "#", 10)
+ self.vm_dut[0].send_expect("arp -s %s %s" % (self.virtio_ip2, self.virtio_mac2), "#", 10)
+ self.vm_dut[1].send_expect("arp -s %s %s" % (self.virtio_ip1, self.virtio_mac1), "#", 10)
def prepare_test_env(self, zerocopy, path_mode, packed_mode=False):
"""
--
1.8.3.1
^ permalink raw reply [flat|nested] 6+ messages in thread
* [dts] [PATCH V1 2/3]virtio_pvp_regression: fix typo
2020-06-29 1:58 [dts] [PATCH V1 0/3] fix typo Xiao Qimai
2020-06-29 1:58 ` [dts] [PATCH V1 1/3]perf_vm2vm_virtio_net_perf: " Xiao Qimai
@ 2020-06-29 1:58 ` Xiao Qimai
2020-06-29 1:58 ` [dts] [PATCH V1 3/3]vm2vm_virtio_net_perf: " Xiao Qimai
` (2 subsequent siblings)
4 siblings, 0 replies; 6+ messages in thread
From: Xiao Qimai @ 2020-06-29 1:58 UTC (permalink / raw)
To: dts; +Cc: Xiao Qimai
Signed-off-by: Xiao Qimai <qimaix.xiao@intel.com>
---
tests/TestSuite_virtio_pvp_regression.py | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/tests/TestSuite_virtio_pvp_regression.py b/tests/TestSuite_virtio_pvp_regression.py
index d9e0d30..225fc35 100644
--- a/tests/TestSuite_virtio_pvp_regression.py
+++ b/tests/TestSuite_virtio_pvp_regression.py
@@ -259,7 +259,7 @@ class TestVirtioPVPRegression(TestCase):
self.vhost.send_expect("set fwd mac", "testpmd> ", 30)
self.vhost.send_expect("start", "testpmd> ", 30)
- def start_testpmd_in_vm(self, vritio_path):
+ def start_testpmd_in_vm(self, virtio_path):
"""
Start testpmd in vm
"""
@@ -268,7 +268,7 @@ class TestVirtioPVPRegression(TestCase):
'please config it in %s.cfg' % self.suite_name)
if self.vm_dut is not None:
opt_args = ''
- if vritio_path in ['mergeable', 'normal']:
+ if virtio_path in ['mergeable', 'normal']:
opt_args = '--enable-hw-vlan-strip'
vm_testpmd = self.dut.target + "/app/testpmd -c 0x7 -n 4 " \
"-- -i %s --nb-cores=%s " \
--
1.8.3.1
^ permalink raw reply [flat|nested] 6+ messages in thread
* [dts] [PATCH V1 3/3]vm2vm_virtio_net_perf: fix typo
2020-06-29 1:58 [dts] [PATCH V1 0/3] fix typo Xiao Qimai
2020-06-29 1:58 ` [dts] [PATCH V1 1/3]perf_vm2vm_virtio_net_perf: " Xiao Qimai
2020-06-29 1:58 ` [dts] [PATCH V1 2/3]virtio_pvp_regression: " Xiao Qimai
@ 2020-06-29 1:58 ` Xiao Qimai
2020-06-29 2:07 ` [dts] [PATCH V1 0/3] " Xiao, QimaiX
2020-07-01 6:03 ` Tu, Lijuan
4 siblings, 0 replies; 6+ messages in thread
From: Xiao Qimai @ 2020-06-29 1:58 UTC (permalink / raw)
To: dts; +Cc: Xiao Qimai
Signed-off-by: Xiao Qimai <qimaix.xiao@intel.com>
---
tests/TestSuite_vm2vm_virtio_net_perf.py | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/tests/TestSuite_vm2vm_virtio_net_perf.py b/tests/TestSuite_vm2vm_virtio_net_perf.py
index 7dec7b5..123685f 100644
--- a/tests/TestSuite_vm2vm_virtio_net_perf.py
+++ b/tests/TestSuite_vm2vm_virtio_net_perf.py
@@ -57,8 +57,8 @@ class TestVM2VMVirtioNetPerf(TestCase):
self.vm_num = 2
self.virtio_ip1 = "1.1.1.2"
self.virtio_ip2 = "1.1.1.3"
- self.vritio_mac1 = "52:54:00:00:00:01"
- self.vritio_mac2 = "52:54:00:00:00:02"
+ self.virtio_mac1 = "52:54:00:00:00:01"
+ self.virtio_mac2 = "52:54:00:00:00:02"
self.base_dir = self.dut.base_dir.replace('~', '/root')
self.random_string = string.ascii_letters + string.digits
socket_num = len(set([int(core['socket']) for core in self.dut.cores]))
@@ -137,8 +137,8 @@ class TestVM2VMVirtioNetPerf(TestCase):
vm2_intf = self.vm_dut[1].ports_info[0]['intf']
self.vm_dut[0].send_expect("ifconfig %s %s" % (vm1_intf, self.virtio_ip1), "#", 10)
self.vm_dut[1].send_expect("ifconfig %s %s" % (vm2_intf, self.virtio_ip2), "#", 10)
- self.vm_dut[0].send_expect("arp -s %s %s" % (self.virtio_ip2, self.vritio_mac2), "#", 10)
- self.vm_dut[1].send_expect("arp -s %s %s" % (self.virtio_ip1, self.vritio_mac1), "#", 10)
+ self.vm_dut[0].send_expect("arp -s %s %s" % (self.virtio_ip2, self.virtio_mac2), "#", 10)
+ self.vm_dut[1].send_expect("arp -s %s %s" % (self.virtio_ip1, self.virtio_mac1), "#", 10)
def prepare_test_env(self, zerocopy, path_mode, packed_mode=False):
"""
--
1.8.3.1
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [dts] [PATCH V1 0/3] fix typo
2020-06-29 1:58 [dts] [PATCH V1 0/3] fix typo Xiao Qimai
` (2 preceding siblings ...)
2020-06-29 1:58 ` [dts] [PATCH V1 3/3]vm2vm_virtio_net_perf: " Xiao Qimai
@ 2020-06-29 2:07 ` Xiao, QimaiX
2020-07-01 6:03 ` Tu, Lijuan
4 siblings, 0 replies; 6+ messages in thread
From: Xiao, QimaiX @ 2020-06-29 2:07 UTC (permalink / raw)
To: dts
Tested-by: Xiao, QimaiX <qimaix.xiao@intel.com>
Regards,
Xiao Qimai
> -----Original Message-----
> From: Xiao, QimaiX <qimaix.xiao@intel.com>
> Sent: Monday, June 29, 2020 9:59 AM
> To: dts@dpdk.org
> Cc: Xiao, QimaiX <qimaix.xiao@intel.com>
> Subject: [dts][PATCH V1 0/3] fix typo
>
> fix typo of virtio
>
> Xiao Qimai (3):
> fix typo
> fix typo
> fix typo
>
> tests/TestSuite_perf_vm2vm_virtio_net_perf.py | 8 ++++----
> tests/TestSuite_virtio_pvp_regression.py | 4 ++--
> tests/TestSuite_vm2vm_virtio_net_perf.py | 8 ++++----
> 3 files changed, 10 insertions(+), 10 deletions(-)
>
> --
> 1.8.3.1
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [dts] [PATCH V1 0/3] fix typo
2020-06-29 1:58 [dts] [PATCH V1 0/3] fix typo Xiao Qimai
` (3 preceding siblings ...)
2020-06-29 2:07 ` [dts] [PATCH V1 0/3] " Xiao, QimaiX
@ 2020-07-01 6:03 ` Tu, Lijuan
4 siblings, 0 replies; 6+ messages in thread
From: Tu, Lijuan @ 2020-07-01 6:03 UTC (permalink / raw)
To: Xiao, QimaiX, dts; +Cc: Xiao, QimaiX
Applied the series, thanks
> -----Original Message-----
> From: dts <dts-bounces@dpdk.org> On Behalf Of Xiao Qimai
> Sent: 2020年6月29日 9:59
> To: dts@dpdk.org
> Cc: Xiao, QimaiX <qimaix.xiao@intel.com>
> Subject: [dts] [PATCH V1 0/3] fix typo
>
> fix typo of virtio
>
> Xiao Qimai (3):
> fix typo
> fix typo
> fix typo
>
> tests/TestSuite_perf_vm2vm_virtio_net_perf.py | 8 ++++----
> tests/TestSuite_virtio_pvp_regression.py | 4 ++--
> tests/TestSuite_vm2vm_virtio_net_perf.py | 8 ++++----
> 3 files changed, 10 insertions(+), 10 deletions(-)
>
> --
> 1.8.3.1
^ permalink raw reply [flat|nested] 6+ messages in thread