diff options
author | Matthew Wilcox (Oracle) <willy@infradead.org> | 2022-04-29 17:12:16 +0200 |
---|---|---|
committer | Matthew Wilcox (Oracle) <willy@infradead.org> | 2022-05-09 22:21:46 +0200 |
commit | 933906f8e8e4110c56db9bddd1281e4e4983a2bb (patch) | |
tree | b5aac453c985c3a3d9aa5af2451eb445f6acb0e0 /fs/ntfs/mft.h | |
parent | nfs: Convert nfs to read_folio (diff) | |
download | linux-933906f8e8e4110c56db9bddd1281e4e4983a2bb.tar.xz linux-933906f8e8e4110c56db9bddd1281e4e4983a2bb.zip |
ntfs: Convert ntfs to read_folio
This is a "weak" conversion which converts straight back to using pages.
A full conversion should be performed at some point, hopefully by
someone familiar with the filesystem.
Signed-off-by: Matthew Wilcox (Oracle) <willy@infradead.org>
Diffstat (limited to 'fs/ntfs/mft.h')
-rw-r--r-- | fs/ntfs/mft.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ntfs/mft.h b/fs/ntfs/mft.h index 17bfefc30271..49c001af16ed 100644 --- a/fs/ntfs/mft.h +++ b/fs/ntfs/mft.h @@ -79,7 +79,7 @@ extern int write_mft_record_nolock(ntfs_inode *ni, MFT_RECORD *m, int sync); * paths and via the page cache write back code paths or between writing * neighbouring mft records residing in the same page. * - * Locking the page also serializes us against ->readpage() if the page is not + * Locking the page also serializes us against ->read_folio() if the page is not * uptodate. * * On success, clean the mft record and return 0. On error, leave the mft |