dm: disable WRITE SAME if it fails
authorMike Snitzer <snitzer@redhat.com>
Mon, 2 Jun 2014 19:50:06 +0000 (15:50 -0400)
committerMike Snitzer <snitzer@redhat.com>
Wed, 4 Jun 2014 13:45:52 +0000 (09:45 -0400)
commit7eee4ae2dbb2be0a15a4406718806e48b18ba831
tree4e81ea5fb259ce57ad989428dba31d503d95f342
parent989f26f5ad308f40a95f280bf9cd75e558d4f18d
dm: disable WRITE SAME if it fails

Add DM core support for disabling WRITE SAME on first failure to both
request-based and bio-based targets.  The need to disable WRITE SAME
stems from SCSI enabling it by default but then disabling it when it
fails.  When SCSI does this it returns "permanent target failure, do
not retry" using -EREMOTEIO.  Update DM core to only disable WRITE SAME
on failure if the returned error is -EREMOTEIO.

Commit f84cb8a4 ("dm mpath: disable WRITE SAME if it fails")
implemented multipath specific disabling of WRITE SAME if it fails.
However, as that commit detailed, the multipath-only solution doesn't go
far enough if bio-based DM targets are stacked ontop of the
request-based dm-multipath target (as is commonly done using dm-linear
to support partitions on multipath devices, via kpartx).

Signed-off-by: Mike Snitzer <snitzer@redhat.com>
Acked-by: Martin K. Petersen <martin.petersen@oracle.com>
Tested-by: Alex Chen <alex.chen@huawei.com>
drivers/md/dm-mpath.c
drivers/md/dm.c