| 633 | } |
| 634 | |
| 635 | static uint64_t |
| 636 | table_footprint(struct rte_swx_table_params *params, |
| 637 | struct rte_swx_table_entry_list *entries __rte_unused, |
| 638 | const char *args) |
| 639 | { |
| 640 | uint64_t memory_footprint; |
| 641 | int status; |
| 642 | |
| 643 | status = __table_create(NULL, &memory_footprint, params, args, 0); |
| 644 | if (status) |
| 645 | return 0; |
| 646 | |
| 647 | return memory_footprint; |
| 648 | } |
| 649 | |
| 650 | struct rte_swx_table_ops rte_swx_table_exact_match_unoptimized_ops = { |
| 651 | .footprint_get = table_footprint, |
nothing calls this directly
no test coverage detected