* [merged mm-stable] mm-swap-use-str_true_false-helper-function.patch removed from -mm tree
@ 2024-11-06 1:00 Andrew Morton
0 siblings, 0 replies; only message in thread
From: Andrew Morton @ 2024-11-06 1:00 UTC (permalink / raw)
To: mm-commits, thorsten.blum, akpm
The quilt patch titled
Subject: mm: swap: use str_true_false() helper function
has been removed from the -mm tree. Its filename was
mm-swap-use-str_true_false-helper-function.patch
This patch was dropped because it was merged into the mm-stable branch
of git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm
------------------------------------------------------
From: Thorsten Blum <thorsten.blum@linux.dev>
Subject: mm: swap: use str_true_false() helper function
Date: Wed, 16 Oct 2024 16:10:41 +0200
Remove hard-coded strings by using the helper function str_true_false().
Link: https://lkml.kernel.org/r/20241016141040.79168-2-thorsten.blum@linux.dev
Signed-off-by: Thorsten Blum <thorsten.blum@linux.dev>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
---
mm/swap_state.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
--- a/mm/swap_state.c~mm-swap-use-str_true_false-helper-function
+++ a/mm/swap_state.c
@@ -889,8 +889,7 @@ struct folio *swapin_readahead(swp_entry
static ssize_t vma_ra_enabled_show(struct kobject *kobj,
struct kobj_attribute *attr, char *buf)
{
- return sysfs_emit(buf, "%s\n",
- enable_vma_readahead ? "true" : "false");
+ return sysfs_emit(buf, "%s\n", str_true_false(enable_vma_readahead));
}
static ssize_t vma_ra_enabled_store(struct kobject *kobj,
struct kobj_attribute *attr,
_
Patches currently in -mm which might be from thorsten.blum@linux.dev are
mailmap-add-entry-for-thorsten-blum.patch
mm-show_mem-use-str_yes_no-helper-in-show_free_areas.patch
ipc-msg-replace-one-element-array-with-flexible-array-member.patch
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2024-11-06 1:00 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-11-06 1:00 [merged mm-stable] mm-swap-use-str_true_false-helper-function.patch removed from -mm tree Andrew Morton
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.