| 6470 | } |
| 6471 | |
| 6472 | static inline void |
| 6473 | print_fdir_flex_mask(struct rte_eth_fdir_flex_conf *flex_conf, uint32_t num) |
| 6474 | { |
| 6475 | struct rte_eth_fdir_flex_mask *mask; |
| 6476 | uint32_t i, j; |
| 6477 | const char *p; |
| 6478 | |
| 6479 | for (i = 0; i < flex_conf->nb_flexmasks; i++) { |
| 6480 | mask = &flex_conf->flex_mask[i]; |
| 6481 | p = flowtype_to_str(mask->flow_type); |
| 6482 | printf("\n %s:\t", p ? p : "unknown"); |
| 6483 | for (j = 0; j < num; j++) |
| 6484 | printf(" %02x", mask->mask[j]); |
| 6485 | } |
| 6486 | printf("\n"); |
| 6487 | } |
| 6488 | |
| 6489 | static inline void |
| 6490 | print_fdir_flow_type(uint32_t flow_types_mask) |
no test coverage detected