diff options
author | Matthew Wilcox (Oracle) | 2022-02-22 10:47:09 -0500 |
---|---|---|
committer | Matthew Wilcox (Oracle) | 2022-05-08 14:28:19 -0400 |
commit | de2a931150177957d37e9c975025604f4a1fe853 (patch) | |
tree | 968e24eb9f0d0f929458487d1b258436bae0b42b /fs/ceph | |
parent | 236d93c4bf2d6da83241cc8e4625e89d9604cb43 (diff) |
fs: Remove aop_flags parameter from netfs_write_begin()
There are no more aop flags left, so remove the parameter.
Signed-off-by: Matthew Wilcox (Oracle) <willy@infradead.org>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Diffstat (limited to 'fs/ceph')
-rw-r--r-- | fs/ceph/addr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ceph/addr.c b/fs/ceph/addr.c index aa25bffd4823..415f0886bc25 100644 --- a/fs/ceph/addr.c +++ b/fs/ceph/addr.c @@ -1318,7 +1318,7 @@ static int ceph_write_begin(struct file *file, struct address_space *mapping, struct folio *folio = NULL; int r; - r = netfs_write_begin(file, inode->i_mapping, pos, len, 0, &folio, NULL); + r = netfs_write_begin(file, inode->i_mapping, pos, len, &folio, NULL); if (r == 0) folio_wait_fscache(folio); if (r < 0) { |