mbox series

[ovs-dev,V2,00/10] Upstream Linux bug fixes for datapath

Message ID 1518017410-31711-1-git-send-email-gvrose8192@gmail.com
Headers show
Series Upstream Linux bug fixes for datapath | expand

Message

Gregory Rose Feb. 7, 2018, 3:30 p.m. UTC
Reorganized patch set that includes bug fixes and compatability
layer changes that can be backported to 2.9 as well as applied
to master.

V2 of these patches include suggested changes from the first patch
set.

Arnd Bergmann (1):
  datapath: use ktime_get_ts64() instead of ktime_get_ts()

Christophe JAILLET (1):
  datapath:  Fix an error handling path in
    'ovs_nla_init_match_and_action()

Florian Westphal (1):
  datapath: conntrack: make protocol tracker pointers const

Greg Rose (5):
  datapath: Fix netdev_master_upper_dev_link for 4.14
  compat: Do not include headers when not compiling
  compat:inet_frag.h: Check for frag_percpu_counter_batch
  datapath: Fix SKB_GSO_UDP usage
  compat: Fix compiler headers

Gustavo A. R. Silva (1):
  datapath: fix data type in queue_gso_packets

zhangliping (1):
  datapath: fix the incorrect flow action alloc size

 acinclude.m4                                       |  9 +++++++
 datapath/conntrack.c                               |  4 +--
 datapath/datapath.c                                | 14 ++++++----
 datapath/flow.c                                    |  7 ++---
 datapath/flow_netlink.c                            | 16 ++++++------
 datapath/linux/Modules.mk                          |  1 +
 datapath/linux/compat/include/linux/compiler-gcc.h |  2 ++
 datapath/linux/compat/include/linux/netdevice.h    | 30 +++++++++++++++++++---
 datapath/linux/compat/include/linux/timekeeping.h  | 11 ++++++++
 datapath/linux/compat/include/net/inet_frag.h      | 14 ++++++++++
 datapath/linux/compat/ip_gre.c                     |  2 +-
 datapath/linux/compat/ip_output.c                  |  2 +-
 datapath/linux/compat/stt.c                        | 11 +++++++-
 datapath/vport-netdev.c                            |  3 ++-
 14 files changed, 100 insertions(+), 26 deletions(-)
 create mode 100644 datapath/linux/compat/include/linux/timekeeping.h

Comments

Pravin Shelar Feb. 12, 2018, 8:34 a.m. UTC | #1
On Wed, Feb 7, 2018 at 7:30 AM, Greg Rose <gvrose8192@gmail.com> wrote:
> Reorganized patch set that includes bug fixes and compatability
> layer changes that can be backported to 2.9 as well as applied
> to master.
>
> V2 of these patches include suggested changes from the first patch
> set.
>
> Arnd Bergmann (1):
>   datapath: use ktime_get_ts64() instead of ktime_get_ts()
>
> Christophe JAILLET (1):
>   datapath:  Fix an error handling path in
>     'ovs_nla_init_match_and_action()
>
> Florian Westphal (1):
>   datapath: conntrack: make protocol tracker pointers const
>
> Greg Rose (5):
>   datapath: Fix netdev_master_upper_dev_link for 4.14
>   compat: Do not include headers when not compiling
>   compat:inet_frag.h: Check for frag_percpu_counter_batch
>   datapath: Fix SKB_GSO_UDP usage
>   compat: Fix compiler headers
>
> Gustavo A. R. Silva (1):
>   datapath: fix data type in queue_gso_packets
>
> zhangliping (1):
>   datapath: fix the incorrect flow action alloc size
>

I pushed this series to master and branch 2.9.


Thanks.
Gregory Rose Feb. 12, 2018, 2:52 p.m. UTC | #2
On 2/12/2018 12:34 AM, Pravin Shelar wrote:
> On Wed, Feb 7, 2018 at 7:30 AM, Greg Rose <gvrose8192@gmail.com> wrote:
>> Reorganized patch set that includes bug fixes and compatability
>> layer changes that can be backported to 2.9 as well as applied
>> to master.
>>
>> V2 of these patches include suggested changes from the first patch
>> set.
>>
>> Arnd Bergmann (1):
>>    datapath: use ktime_get_ts64() instead of ktime_get_ts()
>>
>> Christophe JAILLET (1):
>>    datapath:  Fix an error handling path in
>>      'ovs_nla_init_match_and_action()
>>
>> Florian Westphal (1):
>>    datapath: conntrack: make protocol tracker pointers const
>>
>> Greg Rose (5):
>>    datapath: Fix netdev_master_upper_dev_link for 4.14
>>    compat: Do not include headers when not compiling
>>    compat:inet_frag.h: Check for frag_percpu_counter_batch
>>    datapath: Fix SKB_GSO_UDP usage
>>    compat: Fix compiler headers
>>
>> Gustavo A. R. Silva (1):
>>    datapath: fix data type in queue_gso_packets
>>
>> zhangliping (1):
>>    datapath: fix the incorrect flow action alloc size
>>
> I pushed this series to master and branch 2.9.
>
>
> Thanks.

Thanks Pravin!

- Greg