Lines Matching defs:dev_qp
1003 struct accel_dpdk_cryptodev_qp *dev_qp;
1087 dev_qp = calloc(1, sizeof(*dev_qp));
1088 if (!dev_qp) {
1092 dev_qp->device = device;
1093 dev_qp->qp = j;
1094 dev_qp->in_use = false;
1095 TAILQ_INSERT_TAIL(&device->qpairs, dev_qp, link);
1097 dev_qp->index = g_qat_total_qp++;
1106 TAILQ_FOREACH(dev_qp, &device->qpairs, link) {
1107 if (dev_qp->device->cdev_id != device->cdev_id) {
1110 free(dev_qp);
1129 struct accel_dpdk_cryptodev_qp *dev_qp, *tmp;
1133 TAILQ_FOREACH_SAFE(dev_qp, &device->qpairs, link, tmp) {
1134 free(dev_qp);