![]() |
FD.io VPP
v16.12-rc0-308-g931be3a
Vector Packet Processing
|
Include dependency graph for gid_dictionary.c:Go to the source code of this file.
Data Structures | |
| struct | sfib_entry_arg_t |
Functions | |
| static u32 | ip4_lookup (gid_ip4_table_t *db, u32 vni, ip_prefix_t *key) |
| static u32 | ip6_lookup (gid_ip6_table_t *db, u32 vni, ip_prefix_t *key) |
| static void | foreach_sfib4_subprefix (BVT(clib_bihash_kv)*kvp, void *arg) |
| static void | gid_dict_foreach_ip4_subprefix (gid_dictionary_t *db, u32 vni, ip_prefix_t *src, ip_prefix_t *dst, foreach_subprefix_match_cb_t cb, void *arg) |
| static void | foreach_sfib6_subprefix (BVT(clib_bihash_kv)*kvp, void *arg) |
| static void | gid_dict_foreach_ip6_subprefix (gid_dictionary_t *db, u32 vni, ip_prefix_t *src, ip_prefix_t *dst, foreach_subprefix_match_cb_t cb, void *arg) |
| void | gid_dict_foreach_subprefix (gid_dictionary_t *db, gid_address_t *eid, foreach_subprefix_match_cb_t cb, void *arg) |
| static void | make_mac_sd_key (BVT(clib_bihash_kv)*kv, u32 vni, u8 src_mac[6], u8 dst_mac[6]) |
| static u32 | mac_sd_lookup (gid_mac_table_t *db, u32 vni, u8 *dst, u8 *src) |
| static u32 | ip4_lookup_exact_match (gid_ip4_table_t *db, u32 vni, ip_prefix_t *key) |
| static u32 | ip6_lookup_exact_match (gid_ip6_table_t *db, u32 vni, ip_prefix_t *key) |
| static u32 | ip_sd_lookup (gid_dictionary_t *db, u32 vni, ip_prefix_t *dst, ip_prefix_t *src) |
| u32 | gid_dictionary_lookup (gid_dictionary_t *db, gid_address_t *key) |
| u32 | gid_dictionary_sd_lookup (gid_dictionary_t *db, gid_address_t *dst, gid_address_t *src) |
| static void | ip4_compute_prefix_lengths_in_search_order (gid_ip4_table_t *db) |
| static u32 | add_del_ip4_key (gid_ip4_table_t *db, u32 vni, ip_prefix_t *pref, u32 val, u8 is_add) |
| static void | ip4_lookup_init (gid_ip4_table_t *db) |
| static u32 | add_del_sd_ip4_key (gid_dictionary_t *db, u32 vni, ip_prefix_t *dst_pref, ip_prefix_t *src_pref, u32 val, u8 is_add) |
| static void | ip6_compute_prefix_lengths_in_search_order (gid_ip6_table_t *db) |
| static u32 | add_del_ip6_key (gid_ip6_table_t *db, u32 vni, ip_prefix_t *pref, u32 val, u8 is_add) |
| static u32 | add_del_mac (gid_mac_table_t *db, u32 vni, u8 *dst_mac, u8 *src_mac, u32 val, u8 is_add) |
| static void | ip6_lookup_init (gid_ip6_table_t *db) |
| static u32 | add_del_sd_ip6_key (gid_dictionary_t *db, u32 vni, ip_prefix_t *dst_pref, ip_prefix_t *src_pref, u32 val, u8 is_add) |
| static u32 | add_del_ip (gid_dictionary_t *db, u32 vni, ip_prefix_t *dst_key, ip_prefix_t *src_key, u32 value, u8 is_add) |
| static u32 | add_del_sd (gid_dictionary_t *db, u32 vni, source_dest_t *key, u32 value, u8 is_add) |
| u32 | gid_dictionary_add_del (gid_dictionary_t *db, gid_address_t *key, u32 value, u8 is_add) |
| static void | mac_lookup_init (gid_mac_table_t *db) |
| void | gid_dictionary_init (gid_dictionary_t *db) |
|
static |
Definition at line 769 of file gid_dictionary.c.
Here is the call graph for this function:
Here is the caller graph for this function:
|
static |
Definition at line 423 of file gid_dictionary.c.
Here is the call graph for this function:
Here is the caller graph for this function:
|
static |
Definition at line 589 of file gid_dictionary.c.
Here is the call graph for this function:
Here is the caller graph for this function:
|
static |
Definition at line 641 of file gid_dictionary.c.
Here is the call graph for this function:
Here is the caller graph for this function:
|
static |
Definition at line 789 of file gid_dictionary.c.
Here is the call graph for this function:
Here is the caller graph for this function:
|
static |
Definition at line 507 of file gid_dictionary.c.
Here is the call graph for this function:
Here is the caller graph for this function:
|
static |
Definition at line 700 of file gid_dictionary.c.
Here is the call graph for this function:
Here is the caller graph for this function:
|
static |
|
static |
Definition at line 79 of file gid_dictionary.c.
Here is the call graph for this function:
Here is the caller graph for this function:
|
static |
Definition at line 55 of file gid_dictionary.c.
Here is the call graph for this function:
Here is the caller graph for this function:
|
static |
Definition at line 98 of file gid_dictionary.c.
Here is the call graph for this function:
Here is the caller graph for this function:| void gid_dict_foreach_subprefix | ( | gid_dictionary_t * | db, |
| gid_address_t * | eid, | ||
| foreach_subprefix_match_cb_t | cb, | ||
| void * | arg | ||
| ) |
Definition at line 122 of file gid_dictionary.c.
Here is the call graph for this function:
Here is the caller graph for this function:| u32 gid_dictionary_add_del | ( | gid_dictionary_t * | db, |
| gid_address_t * | key, | ||
| u32 | value, | ||
| u8 | is_add | ||
| ) |
Definition at line 811 of file gid_dictionary.c.
Here is the call graph for this function:
Here is the caller graph for this function:| void gid_dictionary_init | ( | gid_dictionary_t * | db | ) |
Definition at line 850 of file gid_dictionary.c.
Here is the call graph for this function:
Here is the caller graph for this function:| u32 gid_dictionary_lookup | ( | gid_dictionary_t * | db, |
| gid_address_t * | key | ||
| ) |
Definition at line 330 of file gid_dictionary.c.
Here is the call graph for this function:
Here is the caller graph for this function:| u32 gid_dictionary_sd_lookup | ( | gid_dictionary_t * | db, |
| gid_address_t * | dst, | ||
| gid_address_t * | src | ||
| ) |
Definition at line 367 of file gid_dictionary.c.
Here is the call graph for this function:
Here is the caller graph for this function:
|
static |
|
static |
Definition at line 194 of file gid_dictionary.c.
Here is the call graph for this function:
Here is the caller graph for this function:
|
static |
Definition at line 173 of file gid_dictionary.c.
Here is the call graph for this function:
Here is the caller graph for this function:
|
static |
Definition at line 475 of file gid_dictionary.c.
Here is the call graph for this function:
Here is the caller graph for this function:
|
static |
|
static |
Definition at line 246 of file gid_dictionary.c.
Here is the call graph for this function:
Here is the caller graph for this function:
|
static |
Definition at line 226 of file gid_dictionary.c.
Here is the call graph for this function:
Here is the caller graph for this function:
|
static |
Definition at line 663 of file gid_dictionary.c.
Here is the call graph for this function:
Here is the caller graph for this function:
|
static |
Definition at line 277 of file gid_dictionary.c.
Here is the call graph for this function:
Here is the caller graph for this function:
|
static |
Definition at line 833 of file gid_dictionary.c.
Here is the call graph for this function:
Here is the caller graph for this function:
|
static |
Definition at line 149 of file gid_dictionary.c.
Here is the call graph for this function:
Here is the caller graph for this function: