From: Linus Torvalds Date: Mon, 29 Sep 2025 17:36:50 +0000 (-0700) Subject: Merge tag 'kernel-6.18-rc1.clone3' of git://git.kernel.org/pub/scm/linux/kernel/git... X-Git-Url: http://git.monstr.eu/?a=commitdiff_plain;h=722df25ddf4f13e303dcc4cd65b3df5b197a79e6;p=linux-2.6-microblaze.git Merge tag 'kernel-6.18-rc1.clone3' of git://git./linux/kernel/git/vfs/vfs Pull copy_process updates from Christian Brauner: "This contains the changes to enable support for clone3() on nios2 which apparently is still a thing. The more exciting part of this is that it cleans up the inconsistency in how the 64-bit flag argument is passed from copy_process() into the various other copy_*() helpers" [ Fixed up rv ltl_monitor 32-bit support as per Sasha Levin in the merge ] * tag 'kernel-6.18-rc1.clone3' of git://git.kernel.org/pub/scm/linux/kernel/git/vfs/vfs: nios2: implement architecture-specific portion of sys_clone3 arch: copy_thread: pass clone_flags as u64 copy_process: pass clone_flags as u64 across calltree copy_sighand: Handle architectures where sizeof(unsigned long) < sizeof(u64) --- 722df25ddf4f13e303dcc4cd65b3df5b197a79e6 diff --cc include/rv/ltl_monitor.h index 67031a774e3d,67031a774e3d..5368cf5fd623 --- a/include/rv/ltl_monitor.h +++ b/include/rv/ltl_monitor.h @@@ -56,7 -56,7 +56,7 @@@ static void ltl_task_init(struct task_s ltl_atoms_fetch(task, mon); } --static void handle_task_newtask(void *data, struct task_struct *task, unsigned long flags) ++static void handle_task_newtask(void *data, struct task_struct *task, u64 flags) { ltl_task_init(task, true); }