Skip to content

Commit

Permalink
remove stupid handler message
Browse files Browse the repository at this point in the history
  • Loading branch information
antheas committed Jan 5, 2025
1 parent 6f15334 commit b708051
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 1 deletion.
30 changes: 30 additions & 0 deletions handheld.patch
Original file line number Diff line number Diff line change
Expand Up @@ -42986,6 +42986,36 @@ index 000000000000..d7bc238e16da
2.47.1


From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
From: Antheas Kapenekakis <[email protected]>
Date: Sun, 5 Jan 2025 22:05:29 +0100
Subject: [NOT FOR UPSTREAM] remove stupid "No IRQ Handler for vector" message

---
arch/x86/kernel/irq.c | 6 +-----
1 file changed, 1 insertion(+), 5 deletions(-)

diff --git a/arch/x86/kernel/irq.c b/arch/x86/kernel/irq.c
index 385e3a5fc304..d5e86c30e7b7 100644
--- a/arch/x86/kernel/irq.c
+++ b/arch/x86/kernel/irq.c
@@ -259,11 +259,7 @@ static __always_inline int call_irq_handler(int vector, struct pt_regs *regs)
handle_irq(desc, regs);
} else {
ret = -EINVAL;
- if (desc == VECTOR_UNUSED) {
- pr_emerg_ratelimited("%s: %d.%u No irq handler for vector\n",
- __func__, smp_processor_id(),
- vector);
- } else {
+ if (desc != VECTOR_UNUSED) {
__this_cpu_write(vector_irq[vector], VECTOR_UNUSED);
}
}
--
2.47.1


From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
From: Abhishek Pandit-Subedi <[email protected]>
Date: Wed, 4 Dec 2019 18:30:54 -0800
Expand Down
2 changes: 1 addition & 1 deletion kernel.spec
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ Summary: The Linux kernel
# This is needed to do merge window version magic
%define patchlevel 12
# This allows pkg_release to have configurable %%{?dist} tag
%define specrelease 203%{?buildid}%{?dist}
%define specrelease 204%{?buildid}%{?dist}
# This defines the kabi tarball version
%define kabiversion 6.12.8

Expand Down

0 comments on commit b708051

Please sign in to comment.