Lines Matching refs:zq
100 struct zcrypt_queue *zq = dev_get_drvdata(dev); in cca_mkvps_show() local
108 cca_get_info(AP_QID_CARD(zq->queue->qid), in cca_mkvps_show()
109 AP_QID_QUEUE(zq->queue->qid), in cca_mkvps_show()
110 &ci, zq->online); in cca_mkvps_show()
336 struct zcrypt_queue *zq; in zcrypt_cex2c_queue_probe() local
339 zq = zcrypt_queue_alloc(CEX2C_MAX_XCRB_MESSAGE_SIZE); in zcrypt_cex2c_queue_probe()
340 if (!zq) in zcrypt_cex2c_queue_probe()
342 zq->queue = aq; in zcrypt_cex2c_queue_probe()
343 zq->online = 1; in zcrypt_cex2c_queue_probe()
344 atomic_set(&zq->load, 0); in zcrypt_cex2c_queue_probe()
348 zcrypt_queue_free(zq); in zcrypt_cex2c_queue_probe()
352 zq->ops = zcrypt_msgtype(MSGTYPE06_NAME, in zcrypt_cex2c_queue_probe()
355 zq->ops = zcrypt_msgtype(MSGTYPE06_NAME, in zcrypt_cex2c_queue_probe()
358 ap_queue_init_reply(aq, &zq->reply); in zcrypt_cex2c_queue_probe()
360 dev_set_drvdata(&ap_dev->device, zq); in zcrypt_cex2c_queue_probe()
361 rc = zcrypt_queue_register(zq); in zcrypt_cex2c_queue_probe()
363 zcrypt_queue_free(zq); in zcrypt_cex2c_queue_probe()
371 zcrypt_queue_unregister(zq); in zcrypt_cex2c_queue_probe()
372 zcrypt_queue_free(zq); in zcrypt_cex2c_queue_probe()
385 struct zcrypt_queue *zq = dev_get_drvdata(&ap_dev->device); in zcrypt_cex2c_queue_remove() local
391 zcrypt_queue_unregister(zq); in zcrypt_cex2c_queue_remove()