Lines Matching defs:probe
466 struct virtio_iommu_req_probe *probe;
474 probe_len = sizeof(*probe) + viommu->probe_size +
476 probe = kzalloc(probe_len, GFP_KERNEL);
477 if (!probe)
480 probe->head.type = VIRTIO_IOMMU_T_PROBE;
483 * IDs are consistent. Only probe the first one.
485 probe->endpoint = cpu_to_le32(fwspec->ids[0]);
487 ret = viommu_send_req_sync(viommu, probe, probe_len);
491 prop = (void *)probe->properties;
513 prop = (void *)probe->properties + cur;
518 kfree(probe);
1149 .probe = viommu_probe,