Lines Matching refs:links_map

270 	uint16_t *links_map;  in rte_event_dev_port_config()  local
302 dev->data->links_map = in rte_event_dev_port_config()
304 sizeof(dev->data->links_map[0]) * nb_ports * in rte_event_dev_port_config()
307 if (dev->data->links_map == NULL) { in rte_event_dev_port_config()
314 dev->data->links_map[i] = in rte_event_dev_port_config()
321 links_map = dev->data->links_map; in rte_event_dev_port_config()
346 links_map = rte_realloc(links_map, in rte_event_dev_port_config()
347 sizeof(dev->data->links_map[0]) * nb_ports * in rte_event_dev_port_config()
350 if (links_map == NULL) { in rte_event_dev_port_config()
369 links_map[i] = in rte_event_dev_port_config()
375 dev->data->links_map = links_map; in rte_event_dev_port_config()
945 uint16_t *links_map; in rte_event_port_link() local
989 links_map = dev->data->links_map; in rte_event_port_link()
991 links_map += (port_id * RTE_EVENT_MAX_QUEUES_PER_DEV); in rte_event_port_link()
993 links_map[queues[i]] = (uint8_t)priorities[i]; in rte_event_port_link()
1006 uint16_t *links_map; in rte_event_port_unlink() local
1023 links_map = dev->data->links_map; in rte_event_port_unlink()
1025 links_map += (port_id * RTE_EVENT_MAX_QUEUES_PER_DEV); in rte_event_port_unlink()
1030 if (links_map[i] != in rte_event_port_unlink()
1039 if (links_map[queues[j]] == in rte_event_port_unlink()
1059 links_map[queues[i]] = EVENT_QUEUE_SERVICE_PRIORITY_INVALID; in rte_event_port_unlink()
1092 uint16_t *links_map; in rte_event_port_links_get() local
1102 links_map = dev->data->links_map; in rte_event_port_links_get()
1104 links_map += (port_id * RTE_EVENT_MAX_QUEUES_PER_DEV); in rte_event_port_links_get()
1106 if (links_map[i] != EVENT_QUEUE_SERVICE_PRIORITY_INVALID) { in rte_event_port_links_get()
1108 priorities[count] = (uint8_t)links_map[i]; in rte_event_port_links_get()