test suite reviews and discussions
 help / color / mirror / Atom feed
* [dts] [PATCH V1 0/4] add parameter interrupt-only for l3fwd-power
@ 2020-07-15  8:09 Xiao Qimai
  2020-07-15  8:09 ` [dts] [PATCH V1 1/4]tests/TestSuite_vhost_enqueue_interrupt: " Xiao Qimai
                   ` (6 more replies)
  0 siblings, 7 replies; 8+ messages in thread
From: Xiao Qimai @ 2020-07-15  8:09 UTC (permalink / raw)
  To: dts; +Cc: Xiao Qimai

launch l3fwd-power with interrupt-only mode

Xiao Qimai (4):
  add parameter interrupt-only for l3fwd-power
  add parameter interrupt-only for l3fwd-power
  add parameter interrupt-only for l3fwd-power
  add parameter interrupt-only for l3fwd-power

 tests/TestSuite_vhost_enqueue_interrupt.py     | 2 +-
 tests/TestSuite_vhost_event_idx_interrupt.py   | 2 +-
 tests/TestSuite_vhost_virtio_pmd_interrupt.py  | 2 +-
 tests/TestSuite_vhost_virtio_user_interrupt.py | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

-- 
1.8.3.1


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

* [dts] [PATCH V1 1/4]tests/TestSuite_vhost_enqueue_interrupt: add parameter interrupt-only for l3fwd-power
  2020-07-15  8:09 [dts] [PATCH V1 0/4] add parameter interrupt-only for l3fwd-power Xiao Qimai
@ 2020-07-15  8:09 ` Xiao Qimai
  2020-07-15  8:09 ` [dts] [PATCH V1 2/4]tests/TestSuite_vhost_event_idx_interrupt: " Xiao Qimai
                   ` (5 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: Xiao Qimai @ 2020-07-15  8:09 UTC (permalink / raw)
  To: dts; +Cc: Xiao Qimai

Signed-off-by: Xiao Qimai <qimaix.xiao@intel.com>
---
 tests/TestSuite_vhost_enqueue_interrupt.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/TestSuite_vhost_enqueue_interrupt.py b/tests/TestSuite_vhost_enqueue_interrupt.py
index 7c6368a..9d3f5bc 100644
--- a/tests/TestSuite_vhost_enqueue_interrupt.py
+++ b/tests/TestSuite_vhost_enqueue_interrupt.py
@@ -110,7 +110,7 @@ class TestVhostEnqueueInterrupt(TestCase):
 
         example_cmd = "./examples/l3fwd-power/build/l3fwd-power "
         vdev = 'net_vhost0,iface=vhost-net,queues=%d,client=1' % self.queues
-        para = " -- -p 0x1 --parse-ptype 1 --config '%s' " % config_info
+        para = " -- -p 0x1 --parse-ptype 1 --config '%s' --interrupt-only" % config_info
         eal_params = self.dut.create_eal_parameters(cores=self.core_list_l3fwd, no_pci=True, ports=[self.pci_info], vdevs=[vdev])
         command_line_client = example_cmd + eal_params + para
         self.vhost.get_session_before(timeout=2)
-- 
1.8.3.1


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

* [dts] [PATCH V1 2/4]tests/TestSuite_vhost_event_idx_interrupt: add parameter interrupt-only for l3fwd-power
  2020-07-15  8:09 [dts] [PATCH V1 0/4] add parameter interrupt-only for l3fwd-power Xiao Qimai
  2020-07-15  8:09 ` [dts] [PATCH V1 1/4]tests/TestSuite_vhost_enqueue_interrupt: " Xiao Qimai
@ 2020-07-15  8:09 ` Xiao Qimai
  2020-07-15  8:09 ` [dts] [PATCH V1 3/4]tests/TestSuite_vhost_virtio_pmd_interrupt: " Xiao Qimai
                   ` (4 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: Xiao Qimai @ 2020-07-15  8:09 UTC (permalink / raw)
  To: dts; +Cc: Xiao Qimai

Signed-off-by: Xiao Qimai <qimaix.xiao@intel.com>
---
 tests/TestSuite_vhost_event_idx_interrupt.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/TestSuite_vhost_event_idx_interrupt.py b/tests/TestSuite_vhost_event_idx_interrupt.py
index d6b0b3d..4bb40c7 100644
--- a/tests/TestSuite_vhost_event_idx_interrupt.py
+++ b/tests/TestSuite_vhost_event_idx_interrupt.py
@@ -107,7 +107,7 @@ class TestVhostEventIdxInterrupt(TestCase):
         port_info = "0x1" if self.vm_num == 1 else "0x3"
 
         example_para = "./examples/l3fwd-power/build/l3fwd-power "
-        para = " --log-level=9 %s -- -p %s --parse-ptype 1 --config '%s'" % (vdev_info, port_info, config_info)
+        para = " --log-level=9 %s -- -p %s --parse-ptype 1 --config '%s' --interrupt-only" % (vdev_info, port_info, config_info)
         eal_params = self.dut.create_eal_parameters(cores=self.core_list_l3fwd, no_pci=True)
         command_line_client = example_para + eal_params + para
         self.vhost.get_session_before(timeout=2)
-- 
1.8.3.1


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

* [dts] [PATCH V1 3/4]tests/TestSuite_vhost_virtio_pmd_interrupt: add parameter interrupt-only for l3fwd-power
  2020-07-15  8:09 [dts] [PATCH V1 0/4] add parameter interrupt-only for l3fwd-power Xiao Qimai
  2020-07-15  8:09 ` [dts] [PATCH V1 1/4]tests/TestSuite_vhost_enqueue_interrupt: " Xiao Qimai
  2020-07-15  8:09 ` [dts] [PATCH V1 2/4]tests/TestSuite_vhost_event_idx_interrupt: " Xiao Qimai
@ 2020-07-15  8:09 ` Xiao Qimai
  2020-07-15  8:09 ` [dts] [PATCH V1 4/4]tests/TestSuite_vhost_virtio_user_interrupt: " Xiao Qimai
                   ` (3 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: Xiao Qimai @ 2020-07-15  8:09 UTC (permalink / raw)
  To: dts; +Cc: Xiao Qimai

Signed-off-by: Xiao Qimai <qimaix.xiao@intel.com>
---
 tests/TestSuite_vhost_virtio_pmd_interrupt.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/TestSuite_vhost_virtio_pmd_interrupt.py b/tests/TestSuite_vhost_virtio_pmd_interrupt.py
index bf50b07..99ee657 100644
--- a/tests/TestSuite_vhost_virtio_pmd_interrupt.py
+++ b/tests/TestSuite_vhost_virtio_pmd_interrupt.py
@@ -146,7 +146,7 @@ class TestVhostVirtioPmdInterrupt(TestCase):
 
         command_client = "./examples/l3fwd-power/build/l3fwd-power " + \
                          "-c %s -n 4 --log-level='user1,7' -- -p 1 -P " + \
-                         "--config '%s' --no-numa  --parse-ptype "
+                         "--config '%s' --no-numa  --parse-ptype --interrupt-only"
         command_line_client = command_client % (core_mask_l3fwd, config_info)
         self.vm_dut.get_session_output(timeout=2)
         self.vm_dut.send_expect(command_line_client, "POWER", 40)
-- 
1.8.3.1


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

* [dts] [PATCH V1 4/4]tests/TestSuite_vhost_virtio_user_interrupt: add parameter interrupt-only for l3fwd-power
  2020-07-15  8:09 [dts] [PATCH V1 0/4] add parameter interrupt-only for l3fwd-power Xiao Qimai
                   ` (2 preceding siblings ...)
  2020-07-15  8:09 ` [dts] [PATCH V1 3/4]tests/TestSuite_vhost_virtio_pmd_interrupt: " Xiao Qimai
@ 2020-07-15  8:09 ` Xiao Qimai
  2020-07-15  8:20 ` [dts] [PATCH V1 0/4] " Xiao, QimaiX
                   ` (2 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: Xiao Qimai @ 2020-07-15  8:09 UTC (permalink / raw)
  To: dts; +Cc: Xiao Qimai

Signed-off-by: Xiao Qimai <qimaix.xiao@intel.com>
---
 tests/TestSuite_vhost_virtio_user_interrupt.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/TestSuite_vhost_virtio_user_interrupt.py b/tests/TestSuite_vhost_virtio_user_interrupt.py
index 59b9b2f..2f430d8 100644
--- a/tests/TestSuite_vhost_virtio_user_interrupt.py
+++ b/tests/TestSuite_vhost_virtio_user_interrupt.py
@@ -94,7 +94,7 @@ class TestVirtioUserInterrupt(TestCase):
         example_para = "./examples/l3fwd-power/build/l3fwd-power "
         vdev = "virtio_user0,path=%s,cq=1" % path if not packed else "virtio_user0,path=%s,cq=1,packed_vq=1" % path
         eal_params = self.dut.create_eal_parameters(cores=self.core_list_l3fwd, prefix='l3fwd-pwd', no_pci=True, ports=[self.pci_info], vdevs=[vdev])
-        para = " --config='(0,0,%s)' --parse-ptype" % self.core_interrupt
+        para = " --config='(0,0,%s)' --parse-ptype --interrupt-only" % self.core_interrupt
         cmd_l3fwd = example_para + eal_params + " --log-level='user1,7' -- -p 1 " + para
         self.l3fwd.get_session_before(timeout=2)
         self.l3fwd.send_expect(cmd_l3fwd, "POWER", 40)
-- 
1.8.3.1


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

* Re: [dts] [PATCH V1 0/4] add parameter interrupt-only for l3fwd-power
  2020-07-15  8:09 [dts] [PATCH V1 0/4] add parameter interrupt-only for l3fwd-power Xiao Qimai
                   ` (3 preceding siblings ...)
  2020-07-15  8:09 ` [dts] [PATCH V1 4/4]tests/TestSuite_vhost_virtio_user_interrupt: " Xiao Qimai
@ 2020-07-15  8:20 ` Xiao, QimaiX
  2020-07-15 14:58 ` Wang, Yinan
  2020-07-24  1:45 ` Tu, Lijuan
  6 siblings, 0 replies; 8+ messages in thread
From: Xiao, QimaiX @ 2020-07-15  8:20 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: Wednesday, July 15, 2020 4:09 PM
> To: dts@dpdk.org
> Cc: Xiao, QimaiX <qimaix.xiao@intel.com>
> Subject: [dts][PATCH V1 0/4] add parameter interrupt-only for l3fwd-power
> 
> launch l3fwd-power with interrupt-only mode
> 
> Xiao Qimai (4):
>   add parameter interrupt-only for l3fwd-power
>   add parameter interrupt-only for l3fwd-power
>   add parameter interrupt-only for l3fwd-power
>   add parameter interrupt-only for l3fwd-power
> 
>  tests/TestSuite_vhost_enqueue_interrupt.py     | 2 +-
>  tests/TestSuite_vhost_event_idx_interrupt.py   | 2 +-
>  tests/TestSuite_vhost_virtio_pmd_interrupt.py  | 2 +-
> tests/TestSuite_vhost_virtio_user_interrupt.py | 2 +-
>  4 files changed, 4 insertions(+), 4 deletions(-)
> 
> --
> 1.8.3.1


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

* Re: [dts] [PATCH V1 0/4] add parameter interrupt-only for l3fwd-power
  2020-07-15  8:09 [dts] [PATCH V1 0/4] add parameter interrupt-only for l3fwd-power Xiao Qimai
                   ` (4 preceding siblings ...)
  2020-07-15  8:20 ` [dts] [PATCH V1 0/4] " Xiao, QimaiX
@ 2020-07-15 14:58 ` Wang, Yinan
  2020-07-24  1:45 ` Tu, Lijuan
  6 siblings, 0 replies; 8+ messages in thread
From: Wang, Yinan @ 2020-07-15 14:58 UTC (permalink / raw)
  To: Xiao, QimaiX, dts; +Cc: Xiao, QimaiX

Acked-by: Wang, Yinan <yinan.wang@intel.com>

> -----Original Message-----
> From: dts <dts-bounces@dpdk.org> On Behalf Of Xiao Qimai
> Sent: 2020?7?15? 16:09
> To: dts@dpdk.org
> Cc: Xiao, QimaiX <qimaix.xiao@intel.com>
> Subject: [dts] [PATCH V1 0/4] add parameter interrupt-only for l3fwd-power
> 
> launch l3fwd-power with interrupt-only mode
> 
> Xiao Qimai (4):
>   add parameter interrupt-only for l3fwd-power
>   add parameter interrupt-only for l3fwd-power
>   add parameter interrupt-only for l3fwd-power
>   add parameter interrupt-only for l3fwd-power
> 
>  tests/TestSuite_vhost_enqueue_interrupt.py     | 2 +-
>  tests/TestSuite_vhost_event_idx_interrupt.py   | 2 +-
>  tests/TestSuite_vhost_virtio_pmd_interrupt.py  | 2 +-
>  tests/TestSuite_vhost_virtio_user_interrupt.py | 2 +-
>  4 files changed, 4 insertions(+), 4 deletions(-)
> 
> --
> 1.8.3.1


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

* Re: [dts] [PATCH V1 0/4] add parameter interrupt-only for l3fwd-power
  2020-07-15  8:09 [dts] [PATCH V1 0/4] add parameter interrupt-only for l3fwd-power Xiao Qimai
                   ` (5 preceding siblings ...)
  2020-07-15 14:58 ` Wang, Yinan
@ 2020-07-24  1:45 ` Tu, Lijuan
  6 siblings, 0 replies; 8+ messages in thread
From: Tu, Lijuan @ 2020-07-24  1:45 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年7月15日 16:09
> To: dts@dpdk.org
> Cc: Xiao, QimaiX <qimaix.xiao@intel.com>
> Subject: [dts] [PATCH V1 0/4] add parameter interrupt-only for l3fwd-power
> 
> launch l3fwd-power with interrupt-only mode
> 
> Xiao Qimai (4):
>   add parameter interrupt-only for l3fwd-power
>   add parameter interrupt-only for l3fwd-power
>   add parameter interrupt-only for l3fwd-power
>   add parameter interrupt-only for l3fwd-power
> 
>  tests/TestSuite_vhost_enqueue_interrupt.py     | 2 +-
>  tests/TestSuite_vhost_event_idx_interrupt.py   | 2 +-
>  tests/TestSuite_vhost_virtio_pmd_interrupt.py  | 2 +-
> tests/TestSuite_vhost_virtio_user_interrupt.py | 2 +-
>  4 files changed, 4 insertions(+), 4 deletions(-)
> 
> --
> 1.8.3.1


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

end of thread, other threads:[~2020-07-24  1:45 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-07-15  8:09 [dts] [PATCH V1 0/4] add parameter interrupt-only for l3fwd-power Xiao Qimai
2020-07-15  8:09 ` [dts] [PATCH V1 1/4]tests/TestSuite_vhost_enqueue_interrupt: " Xiao Qimai
2020-07-15  8:09 ` [dts] [PATCH V1 2/4]tests/TestSuite_vhost_event_idx_interrupt: " Xiao Qimai
2020-07-15  8:09 ` [dts] [PATCH V1 3/4]tests/TestSuite_vhost_virtio_pmd_interrupt: " Xiao Qimai
2020-07-15  8:09 ` [dts] [PATCH V1 4/4]tests/TestSuite_vhost_virtio_user_interrupt: " Xiao Qimai
2020-07-15  8:20 ` [dts] [PATCH V1 0/4] " Xiao, QimaiX
2020-07-15 14:58 ` Wang, Yinan
2020-07-24  1:45 ` 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).