datapath: Re-designate OVS_FRAGMENT_BACKPORT.
authorJoe Stringer <joe@ovn.org>
Thu, 24 Dec 2015 21:09:38 +0000 (13:09 -0800)
committerJoe Stringer <joe@ovn.org>
Thu, 4 Feb 2016 18:32:54 +0000 (10:32 -0800)
commit7ed09b002e26ae9c207df59e3a13a5d30d3ffb48
tree28fead0e31cb2f6f0c0b0728c5780f5a62926043
parent5dea489f944a59ae3ea61da2237e744c2e5b9a99
datapath: Re-designate OVS_FRAGMENT_BACKPORT.

Typically the way that we include backported code is by testing for
existence of the feature in the upstream codebase via header checks,
then attempt to use the upstream code as much as possible. However, for
the IP fragmentation handling backport we have an additional constraint
which is that we cannot support kernels older than Linux-3.10.

To date, OVS_FRAGMENT_BACKPORT has been defined to include the backport
of the IP fragmentation code for all kernels from 3.10 to 4.2, rather
than attempting to use the upstream code as much as possible. This patch
relaxes OVS_FRAGMENT_BACKPORT to only check the lower bound so that the
upstream code may be used in more circumstances.

Signed-off-by: Joe Stringer <joe@ovn.org>
Acked-by: Pravin B Shelar <pshelar@ovn.org>
acinclude.m4