| 224 | } |
| 225 | |
| 226 | static void |
| 227 | free_lfsr(struct thash_lfsr *lfsr) |
| 228 | { |
| 229 | lfsr->ref_cnt--; |
| 230 | if (lfsr->ref_cnt == 0) |
| 231 | rte_free(lfsr); |
| 232 | } |
| 233 | |
| 234 | struct rte_thash_ctx * |
| 235 | rte_thash_init_ctx(const char *name, uint32_t key_len, uint32_t reta_sz, |
no test coverage detected