diff options
| author | Matthew Wilcox (Oracle) <[email protected]> | 2022-02-09 20:22:10 +0000 |
|---|---|---|
| committer | Matthew Wilcox (Oracle) <[email protected]> | 2022-03-15 12:34:38 +0000 |
| commit | 7e63df00cf5e609ebbee5ffbc3df1900d8a4443c (patch) | |
| tree | e3350ffaed6685e7a6ae8a481772f5769cf5ab0d /mm/swap_state.c | |
| parent | ubifs: Convert ubifs_set_page_dirty to ubifs_dirty_folio (diff) | |
| download | kernel-7e63df00cf5e609ebbee5ffbc3df1900d8a4443c.tar.gz kernel-7e63df00cf5e609ebbee5ffbc3df1900d8a4443c.zip | |
mm: Convert swap_set_page_dirty() to swap_dirty_folio()
Straightforward conversion.
Signed-off-by: Matthew Wilcox (Oracle) <[email protected]>
Tested-by: Damien Le Moal <[email protected]>
Acked-by: Damien Le Moal <[email protected]>
Tested-by: Mike Marshall <[email protected]> # orangefs
Tested-by: David Howells <[email protected]> # afs
Diffstat (limited to 'mm/swap_state.c')
| -rw-r--r-- | mm/swap_state.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mm/swap_state.c b/mm/swap_state.c index 8d4104242100..4772afd08101 100644 --- a/mm/swap_state.c +++ b/mm/swap_state.c @@ -30,7 +30,7 @@ */ static const struct address_space_operations swap_aops = { .writepage = swap_writepage, - .set_page_dirty = swap_set_page_dirty, + .dirty_folio = swap_dirty_folio, #ifdef CONFIG_MIGRATION .migratepage = migrate_page, #endif |
