diff options
author | Matthew Wilcox (Oracle) <willy@infradead.org> | 2025-02-18 05:52:01 +0000 |
---|---|---|
committer | Jaegeuk Kim <jaegeuk@kernel.org> | 2025-03-04 17:02:27 +0000 |
commit | d96e2802a802bea49973f82d921b45de910ecaca (patch) | |
tree | 02d551955a6dda6d0ccae33fd1f271e340979e3c /mm/filemap.c | |
parent | 0cd402baa03b0cd790ddbfbce5aadb2ab6373263 (diff) |
mm: Remove wait_on_page_locked()
This compatibility wrapper has no callers left, so remove it.
Signed-off-by: Matthew Wilcox (Oracle) <willy@infradead.org>
Reviewed-by: Chao Yu <chao@kernel.org>
Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
Diffstat (limited to 'mm/filemap.c')
-rw-r--r-- | mm/filemap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mm/filemap.c b/mm/filemap.c index 804d7365680c..09a2c59a1ccb 100644 --- a/mm/filemap.c +++ b/mm/filemap.c @@ -1379,7 +1379,7 @@ repeat: * @ptl: already locked ptl. This function will drop the lock. * * Wait for a migration entry referencing the given page to be removed. This is - * equivalent to put_and_wait_on_page_locked(page, TASK_UNINTERRUPTIBLE) except + * equivalent to folio_put_wait_locked(folio, TASK_UNINTERRUPTIBLE) except * this can be called without taking a reference on the page. Instead this * should be called while holding the ptl for the migration entry referencing * the page. |