netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH net-next V3] tun/macvtap: use consume_skb() instead of kfree_skb() when needed
@ 2014-11-27  6:36 Jason Wang
  2014-11-30  5:03 ` David Miller
  0 siblings, 1 reply; 3+ messages in thread
From: Jason Wang @ 2014-11-27  6:36 UTC (permalink / raw)
  To: davem, netdev, linux-kernel; +Cc: mst, Jason Wang, Eric Dumazet

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>
---
Changes from V2:
- use unlikely() when necessary
Changes from V1:
- check the return value of tun/macvtap_put_user()
---
 drivers/net/macvtap.c | 5 ++++-
 drivers/net/tun.c     | 5 ++++-
 2 files changed, 8 insertions(+), 2 deletions(-)

diff --git a/drivers/net/macvtap.c b/drivers/net/macvtap.c
index 42a80d3..86f6bf8 100644
--- a/drivers/net/macvtap.c
+++ b/drivers/net/macvtap.c
@@ -862,7 +862,10 @@ static ssize_t macvtap_do_read(struct macvtap_queue *q,
 		}
 		iov_iter_init(&iter, READ, iv, segs, len);
 		ret = macvtap_put_user(q, skb, &iter);
-		kfree_skb(skb);
+		if (unlikely(ret < 0))
+			kfree_skb(skb);
+		else
+			consume_skb(skb);
 		break;
 	}
 
diff --git a/drivers/net/tun.c b/drivers/net/tun.c
index ac53a73..82a9bf0 100644
--- a/drivers/net/tun.c
+++ b/drivers/net/tun.c
@@ -1363,7 +1363,10 @@ static ssize_t tun_do_read(struct tun_struct *tun, struct tun_file *tfile,
 
 	iov_iter_init(&iter, READ, iv, segs, len);
 	ret = tun_put_user(tun, tfile, skb, &iter);
-	kfree_skb(skb);
+	if (unlikely(ret < 0))
+		kfree_skb(skb);
+	else
+		consume_skb(skb);
 
 	return ret;
 }
-- 
1.9.1

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH net-next V3] tun/macvtap: use consume_skb() instead of kfree_skb() when needed
  2014-11-27  6:36 [PATCH net-next V3] tun/macvtap: use consume_skb() instead of kfree_skb() when needed Jason Wang
@ 2014-11-30  5:03 ` David Miller
  2014-12-01  5:35   ` Jason Wang
  0 siblings, 1 reply; 3+ messages in thread
From: David Miller @ 2014-11-30  5:03 UTC (permalink / raw)
  To: jasowang; +Cc: netdev, linux-kernel, mst, eric.dumazet

From: Jason Wang <jasowang@redhat.com>
Date: Thu, 27 Nov 2014 14:36:06 +0800

> 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>
> ---
> Changes from V2:
> - use unlikely() when necessary
> Changes from V1:
> - check the return value of tun/macvtap_put_user()

This does not apply cleanly to net-next and will thus need to
be respun, thanks.

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH net-next V3] tun/macvtap: use consume_skb() instead of kfree_skb() when needed
  2014-11-30  5:03 ` David Miller
@ 2014-12-01  5:35   ` Jason Wang
  0 siblings, 0 replies; 3+ messages in thread
From: Jason Wang @ 2014-12-01  5:35 UTC (permalink / raw)
  To: David Miller; +Cc: netdev, linux-kernel, mst, eric.dumazet



On Sun, Nov 30, 2014 at 1:03 PM, David Miller <davem@davemloft.net> 
wrote:
> From: Jason Wang <jasowang@redhat.com>
> Date: Thu, 27 Nov 2014 14:36:06 +0800
> 
>>  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>
>>  ---
>>  Changes from V2:
>>  - use unlikely() when necessary
>>  Changes from V1:
>>  - check the return value of tun/macvtap_put_user()
> 
> This does not apply cleanly to net-next and will thus need to
> be respun, thanks.

Will post V3.

Thanks

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2014-12-01  5:35 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-11-27  6:36 [PATCH net-next V3] tun/macvtap: use consume_skb() instead of kfree_skb() when needed Jason Wang
2014-11-30  5:03 ` David Miller
2014-12-01  5:35   ` Jason Wang

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).