]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
Merge tag 'kernel-6.18-rc1.clone3' of git://git.kernel.org/pub/scm/linux/kernel/git...
authorLinus Torvalds <torvalds@linux-foundation.org>
Mon, 29 Sep 2025 17:36:50 +0000 (10:36 -0700)
committerLinus Torvalds <torvalds@linux-foundation.org>
Mon, 29 Sep 2025 17:36:50 +0000 (10:36 -0700)
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)

1  2 
fs/namespace.c
include/linux/pid_namespace.h
include/rv/ltl_monitor.h
kernel/fork.c
kernel/pid_namespace.c
kernel/sched/core.c
kernel/sched/fair.c
kernel/sched/sched.h

diff --cc fs/namespace.c
Simple merge
Simple merge
index 67031a774e3d3c1e07653f5ddffca433f0ec4493,67031a774e3d3c1e07653f5ddffca433f0ec4493..5368cf5fd623e74a5739d2e0b3fc2c27c4bad597
@@@ -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);
  }
diff --cc kernel/fork.c
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge