| 351 | } |
| 352 | |
| 353 | static int bnxt_alloc_flow_stats_info(struct bnxt *bp) |
| 354 | { |
| 355 | bp->flow_stat = rte_zmalloc("bnxt_flow_xstat", |
| 356 | sizeof(struct bnxt_flow_stat_info), 0); |
| 357 | if (bp->flow_stat == NULL) |
| 358 | return -ENOMEM; |
| 359 | |
| 360 | return 0; |
| 361 | } |
| 362 | |
| 363 | static int bnxt_alloc_mem(struct bnxt *bp, bool reconfig) |
| 364 | { |
no test coverage detected