]> sourceware.org Git - systemtap.git/commitdiff
Fixed ipmip.stp documentation strings to say 'ipmib', not 'tcpmib'.
authorDavid Smith <dsmith@redhat.com>
Mon, 21 Jun 2010 21:23:50 +0000 (16:23 -0500)
committerDavid Smith <dsmith@redhat.com>
Mon, 21 Jun 2010 21:23:50 +0000 (16:23 -0500)
* tapset/ipmib.stp: Fixed all documentation strings.

tapset/ipmib.stp

index aed40b9f33d1ad22fe8a8cff2512cec47aa96d94..a65b6ead0a7b02e10db228a81623b91130a325fc 100644 (file)
@@ -195,7 +195,7 @@ function _rtn_broadcast:long ()
 %}
 
 /**
- * probe tcpmib.InReceives - Count an arriving packet.
+ * probe ipmib.InReceives - Count an arriving packet.
  * @skb: Pointer to the struct sk_buff being acted on.
  * @op: Value to be added to the counter (Operation). 
  *
@@ -213,7 +213,7 @@ probe ipmib.InReceives=kernel.function("ip_rcv")
 }
 
 /**
- * probe tcpmib.InNoRoutes - Count an arriving packet with no matching socket.
+ * probe ipmib.InNoRoutes - Count an arriving packet with no matching socket.
  * @skb: Pointer to the struct sk_buff being acted on.
  * @op: Value to be added to the counter (Operation). 
  *
@@ -233,7 +233,7 @@ probe ipmib.InNoRoutes=kernel.function("ip_route_input_common").return!,
 }
 
 /**
- * probe tcpmib.InAddrErrors - Count arriving packets with an incorrect address.
+ * probe ipmib.InAddrErrors - Count arriving packets with an incorrect address.
  * @skb: Pointer to the struct sk_buff being acted on.
  * @op: Value to be added to the counter (Operation). 
  *
@@ -253,7 +253,7 @@ probe ipmib.InAddrErrors=kernel.function("ip_route_input_common").return!,
 }
 
 /**
- * probe tcpmib.InUnknownProtos - Count arriving packets with an unbound proto. 
+ * probe ipmib.InUnknownProtos - Count arriving packets with an unbound proto. 
  * @skb: Pointer to the struct sk_buff being acted on.
  * @op: Value to be added to the counter (Operation). 
  *
@@ -275,7 +275,7 @@ probe ipmib.InUnknownProtos=kernel.function("icmp_send")
 }
 
 /**
- * probe tcpmib.InDiscards - Count discarded inbound packets.
+ * probe ipmib.InDiscards - Count discarded inbound packets.
  * @skb: Pointer to the struct sk_buff being acted on.
  * @op: Value to be added to the counter (Operation). 
  *
@@ -299,7 +299,7 @@ probe ipmib.InDiscards=kernel.function("ip_rcv").return
 }
 
 /**
- * probe tcpmib.ForwDatagrams
+ * probe ipmib.ForwDatagrams
  * @skb: Pointer to the struct sk_buff being acted on.
  * @op: Value to be added to the counter (Operation). 
  *
@@ -319,7 +319,7 @@ probe ipmib.ForwDatagrams=kernel.function("ip_forward_finish")
 %)
 
 /**
- * probe tcpmib.OutRequests - Count a request to send a packet.
+ * probe ipmib.OutRequests - Count a request to send a packet.
  * @skb: Pointer to the struct sk_buff being acted on.
  * @op: Value to be added to the counter (Operation). 
  *
@@ -338,7 +338,7 @@ probe ipmib.OutRequests=kernel.function("ip_output"),
 }
 
 /**
- * probe tcpmib.ReasmTimeout
+ * probe ipmib.ReasmTimeout
  * @skb: Pointer to the struct sk_buff being acted on.
  * @op: Value to be added to the counter (Operation). 
  *
@@ -358,7 +358,7 @@ probe ipmib.ReasmTimeout=kernel.function("icmp_send")
 }
 
 /**
- * probe tcpmib.ReasmReqds
+ * probe ipmib.ReasmReqds
  * @skb: Pointer to the struct sk_buff being acted on.
  * @op: Value to be added to the counter (Operation). 
  *
@@ -376,7 +376,7 @@ probe ipmib.ReasmReqds=kernel.function("ip_defrag")
 }
 
 /**
- * probe tcpmib.FragOKs
+ * probe ipmib.FragOKs
  * @skb: Pointer to the struct sk_buff being acted on.
  * @op: Value to be added to the counter (Operation). 
  *
@@ -395,7 +395,7 @@ probe ipmib.FragOKs=kernel.function("ip_fragment").return
 }
 
 /**
- * probe tcpmib.FragFails
+ * probe ipmib.FragFails
  * @skb: Pointer to the struct sk_buff being acted on.
  * @op: Value to be added to the counter (Operation). 
  *
This page took 0.031986 seconds and 5 git commands to generate.