Lines Matching refs:mp_reply
368 struct rte_mp_reply mp_reply; in eal_dev_hotplug_request_to_primary() local
378 ret = rte_mp_request_sync(&mp_req, &mp_reply, &ts); in eal_dev_hotplug_request_to_primary()
379 if (ret || mp_reply.nb_received != 1) { in eal_dev_hotplug_request_to_primary()
386 resp = (struct eal_dev_mp_req *)mp_reply.msgs[0].param; in eal_dev_hotplug_request_to_primary()
389 free(mp_reply.msgs); in eal_dev_hotplug_request_to_primary()
396 struct rte_mp_reply mp_reply; in eal_dev_hotplug_request_to_secondary() local
406 ret = rte_mp_request_sync(&mp_req, &mp_reply, &ts); in eal_dev_hotplug_request_to_secondary()
416 if (mp_reply.nb_sent != mp_reply.nb_received) { in eal_dev_hotplug_request_to_secondary()
418 free(mp_reply.msgs); in eal_dev_hotplug_request_to_secondary()
423 for (i = 0; i < mp_reply.nb_received; i++) { in eal_dev_hotplug_request_to_secondary()
425 (struct eal_dev_mp_req *)mp_reply.msgs[i].param; in eal_dev_hotplug_request_to_secondary()
437 free(mp_reply.msgs); in eal_dev_hotplug_request_to_secondary()