| 53 | } |
| 54 | |
| 55 | void |
| 56 | sfc_flow_rss_detach(struct sfc_adapter *sa) |
| 57 | { |
| 58 | struct sfc_flow_rss *flow_rss = &sa->flow_rss; |
| 59 | |
| 60 | sfc_log_init(sa, "entry"); |
| 61 | |
| 62 | sfc_log_init(sa, "free the bounce buffer for indirection entries"); |
| 63 | rte_free(flow_rss->bounce_tbl); |
| 64 | |
| 65 | sfc_log_init(sa, "done"); |
| 66 | } |
| 67 | |
| 68 | int |
| 69 | sfc_flow_rss_parse_conf(struct sfc_adapter *sa, |
no test coverage detected