Create EFD table. 8< */
| 203 | |
| 204 | /* Create EFD table. 8< */ |
| 205 | static void |
| 206 | create_efd_table(void) |
| 207 | { |
| 208 | uint8_t socket_id = rte_socket_id(); |
| 209 | |
| 210 | /* create table */ |
| 211 | efd_table = rte_efd_create("flow table", num_flows * 2, sizeof(uint32_t), |
| 212 | 1 << socket_id, socket_id); |
| 213 | |
| 214 | if (efd_table == NULL) |
| 215 | rte_exit(EXIT_FAILURE, "Problem creating the flow table\n"); |
| 216 | } |
| 217 | |
| 218 | static void |
| 219 | populate_efd_table(void) |
no test coverage detected