From: Sasha Levin <sashal@kernel.org>
To: stable@vger.kernel.org
Cc: jianqi.ren.cn@windriver.com, Sasha Levin <sashal@kernel.org>
Subject: Re: [PATCH 6.1.y] net: napi: Prevent overflow of napi_defer_hard_irqs
Date: Wed, 11 Dec 2024 11:32:21 -0500 [thread overview]
Message-ID: <20241211085902-1f585196b9a0c2ff@stable.kernel.org> (raw)
In-Reply-To: <20241211101055.2070018-1-jianqi.ren.cn@windriver.com>
[ Sasha's backport helper bot ]
Hi,
The upstream commit SHA1 provided is correct: 08062af0a52107a243f7608fd972edb54ca5b7f8
WARNING: Author mismatch between patch and upstream commit:
Backport author: <jianqi.ren.cn@windriver.com>
Commit author: Joe Damato <jdamato@fastly.com>
Status in newer kernel trees:
6.12.y | Present (exact SHA1)
6.6.y | Not found
6.1.y | Not found
Note: The patch differs from the upstream commit:
---
1: 08062af0a5210 ! 1: c5ba7dcacb876 net: napi: Prevent overflow of napi_defer_hard_irqs
@@ Metadata
## Commit message ##
net: napi: Prevent overflow of napi_defer_hard_irqs
+ [ Upstream commit 08062af0a52107a243f7608fd972edb54ca5b7f8 ]
+
In commit 6f8b12d661d0 ("net: napi: add hard irqs deferral feature")
napi_defer_irqs was added to net_device and napi_defer_irqs_count was
added to napi_struct, both as type int.
@@ Commit message
Reviewed-by: Eric Dumazet <edumazet@google.com>
Link: https://patch.msgid.link/20240904153431.307932-1-jdamato@fastly.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
-
- ## Documentation/networking/net_cachelines/net_device.rst ##
-@@ Documentation/networking/net_cachelines/net_device.rst: unsigned_int num_rx_queues
- unsigned_int real_num_rx_queues - read_mostly get_rps_cpu
- struct_bpf_prog* xdp_prog - read_mostly netif_elide_gro()
- unsigned_long gro_flush_timeout - read_mostly napi_complete_done
--int napi_defer_hard_irqs - read_mostly napi_complete_done
-+u32 napi_defer_hard_irqs - read_mostly napi_complete_done
- unsigned_int gro_max_size - read_mostly skb_gro_receive
- unsigned_int gro_ipv4_max_size - read_mostly skb_gro_receive
- rx_handler_func_t* rx_handler read_mostly - __netif_receive_skb_core
+ Signed-off-by: Jianqi Ren <jianqi.ren.cn@windriver.com>
## include/linux/netdevice.h ##
@@ include/linux/netdevice.h: struct napi_struct {
@@ include/linux/netdevice.h: struct napi_struct {
int (*poll)(struct napi_struct *, int);
#ifdef CONFIG_NETPOLL
@@ include/linux/netdevice.h: struct net_device {
- unsigned int real_num_rx_queues;
- struct netdev_rx_queue *_rx;
+
+ struct bpf_prog __rcu *xdp_prog;
unsigned long gro_flush_timeout;
- int napi_defer_hard_irqs;
+ u32 napi_defer_hard_irqs;
- unsigned int gro_max_size;
- unsigned int gro_ipv4_max_size;
- rx_handler_func_t __rcu *rx_handler;
+ #define GRO_LEGACY_MAX_SIZE 65536u
+ /* TCP minimal MSS is 8 (TCP_MIN_GSO_SIZE),
+ * and shinfo->gso_segs is a 16bit field.
## net/core/net-sysfs.c ##
@@
---
Results of testing on various branches:
| Branch | Patch Apply | Build Test |
|---------------------------|-------------|------------|
| stable/linux-6.1.y | Success | Success |
next prev parent reply other threads:[~2024-12-11 16:32 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-12-11 10:10 [PATCH 6.1.y] net: napi: Prevent overflow of napi_defer_hard_irqs jianqi.ren.cn
2024-12-11 16:32 ` Sasha Levin [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-12-11 4:03 jianqi.ren.cn
2024-12-11 16:32 ` Sasha Levin
2024-12-12 4:07 ` Jakub Kicinski
2024-12-12 7:06 ` Ren, Jianqi (Jacky) (CN)
2024-12-12 11:41 ` Greg KH
2024-12-12 14:50 ` Jakub Kicinski
2024-12-12 15:17 ` Greg KH
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=20241211085902-1f585196b9a0c2ff@stable.kernel.org \
--to=sashal@kernel.org \
--cc=jianqi.ren.cn@windriver.com \
--cc=stable@vger.kernel.org \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.