| 366 | }; |
| 367 | |
| 368 | static void |
| 369 | table_free(void *table) |
| 370 | { |
| 371 | struct table *t = table; |
| 372 | |
| 373 | if (!t) |
| 374 | return; |
| 375 | |
| 376 | rte_acl_free(t->acl_ctx); |
| 377 | env_free(t, t->total_size); |
| 378 | } |
| 379 | |
| 380 | static void * |
| 381 | table_create(struct rte_swx_table_params *params, |
no test coverage detected