Re: [ovs-dev] [PATCH v2] datapath: Fix build errors for 4.9.172+ kernels

2019-05-24 Thread Yifeng Sun
Thanks Yi-Hung for the review. 4.9 kernel is using ip6frag_init instead of ip6_frag_init, so the original change is essential. Otherwise, there will be compiling errors: https://travis-ci.org/yifsun/ovs-travis/builds/536900954 I will add /* HAVE_INET_FRAGS_RND */ and submit a new version. Yifeng

Re: [ovs-dev] [PATCH v2] datapath: Fix build errors for 4.9.172+ kernels

2019-05-24 Thread Yi-Hung Wei
On Thu, May 23, 2019 at 4:58 PM Yifeng Sun wrote: > > 4.9.172+ kernel backported upstream patch 70b095c843266 > ("ipv6: remove dependency of nf_defrag_ipv6 on ipv6 module") > and this caused compilation errors of OVS kernel module. > > This patch fixes it by checking and using new functions > intr

[ovs-dev] [PATCH v2] datapath: Fix build errors for 4.9.172+ kernels

2019-05-23 Thread Yifeng Sun
4.9.172+ kernel backported upstream patch 70b095c843266 ("ipv6: remove dependency of nf_defrag_ipv6 on ipv6 module") and this caused compilation errors of OVS kernel module. This patch fixes it by checking and using new functions introduced by the upstream patch. Travis tests passed at https://tr