Message ID | 20200818173411.404104-12-christian.brauner@ubuntu.com |
---|---|
State | Accepted |
Commit | 06fe45634942dc96c316bbb789049a4b0b692542 |
Headers | show |
Series | Introduce kernel_clone(), kill _do_fork() | expand |
diff --git a/include/linux/sched/task.h b/include/linux/sched/task.h index d9ef07359c96..44a798bf21b4 100644 --- a/include/linux/sched/task.h +++ b/include/linux/sched/task.h @@ -84,10 +84,6 @@ extern void exit_files(struct task_struct *); extern void exit_itimers(struct signal_struct *); extern int kernel_clone(struct kernel_clone_args *kargs); -static inline long _do_fork(struct kernel_clone_args *kargs) -{ - return kernel_clone(kargs); -} struct task_struct *fork_idle(int); struct mm_struct *copy_init_mm(void); extern pid_t kernel_thread(int (*fn)(void *), void *arg, unsigned long flags);
Now that all callers of _do_fork() have been switched to kernel_clone() remove the _do_fork() helper. Signed-off-by: Christian Brauner <christian.brauner@ubuntu.com> --- include/linux/sched/task.h | 4 ---- 1 file changed, 4 deletions(-)