diff options
author | Matthew Wilcox (Oracle) <willy@infradead.org> | 2024-10-02 16:25:31 +0100 |
---|---|---|
committer | Andrew Morton <akpm@linux-foundation.org> | 2024-11-06 20:11:08 -0800 |
commit | b9a256352f3ba697396c26d2a74f4081335f8cef (patch) | |
tree | ad06e96cf1658d1f159c20d4446ecf53eebbb1c5 /mm/internal.h | |
parent | b33cc96c7020b923085046e5cf2e934f41c530ec (diff) | |
download | lwn-b9a256352f3ba697396c26d2a74f4081335f8cef.tar.gz lwn-b9a256352f3ba697396c26d2a74f4081335f8cef.zip |
mm: remove PageKsm()
All callers have been converted to use folio_test_ksm() or
PageAnonNotKsm(), so we can remove this wrapper.
Link: https://lkml.kernel.org/r/20241002152533.1350629-6-willy@infradead.org
Signed-off-by: Matthew Wilcox (Oracle) <willy@infradead.org>
Acked-by: David Hildenbrand <david@redhat.com>
Cc: Alex Shi <alexs@kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Diffstat (limited to 'mm/internal.h')
-rw-r--r-- | mm/internal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mm/internal.h b/mm/internal.h index 64c2eb0b160e..fc2f523258a3 100644 --- a/mm/internal.h +++ b/mm/internal.h @@ -1356,7 +1356,7 @@ static inline bool gup_must_unshare(struct vm_area_struct *vma, smp_rmb(); /* - * Note that PageKsm() pages cannot be exclusive, and consequently, + * Note that KSM pages cannot be exclusive, and consequently, * cannot get pinned. */ return !PageAnonExclusive(page); |