Home
last modified time | relevance | path

Searched refs:reply_param (Results 1 – 2 of 2) sorted by relevance

/f-stack/dpdk/drivers/net/tap/
H A Drte_eth_tap.c2314 struct ipc_queues *reply_param; in tap_mp_attach_queues() local
2332 reply_param = (struct ipc_queues *)reply->param; in tap_mp_attach_queues()
2336 if (reply_param->rxq_count + reply_param->txq_count != reply->num_fds) { in tap_mp_attach_queues()
2341 dev->data->nb_rx_queues = reply_param->rxq_count; in tap_mp_attach_queues()
2361 struct ipc_queues *reply_param = in tap_mp_sync_queues() local
2380 reply_param->rxq_count = 0; in tap_mp_sync_queues()
2389 reply_param->rxq_count++; in tap_mp_sync_queues()
2393 reply_param->txq_count = 0; in tap_mp_sync_queues()
2396 reply_param->txq_count++; in tap_mp_sync_queues()
2403 sizeof(reply_param->port_name)); in tap_mp_sync_queues()
[all …]
/f-stack/dpdk/drivers/net/memif/
H A Drte_eth_memif.c90 struct mp_region_msg *reply_param = (struct mp_region_msg *)reply.param; in memif_mp_send_region() local
106 reply_param->idx = msg_param->idx; in memif_mp_send_region()
108 reply_param->size = proc_private->regions[msg_param->idx]->region_size; in memif_mp_send_region()
112 reply.len_param = sizeof(*reply_param); in memif_mp_send_region()
133 struct mp_region_msg *reply_param; in memif_mp_request_regions() local
161 reply_param = (struct mp_region_msg *)reply->param; in memif_mp_request_regions()
163 if (reply_param->size > 0) { in memif_mp_request_regions()
170 r->region_size = reply_param->size; in memif_mp_request_regions()
179 proc_private->regions[reply_param->idx] = r; in memif_mp_request_regions()