Ver código fonte

net: correct comments of skb_shift

when skb_shift, we want to shift paged data from skb to tgt frag area.
Original comments revert the shift order

Signed-off-by: Feng King <kinwin2008@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Feng King 13 anos atrás
pai
commit
20e994a05b
1 arquivos alterados com 1 adições e 1 exclusões
  1. 1 1
      net/core/skbuff.c

+ 1 - 1
net/core/skbuff.c

@@ -2230,7 +2230,7 @@ static int skb_prepare_for_shift(struct sk_buff *skb)
  * @shiftlen: shift up to this many bytes
  * @shiftlen: shift up to this many bytes
  *
  *
  * Attempts to shift up to shiftlen worth of bytes, which may be less than
  * Attempts to shift up to shiftlen worth of bytes, which may be less than
- * the length of the skb, from tgt to skb. Returns number bytes shifted.
+ * the length of the skb, from skb to tgt. Returns number bytes shifted.
  * It's up to caller to free skb if everything was shifted.
  * It's up to caller to free skb if everything was shifted.
  *
  *
  * If @tgt runs out of frags, the whole operation is aborted.
  * If @tgt runs out of frags, the whole operation is aborted.