diff options
author | 2023-12-15 20:47:07 +0000 | |
---|---|---|
committer | 2024-01-04 10:47:56 -0500 | |
commit | 12fc0a963128b54b82e98b9909f463e784b90b07 (patch) | |
tree | fbbf286373172dbab758f45ab87ccdefecfba4bd /fs/nfs/file.c | |
parent | NFS: drop unused nfs_direct_req bytes_left (diff) | |
download | linux-rng-12fc0a963128b54b82e98b9909f463e784b90b07.tar.xz linux-rng-12fc0a963128b54b82e98b9909f463e784b90b07.zip |
nfs: Remove writepage
NFS already has writepages and migrate_folio, so it does not need to
implement writepage. The writepage operation is deprecated as it leads
to worse performance under high memory pressure due to folios being
written out in LRU order rather than sequentially within a file.
Signed-off-by: Matthew Wilcox (Oracle) <willy@infradead.org>
Signed-off-by: Anna Schumaker <Anna.Schumaker@Netapp.com>
Diffstat (limited to 'fs/nfs/file.c')
-rw-r--r-- | fs/nfs/file.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/fs/nfs/file.c b/fs/nfs/file.c index 3f9768810427..e437de2a5ad4 100644 --- a/fs/nfs/file.c +++ b/fs/nfs/file.c @@ -558,7 +558,6 @@ const struct address_space_operations nfs_file_aops = { .read_folio = nfs_read_folio, .readahead = nfs_readahead, .dirty_folio = filemap_dirty_folio, - .writepage = nfs_writepage, .writepages = nfs_writepages, .write_begin = nfs_write_begin, .write_end = nfs_write_end, |