mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-29 01:59:02 +00:00
21549dbf7b
Update patch set for new release and add required kernel option
CONFIG_ZRAM_TRACK_ENTRY_ACTIME to generic config
Changelog: https://cdn.kernel.org/pub/linux/kernel/v6.x/ChangeLog-6.6.66
Manually rebased:
bcm27xx/patches-6.6/950-0092-MMC-added-alternative-MMC-driver.patch
bcm53xx/patches-6.6/180-usb-xhci-add-support-for-performing-fake-doorbell.patch
starfive/patches-6.6/1000-serial-8250_dw-Add-starfive-jh7100-hsuart-compatible.patch
Removed upstreamed:
bcm27xx/patches-6.6/950-0029-vc4_hdmi-Avoid-log-spam-for-audio-start-failure.patch[1]
All other patches automatically rebased.
1. https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v6.6.66&id=e0388a95736abd1f5f5a94221dd1ac24eacbd4d7
Build system: x86/64
Build-tested: bcm27xx/bcm2712, flogic/glinet_gl-mt6000, flogic/xiaomi_redmi-router-ax6000-ubootmod, ramips/tplink_archer-a6-v3, x86/64
Run-tested: bcm27xx/bcm2712, flogic/glinet_gl-mt6000, flogic/xiaomi_redmi-router-ax6000-ubootmod, ramips/tplink_archer-a6-v3, x86/64
Signed-off-by: John Audia <therealgraysky@proton.me>
Link: https://github.com/openwrt/openwrt/pull/17271
(cherry picked from commit 28f534d953
)
Link: https://github.com/openwrt/openwrt/pull/17302
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
35 lines
1.3 KiB
Diff
35 lines
1.3 KiB
Diff
From 6994520a332887f1688464f250c9ec8002a89a8e Mon Sep 17 00:00:00 2001
|
|
From: Heiner Kallweit <hkallweit1@gmail.com>
|
|
Date: Mon, 27 May 2024 21:16:56 +0200
|
|
Subject: [PATCH] r8169: disable interrupt source RxOverflow
|
|
|
|
Vendor driver calls this bit RxDescUnavail. All we do in the interrupt
|
|
handler in this case is scheduling NAPI. If we should be out of
|
|
RX descriptors, then NAPI is scheduled anyway. Therefore remove this
|
|
interrupt source. Tested on RTL8168h.
|
|
|
|
Signed-off-by: Heiner Kallweit <hkallweit1@gmail.com>
|
|
Reviewed-by: Sunil Goutham <sgoutham@marvell.com>
|
|
Link: https://lore.kernel.org/r/9b2054b2-0548-4f48-bf91-b646572093b4@gmail.com
|
|
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
|
|
---
|
|
drivers/net/ethernet/realtek/r8169_main.c | 4 +---
|
|
1 file changed, 1 insertion(+), 3 deletions(-)
|
|
|
|
--- a/drivers/net/ethernet/realtek/r8169_main.c
|
|
+++ b/drivers/net/ethernet/realtek/r8169_main.c
|
|
@@ -5118,12 +5118,10 @@ static void rtl_set_irq_mask(struct rtl8
|
|
tp->irq_mask = RxOK | RxErr | TxOK | TxErr | LinkChg;
|
|
|
|
if (tp->mac_version <= RTL_GIGA_MAC_VER_06)
|
|
- tp->irq_mask |= SYSErr | RxOverflow | RxFIFOOver;
|
|
+ tp->irq_mask |= SYSErr | RxFIFOOver;
|
|
else if (tp->mac_version == RTL_GIGA_MAC_VER_11)
|
|
/* special workaround needed */
|
|
tp->irq_mask |= RxFIFOOver;
|
|
- else
|
|
- tp->irq_mask |= RxOverflow;
|
|
}
|
|
|
|
static int rtl_alloc_irq(struct rtl8169_private *tp)
|