ChangeSet 1.2065.3.60, 2005/03/12 08:36:59-08:00, [EMAIL PROTECTED]

        [PATCH] docbook: update function parameter description in network code
        
        Update function parameter description in network code
        
        Signed-off-by: Martin Waitz <[EMAIL PROTECTED]>
        Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
        Signed-off-by: Linus Torvalds <[EMAIL PROTECTED]>



 drivers/net/8390.c     |    1 +
 include/linux/skbuff.h |    2 ++
 net/core/skbuff.c      |    5 ++++-
 3 files changed, 7 insertions(+), 1 deletion(-)


diff -Nru a/drivers/net/8390.c b/drivers/net/8390.c
--- a/drivers/net/8390.c        2005-03-12 21:37:34 -08:00
+++ b/drivers/net/8390.c        2005-03-12 21:37:34 -08:00
@@ -999,6 +999,7 @@
 
 /**
  * alloc_ei_netdev - alloc_etherdev counterpart for 8390
+ * @size: extra bytes to allocate
  *
  * Allocate 8390-specific net_device.
  */
diff -Nru a/include/linux/skbuff.h b/include/linux/skbuff.h
--- a/include/linux/skbuff.h    2005-03-12 21:37:34 -08:00
+++ b/include/linux/skbuff.h    2005-03-12 21:37:34 -08:00
@@ -202,6 +202,8 @@
  *     @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 {
diff -Nru a/net/core/skbuff.c b/net/core/skbuff.c
--- a/net/core/skbuff.c 2005-03-12 21:37:34 -08:00
+++ b/net/core/skbuff.c 2005-03-12 21:37:34 -08:00
@@ -1383,7 +1383,7 @@
 
                        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 @@
 
 /**
  * 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)
 {
-
To unsubscribe from this list: send the line "unsubscribe bk-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to