From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-alma10-1.taild15c8.ts.net [100.103.45.18]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 93F123A4F47; Sat, 12 Sep 2026 19:13:52 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=100.103.45.18 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1789240433; cv=none; b=mnals2MPFGMI0lTyVJK6t4BtbTFMmfnSOSqTX56ENJ21/STkAXgLUB/+g+sIV1DwIFtlbaTue+4ZI+5++6cEy2GroS2dmNqxd+zXE1fLvVkHPEUMKMRodzGYdPa0cSvl6t3aUvYhEWvwcs3GWoX0JPYv3Zy+qyXJpcW3lLnYw5s= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1789240433; c=relaxed/simple; bh=LQGccwyoWxPCHLu/iUXZoqaM/PABqad9gJPwJqV57jQ=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=A6p5QK4WAdh86PSr2oMWs/hB8dC24ANUMMyZSYSMB0hky2LCiIEpfJk3V7PEgHhp9JF8cmnecCiusORcRKtgGo21P9OyuTwDj8S5TWRcqogUGefUvwbjQPxponwac5Q+69ymeeJGSFzMKnFHg9T7b2zTIOYvbZLnu6YLyzTYq6I= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=XwF6lZjM; arc=none smtp.client-ip=100.103.45.18 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="XwF6lZjM" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 4E0001F000FF; Sat, 12 Sep 2026 19:13:51 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1789240432; bh=J7ysOkgsO1dnE8KyXhfw1lBj2JpYrtH/SkUog9EyevA=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=XwF6lZjMwx0Ylhkc4KEx/2A4CpwVYbxeSoAHqvmcjh+M0EtEGfN3kFtmollo9DNvk w918Ql37o8lBVfSkeV6/sNiG3WXLdLHOL2QRbBfPPMMCxQ2+WOe+RaWeM70yZv4Ccc IBKjcuIId/nrvLGcrHCmVtJ6qr9+ufO5AzbI25VM= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Fan Ye , Simon Horman , Mika Westerberg , Jakub Kicinski , Sasha Levin Subject: [PATCH 5.15 868/935] net: thunderbolt: Count delivered packets in rx_packets and rx_bytes Date: Sat, 12 Sep 2026 09:04:58 +0200 Message-ID: <20260912065546.725333504@linuxfoundation.org> X-Mailer: git-send-email 2.55.0 In-Reply-To: <20260912065526.833703348@linuxfoundation.org> References: <20260912065526.833703348@linuxfoundation.org> User-Agent: quilt/0.69 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 5.15-stable review patch. If anyone has any objections, please let me know. ------------------ From: Fan Ye [ Upstream commit c5ae83ee02c04487b1be1d143b791ec2caca888e ] tbnet_poll() increments rx_packets once per received frame because that is the NAPI work unit, and then adds the same number to stats.rx_packets. An skb is handed to the stack only when the last frame of a packet arrives, so once the MTU exceeds TBNET_MAX_PAYLOAD_SIZE the statistic reports frames. tx_packets is bumped once per skb, so the two ends of a link disagree: at MTU 65330 the receiver reports 16 times the packets its sender sent. rx_bytes has the matching problem: frames of a packet that is later dropped mid-assembly are already accounted, so it does not correspond to rx_packets as documented. Account for both where the packet is completed, and leave the NAPI work counter alone. Fixes: e69b6c02b4c3 ("net: Add support for networking over Thunderbolt cable") Signed-off-by: Fan Ye Reviewed-by: Simon Horman Acked-by: Mika Westerberg Link: https://patch.msgid.link/20260815-tbnet-rx-stats-v1-1-8da375c2cd09@gmail.com Signed-off-by: Jakub Kicinski Signed-off-by: Sasha Levin --- drivers/net/thunderbolt.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/net/thunderbolt.c b/drivers/net/thunderbolt.c index 7900d35096b01..33cfcd0f14f7c 100644 --- a/drivers/net/thunderbolt.c +++ b/drivers/net/thunderbolt.c @@ -850,17 +850,17 @@ static int tbnet_poll(struct napi_struct *napi, int budget) last = net->rx_hdr.frame_index == net->rx_hdr.frame_count - 1; rx_packets++; - net->stats.rx_bytes += frame_size; if (last) { + /* Before eth_type_trans() pulls the Ethernet header. */ + net->stats.rx_packets++; + net->stats.rx_bytes += skb->len; skb->protocol = eth_type_trans(skb, net->dev); napi_gro_receive(&net->napi, skb); net->skb = NULL; } } - net->stats.rx_packets += rx_packets; - if (cleaned_count) tbnet_alloc_rx_buffers(net, cleaned_count); -- 2.53.0