aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux')
-rw-r--r--include/linux/skbuff.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/linux/skbuff.h b/include/linux/skbuff.h
index 2e153b69d318..036ec7d8a83a 100644
--- a/include/linux/skbuff.h
+++ b/include/linux/skbuff.h
@@ -1357,7 +1357,7 @@ static inline void __skb_fill_page_desc(struct sk_buff *skb, int i,
1357 * @size: the length of the data 1357 * @size: the length of the data
1358 * 1358 *
1359 * As per __skb_fill_page_desc() -- initialises the @i'th fragment of 1359 * As per __skb_fill_page_desc() -- initialises the @i'th fragment of
1360 * @skb to point to &size bytes at offset @off within @page. In 1360 * @skb to point to @size bytes at offset @off within @page. In
1361 * addition updates @skb such that @i is the last fragment. 1361 * addition updates @skb such that @i is the last fragment.
1362 * 1362 *
1363 * Does not take any additional reference on the fragment. 1363 * Does not take any additional reference on the fragment.
@@ -1417,6 +1417,7 @@ static inline void skb_set_tail_pointer(struct sk_buff *skb, const int offset)
1417/* 1417/*
1418 * Add data to an sk_buff 1418 * Add data to an sk_buff
1419 */ 1419 */
1420unsigned char *pskb_put(struct sk_buff *skb, struct sk_buff *tail, int len);
1420unsigned char *skb_put(struct sk_buff *skb, unsigned int len); 1421unsigned char *skb_put(struct sk_buff *skb, unsigned int len);
1421static inline unsigned char *__skb_put(struct sk_buff *skb, unsigned int len) 1422static inline unsigned char *__skb_put(struct sk_buff *skb, unsigned int len)
1422{ 1423{