Lines Matching defs:nvqs
284 static int vp_find_vqs_msix(struct virtio_device *vdev, unsigned int nvqs,
294 vp_dev->vqs = kcalloc(nvqs, sizeof(*vp_dev->vqs), GFP_KERNEL);
301 for (i = 0; i < nvqs; ++i)
316 for (i = 0; i < nvqs; ++i) {
358 static int vp_find_vqs_intx(struct virtio_device *vdev, unsigned int nvqs,
365 vp_dev->vqs = kcalloc(nvqs, sizeof(*vp_dev->vqs), GFP_KERNEL);
376 for (i = 0; i < nvqs; ++i) {
397 int vp_find_vqs(struct virtio_device *vdev, unsigned int nvqs,
405 err = vp_find_vqs_msix(vdev, nvqs, vqs, callbacks, names, true, ctx, desc);
409 err = vp_find_vqs_msix(vdev, nvqs, vqs, callbacks, names, false, ctx, desc);
416 return vp_find_vqs_intx(vdev, nvqs, vqs, callbacks, names, ctx);