From: Willem de Bruijn <willemdebruijn.kernel@gmail.com>
To: zhangyanjun@cestc.cn, willemdebruijn.kernel@gmail.com,
jasowang@redhat.com
Cc: netdev@vger.kernel.org, linux-kernel@vger.kernel.org,
zhangyanjun@cestc.cn
Subject: Re: [PATCH] tap/tun: add stats accounting when failed to transfer data to user
Date: Wed, 30 Jul 2025 12:45:49 -0400 [thread overview]
Message-ID: <688a4c3dd337_1cb79529426@willemb.c.googlers.com.notmuch> (raw)
In-Reply-To: <20250730092940.1439637-1-zhangyanjun@cestc.cn>
zhangyanjun@ wrote:
> From: Yanjun Zhang <zhangyanjun@cestc.cn>
>
> To more accurately detect packet dropped, we add the dropped packet
> counter with the device when kfree_skb is called because of failing
> to transfer data to user space.
>
> Signed-off-by: Yanjun Zhang <zhangyanjun@cestc.cn>
Net-next is currently closed. For networking patch process, see also
Documentation/process/maintainer-netdev.rst.
> ---
> drivers/net/tap.c | 14 +++++++++++---
> drivers/net/tun.c | 9 ++++++---
> 2 files changed, 17 insertions(+), 6 deletions(-)
>
> diff --git a/drivers/net/tap.c b/drivers/net/tap.c
> index bdf0788d8..9d288a1ad 100644
> --- a/drivers/net/tap.c
> +++ b/drivers/net/tap.c
> @@ -759,6 +759,8 @@ static ssize_t tap_do_read(struct tap_queue *q,
> {
> DEFINE_WAIT(wait);
> ssize_t ret = 0;
> + struct tap_dev *tap;
> + enum skb_drop_reason drop_reason = SKB_DROP_REASON_NOT_SPECIFIED;
>
> if (!iov_iter_count(to)) {
> kfree_skb(skb);
> @@ -794,10 +796,16 @@ static ssize_t tap_do_read(struct tap_queue *q,
> put:
> if (skb) {
> ret = tap_put_user(q, skb, to);
> - if (unlikely(ret < 0))
> - kfree_skb(skb);
> - else
> + if (unlikely(ret < 0)) {
> + kfree_skb_reason(skb, drop_reason);
kfreee_skb_reason(skb, SKB_DROP_REASON_NOT_SPECIFIED) is equivalent to
kfree_skb().
> + rcu_read_lock();
> + tap = rcu_dereference(q->tap);
> + if (tap && tap->count_rx_dropped)
> + tap->count_rx_dropped(tap);
> + rcu_read_unlock();
> + } else {
> consume_skb(skb);
> + }
> }
> return ret;
> }
> diff --git a/drivers/net/tun.c b/drivers/net/tun.c
> index f8c5e2fd0..eb3c68e5f 100644
> --- a/drivers/net/tun.c
> +++ b/drivers/net/tun.c
> @@ -2137,6 +2137,7 @@ static ssize_t tun_do_read(struct tun_struct *tun, struct tun_file *tfile,
> {
> ssize_t ret;
> int err;
> + enum skb_drop_reason drop_reason = SKB_DROP_REASON_NOT_SPECIFIED;
>
> if (!iov_iter_count(to)) {
> tun_ptr_free(ptr);
> @@ -2159,10 +2160,12 @@ static ssize_t tun_do_read(struct tun_struct *tun, struct tun_file *tfile,
> struct sk_buff *skb = ptr;
>
> ret = tun_put_user(tun, tfile, skb, to);
> - if (unlikely(ret < 0))
> - kfree_skb(skb);
> - else
> + if (unlikely(ret < 0)) {
> + dev_core_stats_tx_dropped_inc(tun->dev);
I don't think counters need to be set in these recv syscall paths,
where an error is communicated through the return vaule.
> + kfree_skb_reason(skb, drop_reason);
> + } else {
> consume_skb(skb);
> + }
> }
>
> return ret;
> --
> 2.31.1
>
>
>
prev parent reply other threads:[~2025-07-30 16:45 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-07-30 9:29 [PATCH] tap/tun: add stats accounting when failed to transfer data to user zhangyanjun
2025-07-30 16:45 ` Willem de Bruijn [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=688a4c3dd337_1cb79529426@willemb.c.googlers.com.notmuch \
--to=willemdebruijn.kernel@gmail.com \
--cc=jasowang@redhat.com \
--cc=linux-kernel@vger.kernel.org \
--cc=netdev@vger.kernel.org \
--cc=zhangyanjun@cestc.cn \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox