X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=datapath%2Flinux-2.6%2Fcompat-2.6%2Finclude%2Flinux%2Fskbuff.h;h=dd9bfa37272d5e0f1eaef9476c683689776447e5;hb=e8cf6733e490cf78c1e5f5f58c3655011fb8ae22;hp=2831721264e11c6d8c4f0185058cbd1a63e80084;hpb=6a33828dbcc9a4f67bd730061b931c77caad2990;p=sliver-openvswitch.git diff --git a/datapath/linux-2.6/compat-2.6/include/linux/skbuff.h b/datapath/linux-2.6/compat-2.6/include/linux/skbuff.h index 283172126..dd9bfa372 100644 --- a/datapath/linux-2.6/compat-2.6/include/linux/skbuff.h +++ b/datapath/linux-2.6/compat-2.6/include/linux/skbuff.h @@ -5,6 +5,17 @@ #include +#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,24) +/* In version 2.6.24 the return type of skb_headroom() changed from 'int' to + * 'unsigned int'. We use skb_headroom() as one arm of a min(a,b) invocation + * in make_writable() in actions.c, so we need the correct type. */ +#define skb_headroom rpl_skb_headroom +static inline unsigned int rpl_skb_headroom(const struct sk_buff *skb) +{ + return skb->data - skb->head; +} +#endif + #ifndef HAVE_SKB_COPY_FROM_LINEAR_DATA_OFFSET static inline void skb_copy_from_linear_data_offset(const struct sk_buff *skb, const int offset, void *to,