| 400 | } |
| 401 | |
| 402 | bool bnxt_is_recovery_enabled(struct bnxt *bp) |
| 403 | { |
| 404 | struct bnxt_error_recovery_info *info; |
| 405 | |
| 406 | info = bp->recovery_info; |
| 407 | if (info && (info->flags & BNXT_FLAG_RECOVERY_ENABLED)) |
| 408 | return true; |
| 409 | |
| 410 | return false; |
| 411 | } |
| 412 | |
| 413 | void bnxt_stop_rxtx(struct rte_eth_dev *eth_dev) |
| 414 | { |
no outgoing calls
no test coverage detected