Lines Matching defs:nvqs
278 static int vp_find_vqs_msix(struct virtio_device *vdev, unsigned nvqs,
288 vp_dev->vqs = kcalloc(nvqs, sizeof(*vp_dev->vqs), GFP_KERNEL);
295 for (i = 0; i < nvqs; ++i)
310 for (i = 0; i < nvqs; ++i) {
352 static int vp_find_vqs_intx(struct virtio_device *vdev, unsigned nvqs,
359 vp_dev->vqs = kcalloc(nvqs, sizeof(*vp_dev->vqs), GFP_KERNEL);
370 for (i = 0; i < nvqs; ++i) {
391 int vp_find_vqs(struct virtio_device *vdev, unsigned nvqs,
399 err = vp_find_vqs_msix(vdev, nvqs, vqs, callbacks, names, true, ctx, desc);
403 err = vp_find_vqs_msix(vdev, nvqs, vqs, callbacks, names, false, ctx, desc);
407 return vp_find_vqs_intx(vdev, nvqs, vqs, callbacks, names, ctx);