Re: [ovs-dev] [PATCH] datapath: Print friendly error message when conntrack fails to init

2019-07-19 Thread Yifeng Sun
Ok, I will do that. Thanks for reviewing. Yifeng On Fri, Jul 19, 2019 at 9:10 AM Gregory Rose wrote: > > On 7/18/2019 6:43 PM, Yifeng Sun wrote: > > On 4.14 kernels, if kernel isn't configured with CONFIG_NF_CONNTRACK_IPV4 > > and CONFIG_NF_CONNTRACK_IPV6, openvswitch module will fail to load. Th

Re: [ovs-dev] [PATCH] datapath: Print friendly error message when conntrack fails to init

2019-07-19 Thread Gregory Rose
On 7/18/2019 6:43 PM, Yifeng Sun wrote: On 4.14 kernels, if kernel isn't configured with CONFIG_NF_CONNTRACK_IPV4 and CONFIG_NF_CONNTRACK_IPV6, openvswitch module will fail to load. The error message is "openvswitch: failed to init nf_conncount -91". This patch prints helpful error message for t

[ovs-dev] [PATCH] datapath: Print friendly error message when conntrack fails to init

2019-07-18 Thread Yifeng Sun
On 4.14 kernels, if kernel isn't configured with CONFIG_NF_CONNTRACK_IPV4 and CONFIG_NF_CONNTRACK_IPV6, openvswitch module will fail to load. The error message is "openvswitch: failed to init nf_conncount -91". This patch prints helpful error message for this case. Signed-off-by: Yifeng Sun ---