diff options
author | Changli Gao <xiaosuo@gmail.com> | 2010-05-29 11:12:13 +0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-05-29 11:12:13 +0400 |
commit | 5b0daa3474d52bed906c4d5e92b44e10148c6972 (patch) | |
tree | 3ed95111a3637d1b64f4c1bf27a0e86a785ca104 /include/linux/skbuff.h | |
parent | 6057fd78a8dcce6269f029b967051d5a2e9b0895 (diff) | |
download | linux-5b0daa3474d52bed906c4d5e92b44e10148c6972.tar.xz |
skb: make skb_recycle_check() return a bool value
Signed-off-by: Changli Gao <xiaosuo@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/linux/skbuff.h')
-rw-r--r-- | include/linux/skbuff.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/skbuff.h b/include/linux/skbuff.h index 7cdfb4d52847..bf243fc54959 100644 --- a/include/linux/skbuff.h +++ b/include/linux/skbuff.h @@ -501,7 +501,7 @@ static inline struct sk_buff *alloc_skb_fclone(unsigned int size, return __alloc_skb(size, priority, 1, -1); } -extern int skb_recycle_check(struct sk_buff *skb, int skb_size); +extern bool skb_recycle_check(struct sk_buff *skb, int skb_size); extern struct sk_buff *skb_morph(struct sk_buff *dst, struct sk_buff *src); extern struct sk_buff *skb_clone(struct sk_buff *skb, |