test suite reviews and discussions
 help / color / mirror / Atom feed
* Re: [dts] [PATCH V1 2/2] pktgen/ixia: fix ping ipv6 issue
  2020-01-14  6:45 ` [dts] [PATCH V1 2/2] " yufengmx
@ 2020-01-14  6:44   ` Yao, Lei A
  0 siblings, 0 replies; 6+ messages in thread
From: Yao, Lei A @ 2020-01-14  6:44 UTC (permalink / raw)
  To: Mo, YufengX, dts



> -----Original Message-----
> From: Mo, YufengX <yufengx.mo@intel.com>
> Sent: Tuesday, January 14, 2020 2:45 PM
> To: dts@dpdk.org; Yao, Lei A <lei.a.yao@intel.com>
> Cc: Mo, YufengX <yufengx.mo@intel.com>
> Subject: [dts][PATCH V1 2/2] pktgen/ixia: fix ping ipv6 issue
> 
> 
> fix ixia ping ipv6 issue.
> 
> Signed-off-by: yufengmx <yufengx.mo@intel.com>
Acked-by: Lei Yao<lei.a.yao@intel.com>
> ---
>  framework/tester.py | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/framework/tester.py b/framework/tester.py index
> 7b05832..4a3d110 100644
> --- a/framework/tester.py
> +++ b/framework/tester.py
> @@ -509,7 +509,7 @@ class Tester(Crb):
>          """
>          if self.is_pktgen:
>              if self.ports_info[localPort]['type'].lower() in 'ixia':
> -                return self.packet_gen.send_ping6(
> +                return self.pktgen.send_ping6(
>                                  self.ports_info[localPort]['pci'], mac, ipv6)
>              elif self.ports_info[localPort]['type'].lower() == 'trex':
>                  return "Not implemented yet"
> --
> 2.21.0


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

* Re: [dts] [PATCH V1 1/2] pktgen/ixia: fix ping ipv6 issue
  2020-01-14  6:45 ` [dts] [PATCH V1 1/2] " yufengmx
@ 2020-01-14  6:45   ` Yao, Lei A
  0 siblings, 0 replies; 6+ messages in thread
From: Yao, Lei A @ 2020-01-14  6:45 UTC (permalink / raw)
  To: Mo, YufengX, dts



> -----Original Message-----
> From: Mo, YufengX <yufengx.mo@intel.com>
> Sent: Tuesday, January 14, 2020 2:45 PM
> To: dts@dpdk.org; Yao, Lei A <lei.a.yao@intel.com>
> Cc: Mo, YufengX <yufengx.mo@intel.com>
> Subject: [dts][PATCH V1 1/2] pktgen/ixia: fix ping ipv6 issue
> 
> 
> fix ixia ping ipv6 issue.
> 
> Signed-off-by: yufengmx <yufengx.mo@intel.com>
Acked-by: Lei Yao <lei.a.yao@intel.com>
> ---
>  framework/pktgen_ixia.py | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/framework/pktgen_ixia.py b/framework/pktgen_ixia.py index
> 14b5d5b..43ec52c 100644
> --- a/framework/pktgen_ixia.py
> +++ b/framework/pktgen_ixia.py
> @@ -661,7 +661,7 @@ class Ixia(SSHConnection):
>          """
>          Send ping6 packet from IXIA ports.
>          """
> -        port = self.pci_to_port(pci)['card']
> +        port = self.pci_to_port(pci)
>          ixia_port = "%d %d %d" % (self.chasId, port['card'], port['port'])
>          self.send_expect("source ./ixTcl1.0/ixiaPing6.tcl", "% ")
>          cmd = 'ping6 "%s" "%s" %s' % (self.ipv6_to_tcl_format(ipv6),
> --
> 2.21.0


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

* [dts] [PATCH V1 0/2] pktgen/ixia: fix ping ipv6 issue
@ 2020-01-14  6:45 yufengmx
  2020-01-14  6:45 ` [dts] [PATCH V1 1/2] " yufengmx
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: yufengmx @ 2020-01-14  6:45 UTC (permalink / raw)
  To: dts, lei.a.yao; +Cc: yufengmx

 fix ixia ping ipv6 issue. 

yufengmx (2):
  pktgen/ixia: fix ping ipv6 issue
  pktgen/ixia: fix ping ipv6 issue

 framework/pktgen_ixia.py | 2 +-
 framework/tester.py      | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

-- 
2.21.0


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

* [dts] [PATCH V1 1/2] pktgen/ixia: fix ping ipv6 issue
  2020-01-14  6:45 [dts] [PATCH V1 0/2] pktgen/ixia: fix ping ipv6 issue yufengmx
@ 2020-01-14  6:45 ` yufengmx
  2020-01-14  6:45   ` Yao, Lei A
  2020-01-14  6:45 ` [dts] [PATCH V1 2/2] " yufengmx
  2020-01-16  5:52 ` [dts] [PATCH V1 0/2] " Tu, Lijuan
  2 siblings, 1 reply; 6+ messages in thread
From: yufengmx @ 2020-01-14  6:45 UTC (permalink / raw)
  To: dts, lei.a.yao; +Cc: yufengmx


fix ixia ping ipv6 issue.

Signed-off-by: yufengmx <yufengx.mo@intel.com>
---
 framework/pktgen_ixia.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/framework/pktgen_ixia.py b/framework/pktgen_ixia.py
index 14b5d5b..43ec52c 100644
--- a/framework/pktgen_ixia.py
+++ b/framework/pktgen_ixia.py
@@ -661,7 +661,7 @@ class Ixia(SSHConnection):
         """
         Send ping6 packet from IXIA ports.
         """
-        port = self.pci_to_port(pci)['card']
+        port = self.pci_to_port(pci)
         ixia_port = "%d %d %d" % (self.chasId, port['card'], port['port'])
         self.send_expect("source ./ixTcl1.0/ixiaPing6.tcl", "% ")
         cmd = 'ping6 "%s" "%s" %s' % (self.ipv6_to_tcl_format(ipv6),
-- 
2.21.0


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

* [dts] [PATCH V1 2/2] pktgen/ixia: fix ping ipv6 issue
  2020-01-14  6:45 [dts] [PATCH V1 0/2] pktgen/ixia: fix ping ipv6 issue yufengmx
  2020-01-14  6:45 ` [dts] [PATCH V1 1/2] " yufengmx
@ 2020-01-14  6:45 ` yufengmx
  2020-01-14  6:44   ` Yao, Lei A
  2020-01-16  5:52 ` [dts] [PATCH V1 0/2] " Tu, Lijuan
  2 siblings, 1 reply; 6+ messages in thread
From: yufengmx @ 2020-01-14  6:45 UTC (permalink / raw)
  To: dts, lei.a.yao; +Cc: yufengmx


fix ixia ping ipv6 issue.

Signed-off-by: yufengmx <yufengx.mo@intel.com>
---
 framework/tester.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/framework/tester.py b/framework/tester.py
index 7b05832..4a3d110 100644
--- a/framework/tester.py
+++ b/framework/tester.py
@@ -509,7 +509,7 @@ class Tester(Crb):
         """
         if self.is_pktgen:
             if self.ports_info[localPort]['type'].lower() in 'ixia':
-                return self.packet_gen.send_ping6(
+                return self.pktgen.send_ping6(
                                 self.ports_info[localPort]['pci'], mac, ipv6)
             elif self.ports_info[localPort]['type'].lower() == 'trex':
                 return "Not implemented yet"
-- 
2.21.0


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

* Re: [dts] [PATCH V1 0/2] pktgen/ixia: fix ping ipv6 issue
  2020-01-14  6:45 [dts] [PATCH V1 0/2] pktgen/ixia: fix ping ipv6 issue yufengmx
  2020-01-14  6:45 ` [dts] [PATCH V1 1/2] " yufengmx
  2020-01-14  6:45 ` [dts] [PATCH V1 2/2] " yufengmx
@ 2020-01-16  5:52 ` Tu, Lijuan
  2 siblings, 0 replies; 6+ messages in thread
From: Tu, Lijuan @ 2020-01-16  5:52 UTC (permalink / raw)
  To: Mo, YufengX, dts, Yao, Lei A; +Cc: Mo, YufengX

Applied the series

> -----Original Message-----
> From: dts [mailto:dts-bounces@dpdk.org] On Behalf Of yufengmx
> Sent: Tuesday, January 14, 2020 2:45 PM
> To: dts@dpdk.org; Yao, Lei A <lei.a.yao@intel.com>
> Cc: Mo, YufengX <yufengx.mo@intel.com>
> Subject: [dts] [PATCH V1 0/2] pktgen/ixia: fix ping ipv6 issue
> 
>  fix ixia ping ipv6 issue.
> 
> yufengmx (2):
>   pktgen/ixia: fix ping ipv6 issue
>   pktgen/ixia: fix ping ipv6 issue
> 
>  framework/pktgen_ixia.py | 2 +-
>  framework/tester.py      | 2 +-
>  2 files changed, 2 insertions(+), 2 deletions(-)
> 
> --
> 2.21.0


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

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

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-01-14  6:45 [dts] [PATCH V1 0/2] pktgen/ixia: fix ping ipv6 issue yufengmx
2020-01-14  6:45 ` [dts] [PATCH V1 1/2] " yufengmx
2020-01-14  6:45   ` Yao, Lei A
2020-01-14  6:45 ` [dts] [PATCH V1 2/2] " yufengmx
2020-01-14  6:44   ` Yao, Lei A
2020-01-16  5:52 ` [dts] [PATCH V1 0/2] " 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).