Commit 37afa8a4 authored by Martin Waitz's avatar Martin Waitz Committed by Linus Torvalds

[PATCH] docbook: update function parameter description in network code

Update function parameter description in network code
Signed-off-by: default avatarMartin Waitz <tali@admingilde.org>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent ae093336
......@@ -999,6 +999,7 @@ static void ethdev_setup(struct net_device *dev)
/**
* alloc_ei_netdev - alloc_etherdev counterpart for 8390
* @size: extra bytes to allocate
*
* Allocate 8390-specific net_device.
*/
......
......@@ -202,6 +202,8 @@ struct skb_shared_info {
* @nf_bridge: Saved data about a bridged frame - see br_netfilter.c
* @private: Data which is private to the HIPPI implementation
* @tc_index: Traffic control index
* @tc_verd: traffic control verdict
* @tc_classid: traffic control classid
*/
struct sk_buff {
......
......@@ -1383,7 +1383,7 @@ static inline void skb_split_no_header(struct sk_buff *skb,
if (pos < len) {
/* Split frag.
* We have to variants in this case:
* We have two variants in this case:
* 1. Move all the frag to the second
* part, if it is possible. F.e.
* this approach is mandatory for TUX,
......@@ -1406,6 +1406,9 @@ static inline void skb_split_no_header(struct sk_buff *skb,
/**
* skb_split - Split fragmented skb to two parts at length len.
* @skb: the buffer to split
* @skb1: the buffer to receive the second part
* @len: new length for skb
*/
void skb_split(struct sk_buff *skb, struct sk_buff *skb1, const u32 len)
{
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment