Skip to content

Commit a901a35

Browse files
committed
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
2 parents 28c7980 + 447a0bc commit a901a35

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

MAINTAINERS

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10883,7 +10883,6 @@ S: Maintained
1088310883
F: drivers/net/ethernet/sgi/ioc3-eth.c
1088410884

1088510885
IOMAP FILESYSTEM LIBRARY
10886-
M: Christoph Hellwig <[email protected]>
1088710886
M: Darrick J. Wong <[email protected]>
1088810887
1088910888

fs/iomap/buffered-io.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1076,7 +1076,7 @@ int iomap_file_buffered_write_punch_delalloc(struct inode *inode,
10761076
{
10771077
loff_t start_byte;
10781078
loff_t end_byte;
1079-
int blocksize = i_blocksize(inode);
1079+
unsigned int blocksize = i_blocksize(inode);
10801080

10811081
if (iomap->type != IOMAP_DELALLOC)
10821082
return 0;

0 commit comments

Comments
 (0)