Re: [ovs-dev] [PATCH] lib/flow: fix minimatch_extract() ICMPv6 parsing

2014-06-02 Thread Jarno Rajahalme
On Jun 2, 2014, at 2:21 PM, Jarno Rajahalme wrote: > Pushed to master with the following incremental. Backporting to branch-2.3 as > well. I backported the lib/match.c change and the test case to branch-2.1 as well. Jarno ___ dev mailing list dev

Re: [ovs-dev] [PATCH] lib/flow: fix minimatch_extract() ICMPv6 parsing

2014-06-02 Thread Jarno Rajahalme
Thanks, Daniele! Pushed to master with the following incremental. Backporting to branch-2.3 as well. Jarno diff --git a/tests/ofproto-dpif.at b/tests/ofproto-dpif.at index eb88f10..c14d671 100644 --- a/tests/ofproto-dpif.at +++ b/tests/ofproto-dpif.at @@ -4829,11 +4829,10 @@ AT_CAPTURE_FILE([

[ovs-dev] [PATCH] lib/flow: fix minimatch_extract() ICMPv6 parsing

2014-06-02 Thread Daniele Di Proietto
This patch addresses two bugs related to ICMPv6(NDP) packets: - In miniflow_extract() push the words in the correct order - In parse_icmpv6() use sizeof struct, not size of struct * match_wc_init() has been modified, to include the nd_target field when the transport layer protocol is ICMPv6 A te