This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "".
The branch, master has been updated via 24262a9aae62290dfd1a041d0bd5c6943270251d (commit) via 7e355890905a9195ff1027377991b4134e285a03 (commit) from 6947621e1b3a3c73c3ee351325f505e5e191474f (commit)
Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below.
- Log ----------------------------------------------------------------- commit 24262a9aae62290dfd1a041d0bd5c6943270251d Author: Petri Savolainen petri.savolainen@linaro.org Date: Tue Apr 24 15:53:59 2018 +0300
test: mmap_vlan_ins: wait for background process
Each 'make check' run was still leaving a mmap_vlan_ins process behind. Wait until both processes (also the background process) has finished before tearing down the interfaces.
Signed-off-by: Petri Savolainen petri.savolainen@linaro.org Signed-off-by: Maxim Uvarov maxim.uvarov@linaro.org
diff --git a/platform/linux-generic/test/mmap_vlan_ins/mmap_vlan_ins.sh b/platform/linux-generic/test/mmap_vlan_ins/mmap_vlan_ins.sh index ae263ee3..b0eb046b 100755 --- a/platform/linux-generic/test/mmap_vlan_ins/mmap_vlan_ins.sh +++ b/platform/linux-generic/test/mmap_vlan_ins/mmap_vlan_ins.sh @@ -69,8 +69,8 @@ plat_mmap_vlan_ins${EXEEXT} pktiop0p1 pcap:out=${PCAP_OUT} \ plat_mmap_vlan_ins${EXEEXT} pcap:in=${PCAP_IN} pktiop1p0 \ 01:02:03:04:05:06 01:08:09:0a:0b:0c
-# Give both processes time to close before removing interfaces -sleep 4 +# Wait both processes to exit before removing the interfaces +wait $!
rm -f ${PCAP_OUT} cleanup_pktio_env
commit 7e355890905a9195ff1027377991b4134e285a03 Author: Dmitry Eremin-Solenikov dmitry.ereminsolenikov@linaro.org Date: Mon Apr 23 23:10:03 2018 +0300
linux-gen: ipsec: parse IPv6 next header in tunnel case
IPsec parsing code will fail to update next header field in internal state in case of outbound tunnel processing of IPv6 packets. Fixes: https://bugs.linaro.org/show_bug.cgi?id=3764
Signed-off-by: Dmitry Eremin-Solenikov dmitry.ereminsolenikov@linaro.org Reviewed-by: Bill Fischofer bill.fischofer@linaro.org Signed-off-by: Maxim Uvarov maxim.uvarov@linaro.org
diff --git a/platform/linux-generic/odp_ipsec.c b/platform/linux-generic/odp_ipsec.c index 782cbf45..7401f590 100644 --- a/platform/linux-generic/odp_ipsec.c +++ b/platform/linux-generic/odp_ipsec.c @@ -844,6 +844,7 @@ static int ipsec_out_tunnel_parse_ipv6(ipsec_state_t *state, state->out_tunnel.ip_flabel = (ipv6hdr->ver_tc_flow & _ODP_IPV6HDR_FLOW_LABEL_MASK) >> _ODP_IPV6HDR_FLOW_LABEL_SHIFT; + state->ip_next_hdr = ipv6hdr->next_hdr;
return 0; }
-----------------------------------------------------------------------
Summary of changes: platform/linux-generic/odp_ipsec.c | 1 + platform/linux-generic/test/mmap_vlan_ins/mmap_vlan_ins.sh | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-)
hooks/post-receive