diff options
Diffstat (limited to 'fs/bcachefs/fs-io-buffered.c')
-rw-r--r-- | fs/bcachefs/fs-io-buffered.c | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/fs/bcachefs/fs-io-buffered.c b/fs/bcachefs/fs-io-buffered.c index fe684adca370..4761af1f92f8 100644 --- a/fs/bcachefs/fs-io-buffered.c +++ b/fs/bcachefs/fs-io-buffered.c @@ -729,7 +729,13 @@ int bch2_writepages(struct address_space *mapping, struct writeback_control *wbc /* buffered writes: */ -int bch2_write_begin(const struct kiocb *iocb, struct address_space *mapping, +int bch2_write_begin( +#if LINUX_VERSION_CODE >= KERNEL_VERSION(6,17,0) + const struct kiocb *iocb, +#else + struct file *file, +#endif + struct address_space *mapping, loff_t pos, unsigned len, struct folio **foliop, void **fsdata) { @@ -812,7 +818,13 @@ err_unlock: return bch2_err_class(ret); } -int bch2_write_end(const struct kiocb *iocb, struct address_space *mapping, +int bch2_write_end( +#if LINUX_VERSION_CODE >= KERNEL_VERSION(6,17,0) + const struct kiocb *iocb, +#else + struct file *file, +#endif + struct address_space *mapping, loff_t pos, unsigned len, unsigned copied, struct folio *folio, void *fsdata) { |