[stgt] [PATCH V1 07/13] spc: fix data-in buffer generation for READ_KEYS action of PERSISTENT_RESERVE_IN
nezhinsky at gmail.com
nezhinsky at gmail.com
Tue Feb 12 15:49:22 CET 2013
From: Alexander Nezhinsky <nezhinsky at gmail.com>
Generate read_keys data-in directly in the command buffer, building registered
keys records one by one while taking into account the allocation length.
Set the actual transfer len correctly.
Signed-off-by: Alexander Nezhinsky <nezhinsky at gmail.com>
---
usr/spc.c | 38 ++++++++++++++++----------------------
1 file changed, 16 insertions(+), 22 deletions(-)
diff --git a/usr/spc.c b/usr/spc.c
index a54719f..cc7c581 100644
--- a/usr/spc.c
+++ b/usr/spc.c
@@ -893,45 +893,39 @@ static int is_pr_holder(struct scsi_lu *lu, struct registration *reg)
static int spc_pr_read_keys(int host_no, struct scsi_cmd *cmd)
{
+ uint32_t alloc_len, avail_len, actual_len, remain_len;
+ uint8_t *buf;
+ struct registration *reg;
+ uint64_t reg_key;
uint16_t asc = ASC_INVALID_FIELD_IN_CDB;
uint8_t key = ILLEGAL_REQUEST;
- struct registration *reg;
- uint16_t len;
- uint32_t keys;
- uint8_t *buf;
- int off;
- len = get_unaligned_be16(cmd->scb + 7);
- if (len < 8)
+ alloc_len = (uint32_t)get_unaligned_be16(&cmd->scb[7]);
+ if (alloc_len < 8)
goto sense;
- if (scsi_get_in_length(cmd) < len)
+ if (scsi_get_in_length(cmd) < alloc_len)
goto sense;
buf = scsi_get_in_buffer(cmd);
- memset(buf, 0, len);
-
- len &= ~(8 - 1);
- keys = 0;
- off = 8;
put_unaligned_be32(cmd->dev->prgeneration, &buf[0]);
+ actual_len = 8;
+ avail_len = 8;
+ remain_len = alloc_len - 8;
list_for_each_entry(reg, &cmd->dev->registration_list,
registration_siblings) {
- if (!len)
- continue;
- put_unaligned_be64(reg->key, &buf[off]);
-
- len -= 8;
- off += 8;
- keys++;
+ reg_key = __cpu_to_be64(reg->key);
+ actual_len += spc_memcpy(&buf[actual_len], &remain_len,
+ (uint8_t *)®_key, 8);
+ avail_len += 8;
}
- put_unaligned_be32(keys * 8, &buf[4]);
+ put_unaligned_be32(avail_len - 8, &buf[4]); /* additional length */
- scsi_set_in_resid_by_actual(cmd, keys * 8 + 8);
+ scsi_set_in_resid_by_actual(cmd, actual_len);
return SAM_STAT_GOOD;
sense:
--
1.7.9.6
--
To unsubscribe from this list: send the line "unsubscribe stgt" in
the body of a message to majordomo at vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
More information about the stgt
mailing list