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 'block-6.11-20240830' of git://git.kernel.dk/linux

Pull block fix from Jens Axboe:
"Fix for a single regression for WRITE_SAME introduced in the 6.11
merge window"

* tag 'block-6.11-20240830' of git://git.kernel.dk/linux:
block: fix detection of unsupported WRITE SAME in blkdev_issue_write_zeroes

+1 -1
+1 -1
block/blk-lib.c
··· 174 174 * on an I/O error, in which case we'll turn any error into 175 175 * "not supported" here. 176 176 */ 177 - if (ret && !limit) 177 + if (ret && !bdev_write_zeroes_sectors(bdev)) 178 178 return -EOPNOTSUPP; 179 179 return ret; 180 180 }