diff options
author | Christoph Hellwig <hch@lst.de> | 2006-07-24 15:31:14 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2006-07-24 15:31:14 -0700 |
commit | b4e54de8d34afe7fcf08bfe91070d9dfeae6ed27 (patch) | |
tree | 46b2088d28b1dc75df5ab8a8d277c243543fcb38 | |
parent | 37182d1bd3264cf9c0dce3408bee48af0755de7e (diff) | |
download | linux-3.10-b4e54de8d34afe7fcf08bfe91070d9dfeae6ed27.tar.gz linux-3.10-b4e54de8d34afe7fcf08bfe91070d9dfeae6ed27.tar.bz2 linux-3.10-b4e54de8d34afe7fcf08bfe91070d9dfeae6ed27.zip |
[NET]: Correct dev_alloc_skb kerneldoc
dev_alloc_skb is designated for RX descriptors, not TX. (Some drivers
use it for the latter anyway, but that's a different story)
Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | include/linux/skbuff.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/skbuff.h b/include/linux/skbuff.h index f9875797664..4307e764ef0 100644 --- a/include/linux/skbuff.h +++ b/include/linux/skbuff.h @@ -1067,7 +1067,7 @@ static inline void __skb_queue_purge(struct sk_buff_head *list) } /** - * __dev_alloc_skb - allocate an skbuff for sending + * __dev_alloc_skb - allocate an skbuff for receiving * @length: length to allocate * @gfp_mask: get_free_pages mask, passed to alloc_skb * @@ -1088,7 +1088,7 @@ static inline struct sk_buff *__dev_alloc_skb(unsigned int length, } /** - * dev_alloc_skb - allocate an skbuff for sending + * dev_alloc_skb - allocate an skbuff for receiving * @length: length to allocate * * Allocate a new &sk_buff and assign it a usage count of one. The |