Searched refs:total_vqs (Results 1 – 2 of 2) sorted by relevance
| /linux-6.15/drivers/crypto/virtio/ |
| H A D | virtio_crypto_core.c | 102 int i, total_vqs; in virtcrypto_find_vqs() local 110 total_vqs = vi->max_data_queues + 1; in virtcrypto_find_vqs() 113 vqs = kcalloc(total_vqs, sizeof(*vqs), GFP_KERNEL); in virtcrypto_find_vqs() 116 vqs_info = kcalloc(total_vqs, sizeof(*vqs_info), GFP_KERNEL); in virtcrypto_find_vqs() 121 vqs_info[total_vqs - 1].callback = virtcrypto_ctrlq_callback; in virtcrypto_find_vqs() 122 vqs_info[total_vqs - 1].name = "controlq"; in virtcrypto_find_vqs() 132 ret = virtio_find_vqs(vi->vdev, total_vqs, vqs, vqs_info, NULL); in virtcrypto_find_vqs() 136 vi->ctrl_vq = vqs[total_vqs - 1]; in virtcrypto_find_vqs()
|
| /linux-6.15/drivers/net/ |
| H A D | virtio_net.c | 6392 int total_vqs; in virtnet_find_vqs() local 6400 total_vqs = vi->max_queue_pairs * 2 + in virtnet_find_vqs() 6404 vqs = kcalloc(total_vqs, sizeof(*vqs), GFP_KERNEL); in virtnet_find_vqs() 6407 vqs_info = kcalloc(total_vqs, sizeof(*vqs_info), GFP_KERNEL); in virtnet_find_vqs() 6411 ctx = kcalloc(total_vqs, sizeof(*ctx), GFP_KERNEL); in virtnet_find_vqs() 6420 vqs_info[total_vqs - 1].name = "control"; in virtnet_find_vqs() 6435 ret = virtio_find_vqs(vi->vdev, total_vqs, vqs, vqs_info, NULL); in virtnet_find_vqs() 6440 vi->cvq = vqs[total_vqs - 1]; in virtnet_find_vqs()
|