Home
last modified time | relevance | path

Searched refs:total_vqs (Results 1 – 2 of 2) sorted by relevance

/openbmc/linux/drivers/crypto/virtio/
H A Dvirtio_crypto_core.c104 int i, total_vqs; in virtcrypto_find_vqs() local
113 total_vqs = vi->max_data_queues + 1; in virtcrypto_find_vqs()
116 vqs = kcalloc(total_vqs, sizeof(*vqs), GFP_KERNEL); in virtcrypto_find_vqs()
119 callbacks = kcalloc(total_vqs, sizeof(*callbacks), GFP_KERNEL); in virtcrypto_find_vqs()
122 names = kcalloc(total_vqs, sizeof(*names), GFP_KERNEL); in virtcrypto_find_vqs()
127 callbacks[total_vqs - 1] = virtcrypto_ctrlq_callback; in virtcrypto_find_vqs()
128 names[total_vqs - 1] = "controlq"; in virtcrypto_find_vqs()
138 ret = virtio_find_vqs(vi->vdev, total_vqs, vqs, callbacks, names, NULL); in virtcrypto_find_vqs()
142 vi->ctrl_vq = vqs[total_vqs - 1]; in virtcrypto_find_vqs()
/openbmc/linux/drivers/net/
H A Dvirtio_net.c4146 int total_vqs; in virtnet_find_vqs() local
4154 total_vqs = vi->max_queue_pairs * 2 + in virtnet_find_vqs()
4158 vqs = kcalloc(total_vqs, sizeof(*vqs), GFP_KERNEL); in virtnet_find_vqs()
4161 callbacks = kmalloc_array(total_vqs, sizeof(*callbacks), GFP_KERNEL); in virtnet_find_vqs()
4164 names = kmalloc_array(total_vqs, sizeof(*names), GFP_KERNEL); in virtnet_find_vqs()
4168 ctx = kcalloc(total_vqs, sizeof(*ctx), GFP_KERNEL); in virtnet_find_vqs()
4177 callbacks[total_vqs - 1] = NULL; in virtnet_find_vqs()
4178 names[total_vqs - 1] = "control"; in virtnet_find_vqs()
4193 ret = virtio_find_vqs_ctx(vi->vdev, total_vqs, vqs, callbacks, in virtnet_find_vqs()
4199 vi->cvq = vqs[total_vqs - 1]; in virtnet_find_vqs()