The patch titled Subject: mm: fix some comments formatting has been added to the -mm tree. Its filename is mm-fix-some-comments-formatting.patch This patch should soon appear at https://ozlabs.org/~akpm/mmots/broken-out/mm-fix-some-comments-formatting.patch and later at https://ozlabs.org/~akpm/mmotm/broken-out/mm-fix-some-comments-formatting.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: Chen Tao <chentao3@xxxxxxxxxxx> Subject: mm: fix some comments formatting Correct one function name "get_partials" with "get_partial". Update the old struct name of list3 with kmem_cache_node. Link: https://lkml.kernel.org/r/Message-ID: Signed-off-by: Chen Tao <chentao3@xxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/slab.c | 2 +- mm/slub.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) --- a/mm/slab.c~mm-fix-some-comments-formatting +++ a/mm/slab.c @@ -1062,7 +1062,7 @@ int slab_prepare_cpu(unsigned int cpu) * Even if all the cpus of a node are down, we don't free the * kmem_cache_node of any cache. This to avoid a race between cpu_down, and * a kmalloc allocation from another cpu for memory from the node of - * the cpu going down. The list3 structure is usually allocated from + * the cpu going down. The kmem_cache_node structure is usually allocated from * kmem_cache_create() and gets destroyed at kmem_cache_destroy(). */ int slab_dead_cpu(unsigned int cpu) --- a/mm/slub.c~mm-fix-some-comments-formatting +++ a/mm/slub.c @@ -1960,7 +1960,7 @@ static void *get_partial_node(struct kme /* * Racy check. If we mistakenly see no partial slabs then we * just allocate an empty slab. If we mistakenly try to get a - * partial slab and there is none available then get_partials() + * partial slab and there is none available then get_partial() * will return NULL. */ if (!n || !n->nr_partial) _ Patches currently in -mm which might be from chentao3@xxxxxxxxxxx are mm-fix-some-comments-formatting.patch