The patch titled Subject: kernel/fork.c: fix typos has been added to the -mm tree. Its filename is kernel-fork-fix-typo-issue.patch This patch should soon appear at https://ozlabs.org/~akpm/mmots/broken-out/kernel-fork-fix-typo-issue.patch and later at https://ozlabs.org/~akpm/mmotm/broken-out/kernel-fork-fix-typo-issue.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/process/submit-checklist.rst when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Xiaofeng Cao <cxfcosmos@xxxxxxxxx> Subject: kernel/fork.c: fix typos change 'ancestoral' to 'ancestral' change 'reuseable' to 'reusable' delete 'do' grammatically Link: https://lkml.kernel.org/r/20210317082031.11692-1-caoxiaofeng@xxxxxxxxxx Signed-off-by: Xiaofeng Cao <caoxiaofeng@xxxxxxxxxx> Reviewed-by: Christian Brauner <christian.brauner@xxxxxxxxxx> Cc: Jens Axboe <axboe@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- kernel/fork.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) --- a/kernel/fork.c~kernel-fork-fix-typo-issue +++ a/kernel/fork.c @@ -1142,7 +1142,7 @@ void mmput_async(struct mm_struct *mm) * invocations: in mmput() nobody alive left, in execve task is single * threaded. sys_prctl(PR_SET_MM_MAP/EXE_FILE) also needs to set the * mm->exe_file, but does so without using set_mm_exe_file() in order - * to do avoid the need for any locks. + * to avoid the need for any locks. */ void set_mm_exe_file(struct mm_struct *mm, struct file *new_exe_file) { @@ -1733,7 +1733,7 @@ static int pidfd_release(struct inode *i * /proc/<pid>/status where Pid and NSpid are always shown relative to * the pid namespace of the procfs instance. The difference becomes * obvious when sending around a pidfd between pid namespaces from a - * different branch of the tree, i.e. where no ancestoral relation is + * different branch of the tree, i.e. where no ancestral relation is * present between the pid namespaces: * - create two new pid namespaces ns1 and ns2 in the initial pid * namespace (also take care to create new mount namespaces in the @@ -2722,8 +2722,8 @@ static bool clone3_args_valid(struct ker return false; /* - * - make the CLONE_DETACHED bit reuseable for clone3 - * - make the CSIGNAL bits reuseable for clone3 + * - make the CLONE_DETACHED bit reusable for clone3 + * - make the CSIGNAL bits reusable for clone3 */ if (kargs->flags & (CLONE_DETACHED | CSIGNAL)) return false; _ Patches currently in -mm which might be from cxfcosmos@xxxxxxxxx are kernel-user_namespace-fix-typo-issue.patch kernel-fork-fix-typo-issue.patch