diff options
author | Hao Ge <gehao@kylinos.cn> | 2024-03-21 11:22:56 +0800 |
---|---|---|
committer | Andrew Morton <akpm@linux-foundation.org> | 2024-04-25 20:56:01 -0700 |
commit | eff201b8755bbc95a65165960a6464ca2ae18587 (patch) | |
tree | d003a15f5fa8131a6422f1ea58ed3061f751ba58 /include | |
parent | 0104096498858346e3ac0668add1bf682461d4aa (diff) | |
download | lwn-eff201b8755bbc95a65165960a6464ca2ae18587.tar.gz lwn-eff201b8755bbc95a65165960a6464ca2ae18587.zip |
mm/page-flags: make __PageMovable return bool
Make __PageMovable() return bool like __folio_test_movable().
Link: https://lkml.kernel.org/r/20240321032256.82063-1-gehao@kylinos.cn
Signed-off-by: Hao Ge <gehao@kylinos.cn>
Reviewed-by: David Hildenbrand <david@redhat.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/page-flags.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/page-flags.h b/include/linux/page-flags.h index 73e0b17c7728..9c7ca28ac84c 100644 --- a/include/linux/page-flags.h +++ b/include/linux/page-flags.h @@ -707,7 +707,7 @@ static __always_inline bool __folio_test_movable(const struct folio *folio) PAGE_MAPPING_MOVABLE; } -static __always_inline int __PageMovable(const struct page *page) +static __always_inline bool __PageMovable(const struct page *page) { return ((unsigned long)page->mapping & PAGE_MAPPING_FLAGS) == PAGE_MAPPING_MOVABLE; |