OSDN Git Service

cifs: Convert from launder_page to launder_folio
authorMatthew Wilcox (Oracle) <willy@infradead.org>
Wed, 9 Feb 2022 20:21:55 +0000 (20:21 +0000)
committerMatthew Wilcox (Oracle) <willy@infradead.org>
Tue, 15 Mar 2022 12:23:30 +0000 (08:23 -0400)
Straightforward conversion.

Signed-off-by: Matthew Wilcox (Oracle) <willy@infradead.org>
Tested-by: Damien Le Moal <damien.lemoal@opensource.wdc.com>
Acked-by: Damien Le Moal <damien.lemoal@opensource.wdc.com>
Tested-by: Mike Marshall <hubcap@omnibond.com> # orangefs
Tested-by: David Howells <dhowells@redhat.com> # afs
fs/cifs/file.c

index 076094e..3fe3c55 100644 (file)
@@ -4760,11 +4760,11 @@ static void cifs_invalidate_folio(struct folio *folio, size_t offset,
        folio_wait_fscache(folio);
 }
 
-static int cifs_launder_page(struct page *page)
+static int cifs_launder_folio(struct folio *folio)
 {
        int rc = 0;
-       loff_t range_start = page_offset(page);
-       loff_t range_end = range_start + (loff_t)(PAGE_SIZE - 1);
+       loff_t range_start = folio_pos(folio);
+       loff_t range_end = range_start + folio_size(folio);
        struct writeback_control wbc = {
                .sync_mode = WB_SYNC_ALL,
                .nr_to_write = 0,
@@ -4772,12 +4772,12 @@ static int cifs_launder_page(struct page *page)
                .range_end = range_end,
        };
 
-       cifs_dbg(FYI, "Launder page: %p\n", page);
+       cifs_dbg(FYI, "Launder page: %lu\n", folio->index);
 
-       if (clear_page_dirty_for_io(page))
-               rc = cifs_writepage_locked(page, &wbc);
+       if (folio_clear_dirty_for_io(folio))
+               rc = cifs_writepage_locked(&folio->page, &wbc);
 
-       wait_on_page_fscache(page);
+       folio_wait_fscache(folio);
        return rc;
 }
 
@@ -4958,7 +4958,7 @@ const struct address_space_operations cifs_addr_ops = {
        .releasepage = cifs_release_page,
        .direct_IO = cifs_direct_io,
        .invalidate_folio = cifs_invalidate_folio,
-       .launder_page = cifs_launder_page,
+       .launder_folio = cifs_launder_folio,
        /*
         * TODO: investigate and if useful we could add an cifs_migratePage
         * helper (under an CONFIG_MIGRATION) in the future, and also
@@ -4982,5 +4982,5 @@ const struct address_space_operations cifs_addr_ops_smallbuf = {
        .set_page_dirty = cifs_set_page_dirty,
        .releasepage = cifs_release_page,
        .invalidate_folio = cifs_invalidate_folio,
-       .launder_page = cifs_launder_page,
+       .launder_folio = cifs_launder_folio,
 };