diff options
author | Matthew Wilcox (Oracle) <willy@infradead.org> | 2024-03-26 18:10:31 +0100 |
---|---|---|
committer | Andrew Morton <akpm@linux-foundation.org> | 2024-04-26 05:56:15 +0200 |
commit | 4dc7d37370951fe86216f03a4e0a6909f9b90a8c (patch) | |
tree | 7bb17a1955a75bddade006c557f24dd3c4bb1bb6 /mm/migrate.c | |
parent | slub: remove use of page->flags (diff) | |
download | linux-4dc7d37370951fe86216f03a4e0a6909f9b90a8c.tar.xz linux-4dc7d37370951fe86216f03a4e0a6909f9b90a8c.zip |
remove references to page->flags in documentation
Mostly rewording, but remove entirely the copy of page_fixed_fake_head()
in the documentation; we can refer people to the actual source if
necessary.
Link: https://lkml.kernel.org/r/20240326171045.410737-10-willy@infradead.org
Signed-off-by: Matthew Wilcox (Oracle) <willy@infradead.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Diffstat (limited to 'mm/migrate.c')
-rw-r--r-- | mm/migrate.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mm/migrate.c b/mm/migrate.c index a31aa75d223d..285072bca29c 100644 --- a/mm/migrate.c +++ b/mm/migrate.c @@ -113,7 +113,7 @@ bool isolate_movable_page(struct page *page, isolate_mode_t mode) if (!mops->isolate_page(&folio->page, mode)) goto out_no_isolated; - /* Driver shouldn't use PG_isolated bit of page->flags */ + /* Driver shouldn't use the isolated flag */ WARN_ON_ONCE(folio_test_isolated(folio)); folio_set_isolated(folio); folio_unlock(folio); |