lib/idxd: remove unused translations

Added by mistake.

Signed-off-by: paul luse <paul.e.luse@intel.com>
Change-Id: I08fb4d105f4834a551488bcfec413a46f1404e34
Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/4811
Tested-by: SPDK CI Jenkins <sys_sgci@intel.com>
Reviewed-by: Ben Walker <benjamin.walker@intel.com>
Reviewed-by: Jim Harris <james.r.harris@intel.com>
Community-CI: Mellanox Build Bot
This commit is contained in:
paul luse 2020-10-21 14:09:22 -04:00 committed by Jim Harris
parent 63d7ac35c9
commit 9d5268b19c

View File

@ -747,7 +747,7 @@ _idxd_prep_command(struct spdk_idxd_io_channel *chan, spdk_idxd_req_cb cb_fn,
uint32_t index;
struct idxd_hw_desc *desc;
struct idxd_comp *comp;
uint64_t comp_hw_addr, desc_addr;
uint64_t comp_hw_addr;
int rc;
index = spdk_bit_array_find_first_clear(chan->ring_slots, 0);
@ -767,12 +767,6 @@ _idxd_prep_command(struct spdk_idxd_io_channel *chan, spdk_idxd_req_cb cb_fn,
return NULL;
}
rc = _vtophys(desc, &desc_addr, sizeof(struct idxd_hw_desc));
if (rc) {
spdk_bit_array_clear(chan->ring_slots, index);
return NULL;
}
_track_comp(chan, false, index, comp, desc, NULL);
desc->flags = IDXD_FLAG_COMPLETION_ADDR_VALID | IDXD_FLAG_REQUEST_COMPLETION;
@ -1110,8 +1104,6 @@ _idxd_prep_batch_cmd(struct spdk_idxd_io_channel *chan, spdk_idxd_req_cb cb_fn,
{
struct idxd_hw_desc *desc;
struct idxd_comp *comp;
uint64_t desc_addr;
int rc;
if (_is_batch_valid(batch, chan) == false) {
SPDK_ERRLOG("Attempt to add to an invalid batch.\n");
@ -1125,11 +1117,6 @@ _idxd_prep_batch_cmd(struct spdk_idxd_io_channel *chan, spdk_idxd_req_cb cb_fn,
batch->remaining++;
desc = &batch->user_desc[batch->index];
rc = _vtophys(desc, &desc_addr, sizeof(struct idxd_hw_desc));
if (rc) {
return NULL;
}
comp = &batch->user_completions[batch->index];
_track_comp(chan, true, batch->index, comp, desc, batch);
SPDK_DEBUGLOG(idxd, "Prep batch %p index %u\n", batch, batch->index);