summaryrefslogtreecommitdiff
path: root/fs/bcachefs/fs.c
diff options
context:
space:
mode:
authorKent Overstreet <kent.overstreet@gmail.com>2022-05-06 00:20:41 +0300
committerKent Overstreet <kent.overstreet@linux.dev>2023-10-23 00:09:32 +0300
commitfacc81479cab081cbcb962bfbe5d61f25230d013 (patch)
treeb6b7951e5ba5ef22b27ed449f2810060b9b9b2f9 /fs/bcachefs/fs.c
parent372c11125a2e07485fcd4cb08601f24d8a3bc3c6 (diff)
downloadlinux-facc81479cab081cbcb962bfbe5d61f25230d013.tar.xz
bcachefs: Delete bch_writepage
Per Dave Chinner and the xfs folks, .writepage is no longer needed, and it's better not to define it if .writepages is the intended path. Signed-off-by: Kent Overstreet <kent.overstreet@gmail.com>
Diffstat (limited to 'fs/bcachefs/fs.c')
-rw-r--r--fs/bcachefs/fs.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/fs/bcachefs/fs.c b/fs/bcachefs/fs.c
index d8cd32b5d765..b2bc28d0cf05 100644
--- a/fs/bcachefs/fs.c
+++ b/fs/bcachefs/fs.c
@@ -1113,7 +1113,6 @@ static const struct inode_operations bch_special_inode_operations = {
};
static const struct address_space_operations bch_address_space_operations = {
- .writepage = bch2_writepage,
.read_folio = bch2_read_folio,
.writepages = bch2_writepages,
.readahead = bch2_readahead,