Lines Matching refs:reply_param
2314 struct ipc_queues *reply_param; in tap_mp_attach_queues() local
2332 reply_param = (struct ipc_queues *)reply->param; in tap_mp_attach_queues()
2333 TAP_LOG(DEBUG, "Received IPC reply for %s", reply_param->port_name); 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()
2342 dev->data->nb_tx_queues = reply_param->txq_count; in tap_mp_attach_queues()
2344 for (queue = 0; queue < reply_param->rxq_count; queue++) in tap_mp_attach_queues()
2346 for (queue = 0; queue < reply_param->txq_count; queue++) 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()
2391 RTE_ASSERT(reply_param->rxq_count == dev->data->nb_rx_queues); 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()
2398 RTE_ASSERT(reply_param->txq_count == dev->data->nb_tx_queues); in tap_mp_sync_queues()
2402 strlcpy(reply_param->port_name, request_param->port_name, in tap_mp_sync_queues()
2403 sizeof(reply_param->port_name)); in tap_mp_sync_queues()
2404 reply.len_param = sizeof(*reply_param); in tap_mp_sync_queues()