diff options
author | 2024-08-21 20:34:37 +0100 | |
---|---|---|
committer | 2024-09-03 21:15:44 -0700 | |
commit | 32f51ead3d7771cdec29f75e08d50a76d2c6253d (patch) | |
tree | 6e0a9b32d4ee97c7bbcb41d6228dc12390f92067 /include/linux/mm_types.h | |
parent | mm: remove PageReadahead (diff) | |
download | wireguard-linux-32f51ead3d7771cdec29f75e08d50a76d2c6253d.tar.xz wireguard-linux-32f51ead3d7771cdec29f75e08d50a76d2c6253d.zip |
mm: remove PageSwapCache
This flag is now only used on folios, so we can remove all the page
accessors and reword the comments that refer to them.
Link: https://lkml.kernel.org/r/20240821193445.2294269-5-willy@infradead.org
Signed-off-by: Matthew Wilcox (Oracle) <willy@infradead.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Diffstat (limited to 'include/linux/mm_types.h')
-rw-r--r-- | include/linux/mm_types.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/mm_types.h b/include/linux/mm_types.h index 2419e60c9a7f..6e3bdf8e38bc 100644 --- a/include/linux/mm_types.h +++ b/include/linux/mm_types.h @@ -109,7 +109,7 @@ struct page { /** * @private: Mapping-private opaque data. * Usually used for buffer_heads if PagePrivate. - * Used for swp_entry_t if PageSwapCache. + * Used for swp_entry_t if swapcache flag set. * Indicates order in the buddy system if PageBuddy. */ unsigned long private; |