]> git.baikalelectronics.ru Git - kernel.git/commit
scsi: virtio_scsi: fix pi_bytes{out,in} on 4 KiB block size devices
authorGreg Edwards <gedwards@ddn.com>
Thu, 26 Jul 2018 19:52:54 +0000 (15:52 -0400)
committerJens Axboe <axboe@kernel.dk>
Thu, 26 Jul 2018 21:49:43 +0000 (15:49 -0600)
commitd055e9007cbba8c4156da0327d5492a5c1fc6a38
tree27016d6616006a8f953e2eabec8616853aa1541b
parentec421fea2c26a74337d720804ca4b19f6bd436db
scsi: virtio_scsi: fix pi_bytes{out,in} on 4 KiB block size devices

When the underlying device is a 4 KiB logical block size device with a
protection interval exponent of 0, i.e. 4096 bytes data + 8 bytes PI, the
driver miscalculates the pi_bytes{out,in} by a factor of 8x (64 bytes).

This leads to errors on all reads and writes on 4 KiB logical block size
devices when CONFIG_BLK_DEV_INTEGRITY is enabled and the
VIRTIO_SCSI_F_T10_PI feature bit has been negotiated.

Fixes: 32bad7742fddd ("virtio-scsi: Enable DIF/DIX modes in SCSI host LLD")
Acked-by: Martin K. Petersen <martin.petersen@oracle.com>
Signed-off-by: Greg Edwards <gedwards@ddn.com>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
drivers/scsi/virtio_scsi.c