batman-adv: don't implement skb_postpush_rcsum() for linux >=4.4.47

Message ID 20180511190244.18204-1-a@unstable.cc (mailing list archive)
State Accepted, archived
Delegated to: Simon Wunderlich
Headers
Series batman-adv: don't implement skb_postpush_rcsum() for linux >=4.4.47 |

Commit Message

Antonio Quartulli May 11, 2018, 7:02 p.m. UTC
  skb_postpush_rcsum() has been implemented in 4.4.47 therefore
our compat code has to be changed to prevent this function to
be implemented when using those kernels.

Signed-off-by: Antonio Quartulli <a@unstable.cc>
---
 compat-include/linux/skbuff.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
  

Comments

Sven Eckelmann May 11, 2018, 7:12 p.m. UTC | #1
On Freitag, 11. Mai 2018 21:02:44 CEST Antonio Quartulli wrote:
> skb_postpush_rcsum() has been implemented in 4.4.47 therefore
> our compat code has to be changed to prevent this function to
> be implemented when using those kernels.
> 
> Signed-off-by: Antonio Quartulli <a@unstable.cc>
> ---
>  compat-include/linux/skbuff.h | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Applied in b4693d107e08 [1].

Thanks,
	Sven

[1] https://git.open-mesh.org/batman-adv.git/commit/b4693d107e0869bf11956fd2d3be4fd0a8671b46
  

Patch

diff --git a/compat-include/linux/skbuff.h b/compat-include/linux/skbuff.h
index 6f739464..371bb561 100644
--- a/compat-include/linux/skbuff.h
+++ b/compat-include/linux/skbuff.h
@@ -77,7 +77,7 @@  struct sk_buff *skb_checksum_trimmed(struct sk_buff *skb,
 
 #endif /* < KERNEL_VERSION(4, 2, 0) */
 
-#if LINUX_VERSION_CODE < KERNEL_VERSION(4, 5, 0)
+#if LINUX_VERSION_CODE < KERNEL_VERSION(4, 4, 47)
 
 static inline void skb_postpush_rcsum(struct sk_buff *skb,
 				      const void *start, unsigned int len)