diff options
author | Eric Dumazet <edumazet@google.com> | 2012-06-04 03:17:19 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2012-06-04 17:27:40 +0200 |
commit | 5d0ba55b6486f58cc890918d7167063d83f7fbb4 (patch) | |
tree | 9f9a59cc9fc9d31d7e557c7688a054f8fea8a6ab /net/ax25/ax25_route.c | |
parent | tcp: tcp_make_synack() consumes dst parameter (diff) | |
download | linux-5d0ba55b6486f58cc890918d7167063d83f7fbb4.tar.xz linux-5d0ba55b6486f58cc890918d7167063d83f7fbb4.zip |
net: use consume_skb() in place of kfree_skb()
Remove some dropwatch/drop_monitor false positives.
Signed-off-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ax25/ax25_route.c')
-rw-r--r-- | net/ax25/ax25_route.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ax25/ax25_route.c b/net/ax25/ax25_route.c index a65588040b9e..d39097737e38 100644 --- a/net/ax25/ax25_route.c +++ b/net/ax25/ax25_route.c @@ -474,7 +474,7 @@ struct sk_buff *ax25_rt_build_path(struct sk_buff *skb, ax25_address *src, if (skb->sk != NULL) skb_set_owner_w(skbn, skb->sk); - kfree_skb(skb); + consume_skb(skb); skb = skbn; } |