mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-19 21:58:04 +00:00
13cdc8955c
Changelog: https://cdn.kernel.org/pub/linux/kernel/v6.x/ChangeLog-6.1.80 Manually rebased: generic/hack-6.1/650-netfilter-add-xt_FLOWOFFLOAD-target.patch[1] All other patches automatically rebased. 1. Acknowledgement to @heheb and @DragonBluep. Upstream commit for ref: https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v6.1.80&id=9c5662e95a8dcc232c3ef4deb21033badcd260f6 Build system: x86/64 Build-tested: x86/64/AMD Cezanne, ramips/tplink_archer-a6-v3 Run-tested: x86/64/AMD Cezanne, ramips/tplink_archer-a6-v3 Signed-off-by: John Audia <therealgraysky@proton.me>
25 lines
822 B
Diff
25 lines
822 B
Diff
From 1fbe96ec05c41b313b4e7cc4b39b191b4a3f7540 Mon Sep 17 00:00:00 2001
|
|
From: Samuel Holland <samuel@sholland.org>
|
|
Date: Sat, 7 May 2022 18:38:34 -0500
|
|
Subject: [PATCH 012/117] irqchip/sifive-plic: Enable oneshot-safe threaded
|
|
EOIs
|
|
|
|
Signed-off-by: Samuel Holland <samuel@sholland.org>
|
|
---
|
|
drivers/irqchip/irq-sifive-plic.c | 4 +++-
|
|
1 file changed, 3 insertions(+), 1 deletion(-)
|
|
|
|
--- a/drivers/irqchip/irq-sifive-plic.c
|
|
+++ b/drivers/irqchip/irq-sifive-plic.c
|
|
@@ -207,7 +207,9 @@ static struct irq_chip plic_chip = {
|
|
.irq_set_affinity = plic_set_affinity,
|
|
#endif
|
|
.irq_set_type = plic_irq_set_type,
|
|
- .flags = IRQCHIP_AFFINITY_PRE_STARTUP,
|
|
+ .flags = IRQCHIP_ONESHOT_SAFE |
|
|
+ IRQCHIP_EOI_THREADED |
|
|
+ IRQCHIP_AFFINITY_PRE_STARTUP,
|
|
};
|
|
|
|
static int plic_irq_set_type(struct irq_data *d, unsigned int type)
|