aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/tun.c
diff options
context:
space:
mode:
authorJason Wang <jasowang@redhat.com>2014-12-01 16:53:15 +0800
committerDavid S. Miller <davem@davemloft.net>2014-12-05 21:45:09 -0800
commitf51a5e82ea9aaf05106c00d976e772ca384a9199 (patch)
tree0a09f1cb7d362a7f5fc305a51215168ca211820c /drivers/net/tun.c
parentnet-PA Semi: Deletion of unnecessary checks before the function call "pci_dev_put" (diff)
downloadlinux-dev-f51a5e82ea9aaf05106c00d976e772ca384a9199.tar.xz
linux-dev-f51a5e82ea9aaf05106c00d976e772ca384a9199.zip
tun/macvtap: use consume_skb() instead of kfree_skb() when needed
To be more friendly with drop monitor, we should only call kfree_skb() when the packets were dropped and use consume_skb() in other cases. Cc: Eric Dumazet <eric.dumazet@gmail.com> Signed-off-by: Jason Wang <jasowang@redhat.com> Acked-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/tun.c')
-rw-r--r--drivers/net/tun.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/drivers/net/tun.c b/drivers/net/tun.c
index 6d44da184594..9c58286b8a42 100644
--- a/drivers/net/tun.c
+++ b/drivers/net/tun.c
@@ -1362,7 +1362,10 @@ static ssize_t tun_do_read(struct tun_struct *tun, struct tun_file *tfile,
return 0;
ret = tun_put_user(tun, tfile, skb, to);
- kfree_skb(skb);
+ if (unlikely(ret < 0))
+ kfree_skb(skb);
+ else
+ consume_skb(skb);
return ret;
}