mbox series

[ovs-dev,V2,with,ACKS,0/8] datapath: Pull in upstream fixes and updates

Message ID 1544742505-5177-1-git-send-email-gvrose8192@gmail.com
Headers show
Series datapath: Pull in upstream fixes and updates | expand

Message

Gregory Rose Dec. 13, 2018, 11:08 p.m. UTC
Pull in recent Linux upstream kernel updates for openvswitch core.

Travis build is here:
https://travis-ci.org/gvrose8192/ovs-experimental/builds/463951223

'make check-kmod' results:
## ------------- ##
## Test results. ##
## ------------- ##

116 tests were successful.
16 tests were skipped.

There are other updates specific to netfilter/conntrack code
which will be submitted separately in an upcoming patch series.

Colin Ian King (1):
  datapath: fix spelling mistake "execeeds" -> "exceeds"

Flavio Leitner (1):
  datapath: load NAT helper

Greg Rose (1):
  compat: Fixup ip_tunnel_info_opts_set

Kees Cook (2):
  datapath: kmalloc() -> kmalloc_array()
  datapath: kzalloc() -> kcalloc()

Pieter Jansen van Vuuren (1):
  datapath: check tunnel option type in tunnel flags

Yi-Hung Wei (1):
  datapath: Derive IP protocol number for IPv6 later frags

YueHaibing (1):
  datapath: fix return type of ndo_start_xmit function

 acinclude.m4                                   |  3 +++
 datapath/conntrack.c                           |  6 +++++-
 datapath/datapath.c                            |  5 +++--
 datapath/flow.c                                | 22 +++++++++-------------
 datapath/flow_netlink.c                        |  7 ++++++-
 datapath/linux/compat/geneve.c                 |  3 ++-
 datapath/linux/compat/include/net/ip_tunnels.h | 20 ++++++++++++++++++--
 datapath/linux/compat/ip_gre.c                 |  2 ++
 datapath/linux/compat/vxlan.c                  |  3 ++-
 datapath/vport-internal_dev.c                  |  5 +++--
 datapath/vport.c                               |  2 +-
 11 files changed, 54 insertions(+), 24 deletions(-)

Comments

Ben Pfaff Dec. 15, 2018, 4:17 p.m. UTC | #1
On Thu, Dec 13, 2018 at 03:08:17PM -0800, Greg Rose wrote:
> Pull in recent Linux upstream kernel updates for openvswitch core.
> 
> Travis build is here:
> https://travis-ci.org/gvrose8192/ovs-experimental/builds/463951223
> 
> 'make check-kmod' results:
> ## ------------- ##
> ## Test results. ##
> ## ------------- ##
> 
> 116 tests were successful.
> 16 tests were skipped.
> 
> There are other updates specific to netfilter/conntrack code
> which will be submitted separately in an upcoming patch series.

Thanks, I applied these to master.  I didn't do backports to earlier
versions, so if you'd like them please let me know.
Gregory Rose Dec. 16, 2018, 2:22 p.m. UTC | #2
On 12/15/2018 8:17 AM, Ben Pfaff wrote:
> On Thu, Dec 13, 2018 at 03:08:17PM -0800, Greg Rose wrote:
>> Pull in recent Linux upstream kernel updates for openvswitch core.
>>
>> Travis build is here:
>> https://travis-ci.org/gvrose8192/ovs-experimental/builds/463951223
>>
>> 'make check-kmod' results:
>> ## ------------- ##
>> ## Test results. ##
>> ## ------------- ##
>>
>> 116 tests were successful.
>> 16 tests were skipped.
>>
>> There are other updates specific to netfilter/conntrack code
>> which will be submitted separately in an upcoming patch series.
> Thanks, I applied these to master.  I didn't do backports to earlier
> versions, so if you'd like them please let me know.

Thanks Ben!  ToT is fine for now.

- Greg