numam-dpdk/lib/table/version.map
Cristian Dumitrescu 0c06fa3bfa table: support learner tables
A learner table is typically used for learning or connection tracking,
where it allows for the implementation of the "add on miss" scenario:
whenever the lookup key is not found in the table (lookup miss), the
data plane can decide to add this key to the table with a given action
with no control plane intervention. Likewise, the table keys expire
based on a configurable timeout and are automatically deleted from the
table with no control plane intervention.

Signed-off-by: Cristian Dumitrescu <cristian.dumitrescu@intel.com>
2021-09-27 09:30:41 +02:00

49 lines
1.0 KiB
Plaintext

DPDK_22 {
global:
rte_table_acl_ops;
rte_table_array_ops;
rte_table_hash_cuckoo_ops;
rte_table_hash_ext_ops;
rte_table_hash_key16_ext_ops;
rte_table_hash_key16_lru_ops;
rte_table_hash_key32_ext_ops;
rte_table_hash_key32_lru_ops;
rte_table_hash_key8_ext_ops;
rte_table_hash_key8_lru_ops;
rte_table_hash_lru_ops;
rte_table_lpm_ipv6_ops;
rte_table_lpm_ops;
rte_table_stub_ops;
local: *;
};
EXPERIMENTAL {
global:
# added in 20.11
rte_swx_table_exact_match_ops;
rte_swx_table_exact_match_unoptimized_ops;
# added in 21.05
rte_swx_table_wildcard_match_ops;
# added in 21.08
rte_swx_table_selector_create;
rte_swx_table_selector_footprint_get;
rte_swx_table_selector_free;
rte_swx_table_selector_group_set;
rte_swx_table_selector_mailbox_size_get;
rte_swx_table_selector_select;
# added in 21.11
rte_swx_table_learner_add;
rte_swx_table_learner_create;
rte_swx_table_learner_delete;
rte_swx_table_learner_footprint_get;
rte_swx_table_learner_free;
rte_swx_table_learner_lookup;
rte_swx_table_learner_mailbox_size_get;
};