Lines Matching defs:cdev_id
52 uint8_t cdev_id; /* identifier for the device */
127 uint8_t cdev_id;
140 cdev_id = device->cdev_id = index;
156 rc = rte_compressdev_configure(cdev_id, &config);
158 SPDK_ERRLOG("Failed to configure compressdev %u\n", cdev_id);
166 rc = rte_compressdev_queue_pair_setup(cdev_id, i,
175 cdev_id, rc, q_pairs);
179 "compressdev %u with error %u\n", cdev_id, rc);
186 rc = rte_compressdev_start(cdev_id);
189 cdev_id, rc);
194 rc = rte_compressdev_private_xform_create(cdev_id, &g_comp_xform,
198 cdev_id, rc);
202 rc = rte_compressdev_private_xform_create(cdev_id, &g_decomp_xform,
206 cdev_id, rc);
249 rte_compressdev_stop(cdev_id);
251 rte_compressdev_close(cdev_id);
440 uint8_t cdev_id;
449 cdev_id = chan->device_qp->device->cdev_id;
524 rc = rte_compressdev_enqueue_burst(cdev_id, chan->device_qp->qp, &comp_op, 1);
565 uint8_t cdev_id;
572 cdev_id = chan->device_qp->device->cdev_id;
574 num_deq = rte_compressdev_dequeue_burst(cdev_id, chan->device_qp->qp, deq_ops,
923 rte_compressdev_stop(device->cdev_id);
924 rte_compressdev_close(device->cdev_id);