diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2024-05-26 07:33:10 +0200 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2024-05-26 07:33:10 +0200 |
commit | c13320499ba0efd93174ef6462ae8a7a2933f6e7 (patch) | |
tree | 5a49e9d578be46c879831dc7c325f408c33e6fc9 /include | |
parent | Merge tag 'mm-hotfixes-stable-2024-05-25-09-13' of git://git.kernel.org/pub/s... (diff) | |
parent | cifs: Fix missing set of remote_i_size (diff) | |
download | linux-c13320499ba0efd93174ef6462ae8a7a2933f6e7.tar.xz linux-c13320499ba0efd93174ef6462ae8a7a2933f6e7.zip |
Merge tag '6.10-rc-smb3-fixes-part2' of git://git.samba.org/sfrench/cifs-2.6
Pull smb client fixes from Steve French:
- two important netfs integration fixes - including for a data
corruption and also fixes for multiple xfstests
- reenable swap support over SMB3
* tag '6.10-rc-smb3-fixes-part2' of git://git.samba.org/sfrench/cifs-2.6:
cifs: Fix missing set of remote_i_size
cifs: Fix smb3_insert_range() to move the zero_point
cifs: update internal version number
smb3: reenable swapfiles over SMB3 mounts
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/netfs.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/netfs.h b/include/linux/netfs.h index ca56a4428043..d2d291a9cdad 100644 --- a/include/linux/netfs.h +++ b/include/linux/netfs.h @@ -400,6 +400,8 @@ ssize_t netfs_perform_write(struct kiocb *iocb, struct iov_iter *iter, ssize_t netfs_buffered_write_iter_locked(struct kiocb *iocb, struct iov_iter *from, struct netfs_group *netfs_group); ssize_t netfs_unbuffered_write_iter(struct kiocb *iocb, struct iov_iter *from); +ssize_t netfs_unbuffered_write_iter_locked(struct kiocb *iocb, struct iov_iter *iter, + struct netfs_group *netfs_group); ssize_t netfs_file_write_iter(struct kiocb *iocb, struct iov_iter *from); /* Address operations API */ |