From: Hauke Mehrtens Date: Tue, 2 Aug 2011 21:14:19 +0000 (+0200) Subject: compat: add skb_walk_frags() and skb_has_frag_list() X-Git-Tag: compat-2011-09-28~19 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=bc0a7c4993401d38905130c11017669c71a9ec82;p=~tnikolova%2Fcompat%2F.git compat: add skb_walk_frags() and skb_has_frag_list() These functions are needed for ./net/bluetooth/l2cap_core.c and ./net/bluetooth/af_bluetooth.c. Signed-off-by: Hauke Mehrtens --- diff --git a/include/linux/compat-2.6.31.h b/include/linux/compat-2.6.31.h index d2e0f01..ce944bb 100644 --- a/include/linux/compat-2.6.31.h +++ b/include/linux/compat-2.6.31.h @@ -199,6 +199,9 @@ void compat_synchronize_threaded_irq(struct compat_threaded_irq *comp) #define list_entry_rcu(ptr, type, member) \ container_of(rcu_dereference(ptr), type, member) +#define skb_walk_frags(skb, iter) \ + for (iter = skb_shinfo(skb)->frag_list; iter; iter = iter->next) + #endif /* (LINUX_VERSION_CODE < KERNEL_VERSION(2,6,31)) */ #endif /* LINUX_26_31_COMPAT_H */ diff --git a/include/linux/compat-2.6.37.h b/include/linux/compat-2.6.37.h index e0dd6b4..d375746 100644 --- a/include/linux/compat-2.6.37.h +++ b/include/linux/compat-2.6.37.h @@ -124,6 +124,11 @@ extern void *vzalloc(unsigned long size); #define RCU_INIT_POINTER(p, v) \ p = (typeof(*v) __force __rcu *)(v) +static inline bool skb_has_frag_list(const struct sk_buff *skb) +{ + return skb_shinfo(skb)->frag_list != NULL; +} + #endif /* (LINUX_VERSION_CODE < KERNEL_VERSION(2,6,37)) */ #endif /* LINUX_26_37_COMPAT_H */