* [folded-merged] syscallh-add-syscall_set_arguments-fix.patch removed from -mm tree
@ 2025-05-11 3:36 Andrew Morton
0 siblings, 0 replies; only message in thread
From: Andrew Morton @ 2025-05-11 3:36 UTC (permalink / raw)
To: mm-commits, macro, ldv, deller, charlie, nathan, akpm
The quilt patch titled
Subject: syscallh-add-syscall_set_arguments-fix
has been removed from the -mm tree. Its filename was
syscallh-add-syscall_set_arguments-fix.patch
This patch was dropped because it was folded into syscallh-add-syscall_set_arguments.patch
------------------------------------------------------
From: Nathan Chancellor <nathan@kernel.org>
Subject: syscallh-add-syscall_set_arguments-fix
Date: Tue, 8 Apr 2025 14:31:31 -0700
fix compile time fortify checks
Link: https://lkml.kernel.org/r/20250408213131.GA2872426@ax162
Signed-off-by: Nathan Chancellor <nathan@kernel.org>
Cc: Charlie Jenkins <charlie@rivosinc.com>
Cc: Helge Deller <deller@gmx.de> # parisc
Cc: Maciej W. Rozycki <macro@orcam.me.uk>
Cc: "Dmitry V. Levin" <ldv@strace.io>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
---
arch/riscv/include/asm/syscall.h | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
--- a/arch/riscv/include/asm/syscall.h~syscallh-add-syscall_set_arguments-fix
+++ a/arch/riscv/include/asm/syscall.h
@@ -74,8 +74,11 @@ static inline void syscall_set_arguments
const unsigned long *args)
{
regs->orig_a0 = args[0];
- args++;
- memcpy(®s->a1, args, 5 * sizeof(regs->a1));
+ regs->a1 = args[1];
+ regs->a2 = args[2];
+ regs->a3 = args[3];
+ regs->a4 = args[4];
+ regs->a5 = args[5];
}
static inline int syscall_get_arch(struct task_struct *task)
_
Patches currently in -mm which might be from nathan@kernel.org are
syscallh-add-syscall_set_arguments.patch
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2025-05-11 3:36 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-05-11 3:36 [folded-merged] syscallh-add-syscall_set_arguments-fix.patch removed from -mm tree Andrew Morton
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.