diff options
author | Bang Li <libang.linuxer@gmail.com> | 2022-03-22 22:39:52 +0100 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2022-03-22 23:57:01 +0100 |
commit | 914c32e45dbcff2c9858589e11480b8b51140528 (patch) | |
tree | e4a50a5f975638d9681a9c0935c0f4c533ba3faf /mm/swap.c | |
parent | mm/gup: remove unused get_user_pages_locked() (diff) | |
download | linux-914c32e45dbcff2c9858589e11480b8b51140528.tar.xz linux-914c32e45dbcff2c9858589e11480b8b51140528.zip |
mm/swap: fix confusing comment in folio_mark_accessed
For unevictable pages, we don't need mark them.
Link: https://lkml.kernel.org/r/20220311141519.59948-1-libang.linuxer@gmail.com
Signed-off-by: Bang Li <libang.linuxer@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'mm/swap.c')
-rw-r--r-- | mm/swap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mm/swap.c b/mm/swap.c index bcf3ac288b56..e9786c4f36d8 100644 --- a/mm/swap.c +++ b/mm/swap.c @@ -425,7 +425,7 @@ void folio_mark_accessed(struct folio *folio) /* * Unevictable pages are on the "LRU_UNEVICTABLE" list. But, * this list is never rotated or maintained, so marking an - * evictable page accessed has no effect. + * unevictable page accessed has no effect. */ } else if (!folio_test_active(folio)) { /* |