Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'iomap-6.5-merge-1' of git://git.kernel.org/pub/scm/fs/xfs/xfs-linux

Pull iomap updates from Darrick Wong:

- Fix a type signature mismatch

- Drop Christoph as maintainer

* tag 'iomap-6.5-merge-1' of git://git.kernel.org/pub/scm/fs/xfs/xfs-linux:
iomap: drop me [hch] from MAINTAINERS for iomap
fs: iomap: Change the type of blocksize from 'int' to 'unsigned int' in iomap_file_buffered_write_punch_delalloc

+1 -2
-1
MAINTAINERS
··· 10883 10883 F: drivers/net/ethernet/sgi/ioc3-eth.c 10884 10884 10885 10885 IOMAP FILESYSTEM LIBRARY 10886 - M: Christoph Hellwig <hch@infradead.org> 10887 10886 M: Darrick J. Wong <djwong@kernel.org> 10888 10887 L: linux-xfs@vger.kernel.org 10889 10888 L: linux-fsdevel@vger.kernel.org
+1 -1
fs/iomap/buffered-io.c
··· 1076 1076 { 1077 1077 loff_t start_byte; 1078 1078 loff_t end_byte; 1079 - int blocksize = i_blocksize(inode); 1079 + unsigned int blocksize = i_blocksize(inode); 1080 1080 1081 1081 if (iomap->type != IOMAP_DELALLOC) 1082 1082 return 0;