MCPcopy Create free account
hub / github.com/F-Stack/f-stack / table_entry_free

Function table_entry_free

dpdk/examples/pipeline/cli.c:148–158  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

146}
147
148static void
149table_entry_free(struct rte_swx_table_entry *entry)
150{
151 if (!entry)
152 return;
153
154 free(entry->key);
155 free(entry->key_mask);
156 free(entry->action_data);
157 free(entry);
158}
159
160static struct rte_swx_table_entry *
161parse_table_entry(struct rte_swx_ctl_pipeline *p,

Callers 9

cmd_pipeline_regrdFunction · 0.70
cmd_pipeline_regwrFunction · 0.70
cmd_pipeline_meter_resetFunction · 0.70
cmd_pipeline_meter_setFunction · 0.70
cmd_pipeline_meter_statsFunction · 0.70

Calls 1

freeFunction · 0.50

Tested by

no test coverage detected