mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-19 05:38:00 +00:00
12f12df569
Changelog: https://cdn.kernel.org/pub/linux/kernel/v6.x/ChangeLog-6.6.55 Added the following default ksym to target/linux/generic/config-6.6: CONFIG_PROC_MEM_ALWAYS_FORCE=y # CONFIG_PROC_MEM_FORCE_PTRACE is not set # CONFIG_PROC_MEM_NO_FORCE is not set Removed upstreamed: generic/backport-6.6/780-23-v6.12-r8169-Fix-spelling-mistake-tx_underun-tx_underrun.patch[1] generic/backport-6.6/780-25-v6.12-r8169-add-tally-counter-fields-added-with-RTL8125.patch[2] generic/pending-6.6/684-gso-fix-gso-fraglist-segmentation-after-pull-from-fr.patch[3] lantiq/patches-6.6/0025-v6.12-net-ethernet-lantiq_etop-fix-memory-disclosure.patch[4] Manually rebased: bcm27xx/patches-6.6/950-0086-Main-bcm2708-bcm2709-linux-port.patch bcm27xx/patches-6.6/950-0998-i2c-designware-Add-support-for-bus-clear-feature.patch All other patches automatically rebased. 1. https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v6.6.56&id=f02fcb7283b1c25f7e3ae07d7a2c830e06eb1a62 2. https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v6.6.56&id=1c723d785adb711496bc64c24240f952f4faaabf 3. https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v6.6.56&id=af3122f5fdc0d00581d6e598a668df6bf54c9daa 4. https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v6.6.56&id=e66e38d07b31e177ca430758ed97fbc79f27d966 Build system: x86/64 Build-tested: x86/64/AMD Cezanne, flogic/xiaomi_redmi-router-ax6000-ubootmod, ramips/tplink_archer-a6-v3 Run-tested: x86/64/AMD Cezanne, flogic/xiaomi_redmi-router-ax6000-ubootmod, ramips/tplink_archer-a6-v3 Signed-off-by: John Audia <therealgraysky@proton.me> Link: https://github.com/openwrt/openwrt/pull/16655 Signed-off-by: Nick Hainke <vincent@systemli.org>
97 lines
3.2 KiB
Diff
97 lines
3.2 KiB
Diff
From 7f3eb2174512fe6c9c0f062e96eccb0d3cc6d5cd Mon Sep 17 00:00:00 2001
|
|
From: Christian Marangi <ansuelsmth@gmail.com>
|
|
Date: Wed, 18 Oct 2023 14:35:47 +0200
|
|
Subject: [PATCH] net: introduce napi_is_scheduled helper
|
|
|
|
We currently have napi_if_scheduled_mark_missed that can be used to
|
|
check if napi is scheduled but that does more thing than simply checking
|
|
it and return a bool. Some driver already implement custom function to
|
|
check if napi is scheduled.
|
|
|
|
Drop these custom function and introduce napi_is_scheduled that simply
|
|
check if napi is scheduled atomically.
|
|
|
|
Update any driver and code that implement a similar check and instead
|
|
use this new helper.
|
|
|
|
Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
|
|
Signed-off-by: Paolo Abeni <pabeni@redhat.com>
|
|
---
|
|
drivers/net/ethernet/chelsio/cxgb3/sge.c | 8 --------
|
|
drivers/net/wireless/realtek/rtw89/core.c | 2 +-
|
|
include/linux/netdevice.h | 23 +++++++++++++++++++++++
|
|
net/core/dev.c | 2 +-
|
|
4 files changed, 25 insertions(+), 10 deletions(-)
|
|
|
|
--- a/drivers/net/ethernet/chelsio/cxgb3/sge.c
|
|
+++ b/drivers/net/ethernet/chelsio/cxgb3/sge.c
|
|
@@ -2501,14 +2501,6 @@ static int napi_rx_handler(struct napi_s
|
|
return work_done;
|
|
}
|
|
|
|
-/*
|
|
- * Returns true if the device is already scheduled for polling.
|
|
- */
|
|
-static inline int napi_is_scheduled(struct napi_struct *napi)
|
|
-{
|
|
- return test_bit(NAPI_STATE_SCHED, &napi->state);
|
|
-}
|
|
-
|
|
/**
|
|
* process_pure_responses - process pure responses from a response queue
|
|
* @adap: the adapter
|
|
--- a/drivers/net/wireless/realtek/rtw89/core.c
|
|
+++ b/drivers/net/wireless/realtek/rtw89/core.c
|
|
@@ -1744,7 +1744,7 @@ static void rtw89_core_rx_to_mac80211(st
|
|
struct napi_struct *napi = &rtwdev->napi;
|
|
|
|
/* In low power mode, napi isn't scheduled. Receive it to netif. */
|
|
- if (unlikely(!test_bit(NAPI_STATE_SCHED, &napi->state)))
|
|
+ if (unlikely(!napi_is_scheduled(napi)))
|
|
napi = NULL;
|
|
|
|
rtw89_core_hw_to_sband_rate(rx_status);
|
|
--- a/include/linux/netdevice.h
|
|
+++ b/include/linux/netdevice.h
|
|
@@ -480,6 +480,29 @@ static inline bool napi_prefer_busy_poll
|
|
return test_bit(NAPI_STATE_PREFER_BUSY_POLL, &n->state);
|
|
}
|
|
|
|
+/**
|
|
+ * napi_is_scheduled - test if NAPI is scheduled
|
|
+ * @n: NAPI context
|
|
+ *
|
|
+ * This check is "best-effort". With no locking implemented,
|
|
+ * a NAPI can be scheduled or terminate right after this check
|
|
+ * and produce not precise results.
|
|
+ *
|
|
+ * NAPI_STATE_SCHED is an internal state, napi_is_scheduled
|
|
+ * should not be used normally and napi_schedule should be
|
|
+ * used instead.
|
|
+ *
|
|
+ * Use only if the driver really needs to check if a NAPI
|
|
+ * is scheduled for example in the context of delayed timer
|
|
+ * that can be skipped if a NAPI is already scheduled.
|
|
+ *
|
|
+ * Return True if NAPI is scheduled, False otherwise.
|
|
+ */
|
|
+static inline bool napi_is_scheduled(struct napi_struct *n)
|
|
+{
|
|
+ return test_bit(NAPI_STATE_SCHED, &n->state);
|
|
+}
|
|
+
|
|
bool napi_schedule_prep(struct napi_struct *n);
|
|
|
|
/**
|
|
--- a/net/core/dev.c
|
|
+++ b/net/core/dev.c
|
|
@@ -6606,7 +6606,7 @@ static int __napi_poll(struct napi_struc
|
|
* accidentally calling ->poll() when NAPI is not scheduled.
|
|
*/
|
|
work = 0;
|
|
- if (test_bit(NAPI_STATE_SCHED, &n->state)) {
|
|
+ if (napi_is_scheduled(n)) {
|
|
work = n->poll(n, weight);
|
|
trace_napi_poll(n, work, weight);
|
|
}
|