Commit 792e5ed750ce ("datapath: inet: frag: Always orphan skbs inside ip_defrag().") broke the build for OVS backport against kernel-4.3. Fix the build.
Signed-off-by: Joe Stringer <j...@ovn.org> --- v2: First post. --- datapath/linux/compat/include/net/ip.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/datapath/linux/compat/include/net/ip.h b/datapath/linux/compat/include/net/ip.h index 2e33664147a1..29ec5145ff5d 100644 --- a/datapath/linux/compat/include/net/ip.h +++ b/datapath/linux/compat/include/net/ip.h @@ -130,7 +130,7 @@ void rpl_ipfrag_fini(void); static inline int rpl_ip_defrag(struct sk_buff *skb, u32 user) { skb_orphan(skb); - ip_defrag(skb, user); + return ip_defrag(skb, user); } #define ip_defrag rpl_ip_defrag #endif -- 2.1.4 _______________________________________________ dev mailing list dev@openvswitch.org http://openvswitch.org/mailman/listinfo/dev