Re: [PATCH-v2 01/15] target: Convert DIF emulation to use cmd-prot_type

2015-04-07 Thread Martin K. Petersen
 nab == Nicholas A Bellinger n...@daterainc.com writes:

nab This patch changes existing DIF emulation to check the command
nab descriptor's prot_type, instead of what the backend device is
nab exposing in pi_prot_type.

nab Since this value is already set in sbc_check_prot(), go ahead and
nab use it to allow protected fabrics to function with unprotected
nab devices.

Reviewed-by: Martin K. Petersen martin.peter...@oracle.com

-- 
Martin K. Petersen  Oracle Linux Engineering
--
To unsubscribe from this list: send the line unsubscribe linux-scsi in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: [PATCH-v2 01/15] target: Convert DIF emulation to use cmd-prot_type

2015-03-30 Thread Sagi Grimberg

On 3/30/2015 6:28 AM, Nicholas A. Bellinger wrote:

From: Nicholas Bellinger n...@linux-iscsi.org

This patch changes existing DIF emulation to check the command descriptor's
prot_type, instead of what the backend device is exposing in pi_prot_type.

Since this value is already set in sbc_check_prot(), go ahead and use it to
allow protected fabrics to function with unprotected devices.

Cc: Martin Petersen martin.peter...@oracle.com
Cc: Sagi Grimberg sa...@mellanox.com
Cc: Christoph Hellwig h...@lst.de
Signed-off-by: Nicholas Bellinger n...@linux-iscsi.org
---
  drivers/target/target_core_sbc.c | 13 +++--
  1 file changed, 7 insertions(+), 6 deletions(-)

diff --git a/drivers/target/target_core_sbc.c b/drivers/target/target_core_sbc.c
index 9a2f9d3..95a7a74 100644
--- a/drivers/target/target_core_sbc.c
+++ b/drivers/target/target_core_sbc.c
@@ -1167,7 +1167,7 @@ sbc_dif_generate(struct se_cmd *cmd)
sdt = paddr + offset;
sdt-guard_tag = cpu_to_be16(crc_t10dif(daddr + j,
dev-dev_attrib.block_size));
-   if (dev-dev_attrib.pi_prot_type == 
TARGET_DIF_TYPE1_PROT)
+   if (cmd-prot_type == TARGET_DIF_TYPE1_PROT)
sdt-ref_tag = cpu_to_be32(sector  0x);
sdt-app_tag = 0;

@@ -1186,9 +1186,10 @@ sbc_dif_generate(struct se_cmd *cmd)
  }

  static sense_reason_t
-sbc_dif_v1_verify(struct se_device *dev, struct se_dif_v1_tuple *sdt,
+sbc_dif_v1_verify(struct se_cmd *cmd, struct se_dif_v1_tuple *sdt,
  const void *p, sector_t sector, unsigned int ei_lba)
  {
+   struct se_device *dev = cmd-se_dev;
int block_size = dev-dev_attrib.block_size;
__be16 csum;

@@ -1201,7 +1202,7 @@ sbc_dif_v1_verify(struct se_device *dev, struct 
se_dif_v1_tuple *sdt,
return TCM_LOGICAL_BLOCK_GUARD_CHECK_FAILED;
}

-   if (dev-dev_attrib.pi_prot_type == TARGET_DIF_TYPE1_PROT 
+   if (cmd-prot_type == TARGET_DIF_TYPE1_PROT 
be32_to_cpu(sdt-ref_tag) != (sector  0x)) {
pr_err(DIFv1 Type 1 reference failed on sector: %llu tag: 
0x%08x
sector MSB: 0x%08x\n, (unsigned long long)sector,
@@ -1209,7 +1210,7 @@ sbc_dif_v1_verify(struct se_device *dev, struct 
se_dif_v1_tuple *sdt,
return TCM_LOGICAL_BLOCK_REF_TAG_CHECK_FAILED;
}

-   if (dev-dev_attrib.pi_prot_type == TARGET_DIF_TYPE2_PROT 
+   if (cmd-prot_type == TARGET_DIF_TYPE2_PROT 
be32_to_cpu(sdt-ref_tag) != ei_lba) {
pr_err(DIFv1 Type 2 reference failed on sector: %llu tag: 
0x%08x
ei_lba: 0x%08x\n, (unsigned long long)sector,
@@ -1293,7 +1294,7 @@ sbc_dif_verify_write(struct se_cmd *cmd, sector_t start, 
unsigned int sectors,
 (unsigned long long)sector, sdt-guard_tag,
 sdt-app_tag, be32_to_cpu(sdt-ref_tag));

-   rc = sbc_dif_v1_verify(dev, sdt, daddr + j, sector,
+   rc = sbc_dif_v1_verify(cmd, sdt, daddr + j, sector,
   ei_lba);
if (rc) {
kunmap_atomic(paddr);
@@ -1354,7 +1355,7 @@ __sbc_dif_verify_read(struct se_cmd *cmd, sector_t start, 
unsigned int sectors,
continue;
}

-   rc = sbc_dif_v1_verify(dev, sdt, daddr + j, sector,
+   rc = sbc_dif_v1_verify(cmd, sdt, daddr + j, sector,
   ei_lba);
if (rc) {
kunmap_atomic(paddr);



Looks good.

Reviewed-by: Sagi Grimberg sa...@mellanox.com
--
To unsubscribe from this list: send the line unsubscribe linux-scsi in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html