mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 16:23:55 -06:00
hw/nvme: add pi tuple size helper
A subsequent patch will introduce a new tuple size; so add a helper and use that instead of sizeof() and magic numbers. Reviewed-by: Keith Busch <kbusch@kernel.org> Signed-off-by: Klaus Jensen <k.jensen@samsung.com>
This commit is contained in:
parent
763c05dfb0
commit
ac0b34c58d
3 changed files with 21 additions and 14 deletions
|
@ -48,7 +48,7 @@ void nvme_dif_pract_generate_dif(NvmeNamespace *ns, uint8_t *buf, size_t len,
|
|||
int16_t pil = 0;
|
||||
|
||||
if (!(ns->id_ns.dps & NVME_ID_NS_DPS_FIRST_EIGHT)) {
|
||||
pil = ns->lbaf.ms - sizeof(NvmeDifTuple);
|
||||
pil = ns->lbaf.ms - nvme_pi_tuple_size(ns);
|
||||
}
|
||||
|
||||
trace_pci_nvme_dif_pract_generate_dif(len, ns->lbasz, ns->lbasz + pil,
|
||||
|
@ -145,7 +145,7 @@ uint16_t nvme_dif_check(NvmeNamespace *ns, uint8_t *buf, size_t len,
|
|||
}
|
||||
|
||||
if (!(ns->id_ns.dps & NVME_ID_NS_DPS_FIRST_EIGHT)) {
|
||||
pil = ns->lbaf.ms - sizeof(NvmeDifTuple);
|
||||
pil = ns->lbaf.ms - nvme_pi_tuple_size(ns);
|
||||
}
|
||||
|
||||
trace_pci_nvme_dif_check(prinfo, ns->lbasz + pil);
|
||||
|
@ -184,7 +184,7 @@ uint16_t nvme_dif_mangle_mdata(NvmeNamespace *ns, uint8_t *mbuf, size_t mlen,
|
|||
|
||||
|
||||
if (!(ns->id_ns.dps & NVME_ID_NS_DPS_FIRST_EIGHT)) {
|
||||
pil = ns->lbaf.ms - sizeof(NvmeDifTuple);
|
||||
pil = ns->lbaf.ms - nvme_pi_tuple_size(ns);
|
||||
}
|
||||
|
||||
do {
|
||||
|
@ -210,7 +210,7 @@ uint16_t nvme_dif_mangle_mdata(NvmeNamespace *ns, uint8_t *mbuf, size_t mlen,
|
|||
end = mbufp + mlen;
|
||||
|
||||
for (; mbufp < end; mbufp += ns->lbaf.ms) {
|
||||
memset(mbufp + pil, 0xff, sizeof(NvmeDifTuple));
|
||||
memset(mbufp + pil, 0xff, nvme_pi_tuple_size(ns));
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -284,7 +284,7 @@ static void nvme_dif_rw_check_cb(void *opaque, int ret)
|
|||
goto out;
|
||||
}
|
||||
|
||||
if (prinfo & NVME_PRINFO_PRACT && ns->lbaf.ms == 8) {
|
||||
if (prinfo & NVME_PRINFO_PRACT && ns->lbaf.ms == nvme_pi_tuple_size(ns)) {
|
||||
goto out;
|
||||
}
|
||||
|
||||
|
@ -388,7 +388,7 @@ uint16_t nvme_dif_rw(NvmeCtrl *n, NvmeRequest *req)
|
|||
|
||||
if (pract) {
|
||||
uint8_t *mbuf, *end;
|
||||
int16_t pil = ns->lbaf.ms - sizeof(NvmeDifTuple);
|
||||
int16_t pil = ns->lbaf.ms - nvme_pi_tuple_size(ns);
|
||||
|
||||
status = nvme_check_prinfo(ns, prinfo, slba, reftag);
|
||||
if (status) {
|
||||
|
@ -428,7 +428,7 @@ uint16_t nvme_dif_rw(NvmeCtrl *n, NvmeRequest *req)
|
|||
return NVME_NO_COMPLETE;
|
||||
}
|
||||
|
||||
if (nvme_ns_ext(ns) && !(pract && ns->lbaf.ms == 8)) {
|
||||
if (nvme_ns_ext(ns) && !(pract && ns->lbaf.ms == nvme_pi_tuple_size(ns))) {
|
||||
mapped_len += mlen;
|
||||
}
|
||||
|
||||
|
@ -462,7 +462,7 @@ uint16_t nvme_dif_rw(NvmeCtrl *n, NvmeRequest *req)
|
|||
qemu_iovec_init(&ctx->mdata.iov, 1);
|
||||
qemu_iovec_add(&ctx->mdata.iov, ctx->mdata.bounce, mlen);
|
||||
|
||||
if (!(pract && ns->lbaf.ms == 8)) {
|
||||
if (!(pract && ns->lbaf.ms == nvme_pi_tuple_size(ns))) {
|
||||
status = nvme_bounce_mdata(n, ctx->mdata.bounce, ctx->mdata.iov.size,
|
||||
NVME_TX_DIRECTION_TO_DEVICE, req);
|
||||
if (status) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue