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 'xfs-4.18-fixes-5' of git://git.kernel.org/pub/scm/fs/xfs/xfs-linux

Pull xfs bugfix from Darrick Wong:
"One more patch for 4.18 to fix a coding error in the iomap_bmap()
function introduced in -rc1: fix incorrect shifting"

* tag 'xfs-4.18-fixes-5' of git://git.kernel.org/pub/scm/fs/xfs/xfs-linux:
fs: fix iomap_bmap position calculation

+1 -1
+1 -1
fs/iomap.c
··· 1443 1443 const struct iomap_ops *ops) 1444 1444 { 1445 1445 struct inode *inode = mapping->host; 1446 - loff_t pos = bno >> inode->i_blkbits; 1446 + loff_t pos = bno << inode->i_blkbits; 1447 1447 unsigned blocksize = i_blocksize(inode); 1448 1448 1449 1449 if (filemap_write_and_wait(mapping))