projects
/
linux-2.6-microblaze.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
27a0410
)
um: remove "extern" from implementation of sigchld_handler
author
Benjamin Berg
<benjamin.berg@intel.com>
Thu, 5 Jun 2025 05:03:25 +0000
(07:03 +0200)
committer
Johannes Berg
<johannes.berg@intel.com>
Thu, 5 Jun 2025 09:12:13 +0000
(11:12 +0200)
There is no need to mark the function as extern in the implementation.
Reported-by: kernel test robot <lkp@intel.com>
Closes: https://lore.kernel.org/oe-kbuild-all/
202506051226
.X8r7X5aa-lkp@intel.com/
Fixes:
8420e08fe3a5
("um: Track userspace children dying in SECCOMP mode")
Signed-off-by: Benjamin Berg <benjamin.berg@intel.com>
Link:
https://patch.msgid.link/20250605050325.1077208-2-benjamin@sipsolutions.net
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
arch/um/kernel/irq.c
patch
|
blob
|
history
diff --git
a/arch/um/kernel/irq.c
b/arch/um/kernel/irq.c
index
f1787be
..
0dfaf96
100644
(file)
--- a/
arch/um/kernel/irq.c
+++ b/
arch/um/kernel/irq.c
@@
-691,8
+691,8
@@
void __init init_IRQ(void)
os_setup_epoll();
}
-
extern
void sigchld_handler(int sig, struct siginfo *unused_si,
-
struct uml_pt_regs *regs, void *mc)
+void sigchld_handler(int sig, struct siginfo *unused_si,
+ struct uml_pt_regs *regs, void *mc)
{
do_IRQ(SIGCHLD_IRQ, regs);
}