The patch titled Subject: mm: remove unnecessary whitespace before a quoted newline has been added to the -mm mm-unstable branch. Its filename is mm-remove-unnecessary-whitespace-before-a-quoted-newline.patch This patch will shortly appear at https://git.kernel.org/pub/scm/linux/kernel/git/akpm/25-new.git/tree/patches/mm-remove-unnecessary-whitespace-before-a-quoted-newline.patch This patch will later appear in the mm-unstable branch at git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm 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 via the mm-everything branch at git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm and is updated there every 2-3 working days ------------------------------------------------------ From: Keren Sun <kerensun@xxxxxxxxxx> Subject: mm: remove unnecessary whitespace before a quoted newline Date: Fri, 15 Nov 2024 15:57:43 -0800 Remove whitespaces before newlines for strings in pr_warn_once() Link: https://lkml.kernel.org/r/20241115235744.1419580-3-kerensun@xxxxxxxxxx Signed-off-by: Keren Sun <kerensun@xxxxxxxxxx> Reviewed-by: Roman Gushchin <roman.gushchin@xxxxxxxxx> Cc: Johannes Weiner <hannes@xxxxxxxxxxx> Cc: Michal Hocko <mhocko@xxxxxxxxxx> Cc: Muchun Song <muchun.song@xxxxxxxxx> Cc: Shakeel Butt <shakeel.butt@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/memcontrol-v1.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) --- a/mm/memcontrol-v1.c~mm-remove-unnecessary-whitespace-before-a-quoted-newline +++ a/mm/memcontrol-v1.c @@ -1040,13 +1040,13 @@ static ssize_t memcg_write_event_control } else if (!strcmp(name, "memory.oom_control")) { pr_warn_once("oom_control is deprecated and will be removed. " "Please report your usecase to linux-mm-@xxxxxxxxx" - " if you depend on this functionality. \n"); + " if you depend on this functionality.\n"); event->register_event = mem_cgroup_oom_register_event; event->unregister_event = mem_cgroup_oom_unregister_event; } else if (!strcmp(name, "memory.pressure_level")) { pr_warn_once("pressure_level is deprecated and will be removed. " "Please report your usecase to linux-mm-@xxxxxxxxx " - "if you depend on this functionality. \n"); + "if you depend on this functionality.\n"); event->register_event = vmpressure_register_event; event->unregister_event = vmpressure_unregister_event; } else if (!strcmp(name, "memory.memsw.usage_in_bytes")) { @@ -1881,7 +1881,7 @@ static int mem_cgroup_oom_control_write( pr_warn_once("oom_control is deprecated and will be removed. " "Please report your usecase to linux-mm-@xxxxxxxxx if you " - "depend on this functionality. \n"); + "depend on this functionality.\n"); /* cannot set to root cgroup and only 0 and 1 are allowed */ if (mem_cgroup_is_root(memcg) || !((val == 0) || (val == 1))) _ Patches currently in -mm which might be from kerensun@xxxxxxxxxx are mm-prefer-unsigned-int-to-bare-use-of-unsigned.patch mm-remove-unnecessary-whitespace-before-a-quoted-newline.patch mm-remove-the-non-useful-else-after-a-break-in-a-if-statement.patch