* [PATCH 1/2] um: fix unused variable warning
@ 2025-06-05 5:03 Benjamin Berg
2025-06-05 5:03 ` [PATCH 2/2] um: remove "extern" from implementation of sigchld_handler Benjamin Berg
0 siblings, 1 reply; 2+ messages in thread
From: Benjamin Berg @ 2025-06-05 5:03 UTC (permalink / raw)
To: linux-um; +Cc: Benjamin Berg, kernel test robot
From: Benjamin Berg <benjamin.berg@intel.com>
The code was updated to access the PID of the userspace stub process in
a different way, making the local cpu variable obsolete. Remove it.
Reported-by: kernel test robot <lkp@intel.com>
Closes: https://lore.kernel.org/oe-kbuild-all/202506050008.AwXLNxQX-lkp@intel.com/
Fixes: 406d17c6c370 ("um: Implement kernel side of SECCOMP based process handling")
Signed-off-by: Benjamin Berg <benjamin.berg@intel.com>
---
arch/x86/um/tls_32.c | 3 ---
1 file changed, 3 deletions(-)
diff --git a/arch/x86/um/tls_32.c b/arch/x86/um/tls_32.c
index 21cbb70cf771..cb3f17627d16 100644
--- a/arch/x86/um/tls_32.c
+++ b/arch/x86/um/tls_32.c
@@ -25,7 +25,6 @@ int host_gdt_entry_tls_min;
static int do_set_thread_area(struct task_struct* task, struct user_desc *info)
{
int ret;
- u32 cpu;
if (info->entry_number < host_gdt_entry_tls_min ||
info->entry_number >= host_gdt_entry_tls_min + GDT_ENTRY_TLS_ENTRIES)
@@ -41,9 +40,7 @@ static int do_set_thread_area(struct task_struct* task, struct user_desc *info)
return 0;
}
- cpu = get_cpu();
ret = os_set_thread_area(info, task->mm->context.id.pid);
- put_cpu();
if (ret)
printk(KERN_ERR "PTRACE_SET_THREAD_AREA failed, err = %d, "
--
2.49.0
^ permalink raw reply related [flat|nested] 2+ messages in thread* [PATCH 2/2] um: remove "extern" from implementation of sigchld_handler
2025-06-05 5:03 [PATCH 1/2] um: fix unused variable warning Benjamin Berg
@ 2025-06-05 5:03 ` Benjamin Berg
0 siblings, 0 replies; 2+ messages in thread
From: Benjamin Berg @ 2025-06-05 5:03 UTC (permalink / raw)
To: linux-um; +Cc: Benjamin Berg, kernel test robot
From: Benjamin Berg <benjamin.berg@intel.com>
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>
---
arch/um/kernel/irq.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/arch/um/kernel/irq.c b/arch/um/kernel/irq.c
index f1787be3983c..0dfaf96bb7da 100644
--- 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);
}
--
2.49.0
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2025-06-05 5:04 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-06-05 5:03 [PATCH 1/2] um: fix unused variable warning Benjamin Berg
2025-06-05 5:03 ` [PATCH 2/2] um: remove "extern" from implementation of sigchld_handler Benjamin Berg
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).