Re: [ovs-dev] [PATCH v1] ofproto: fix a typo for ttl in dpif_sflow_actions

2019-10-07 Thread Ben Pfaff
On Mon, Oct 07, 2019 at 12:34:55AM -0400, martinbj2...@gmail.com wrote:
> From: Martin Zhang 
> 
> Signed-off-by: Martin Zhang 

Thanks.  I applied this to master and backported it as far as
branch-2.5.
___
dev mailing list
d...@openvswitch.org
https://mail.openvswitch.org/mailman/listinfo/ovs-dev


[ovs-dev] [PATCH v1] ofproto: fix a typo for ttl in dpif_sflow_actions

2019-10-07 Thread martinbj2008
From: Martin Zhang 

Signed-off-by: Martin Zhang 
---
 ofproto/ofproto-dpif-sflow.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ofproto/ofproto-dpif-sflow.c b/ofproto/ofproto-dpif-sflow.c
index 03bd763..9abaab6 100644
--- a/ofproto/ofproto-dpif-sflow.c
+++ b/ofproto/ofproto-dpif-sflow.c
@@ -1026,7 +1026,7 @@ sflow_read_set_action(const struct nlattr *attr,
 sflow_actions->tunnel.ip_tos = key->ipv4_tos;
 }
 if (key->ipv4_ttl) {
-sflow_actions->tunnel.ip_tos = key->ipv4_ttl;
+sflow_actions->tunnel.ip_ttl = key->ipv4_ttl;
 }
 }
 break;
-- 
1.8.3.1

___
dev mailing list
d...@openvswitch.org
https://mail.openvswitch.org/mailman/listinfo/ovs-dev