The patch titled Subject: mm: make use of str_true_false helper has been added to the -mm mm-nonmm-unstable branch. Its filename is mm-make-use-of-str_true_false-helper.patch This patch will shortly appear at https://git.kernel.org/pub/scm/linux/kernel/git/akpm/25-new.git/tree/patches/mm-make-use-of-str_true_false-helper.patch This patch will later appear in the mm-nonmm-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: Hongbo Li <lihongbo22@xxxxxxxxxx> Subject: mm: make use of str_true_false helper Date: Tue, 27 Aug 2024 10:45:16 +0800 The helper str_true_false() was introduced to return "true/false" string literal. We can simplify this format by str_true_false. Link: https://lkml.kernel.org/r/20240827024517.914100-3-lihongbo22@xxxxxxxxxx Signed-off-by: Hongbo Li <lihongbo22@xxxxxxxxxx> Cc: Andy Shevchenko <andy@xxxxxxxxxx> Cc: Anna Schumaker <anna@xxxxxxxxxx> Cc: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> Cc: Kees Cook <kees@xxxxxxxxxx> Cc: Matthew Wilcox <willy@xxxxxxxxxxxxx> Cc: Trond Myklebust <trondmy@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/memory-tiers.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) --- a/mm/memory-tiers.c~mm-make-use-of-str_true_false-helper +++ a/mm/memory-tiers.c @@ -939,8 +939,7 @@ bool numa_demotion_enabled = false; static ssize_t demotion_enabled_show(struct kobject *kobj, struct kobj_attribute *attr, char *buf) { - return sysfs_emit(buf, "%s\n", - numa_demotion_enabled ? "true" : "false"); + return sysfs_emit(buf, "%s\n", str_true_false(numa_demotion_enabled)); } static ssize_t demotion_enabled_store(struct kobject *kobj, _ Patches currently in -mm which might be from lihongbo22@xxxxxxxxxx are lib-string_choices-add-str_true_false-str_false_true-helper.patch mm-make-use-of-str_true_false-helper.patch nfs-make-use-of-str_false_true-helper.patch