X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=drivers%2Fnet%2Fbnxt%2Fbnxt_irq.c;h=508abfc844819b32a0b7a6eb7d754f103a91b8ce;hb=7e8d5583f7d34bcf7fe8fe9a5806b7d8366ded27;hp=40e1b0c980b3afb4cb306bd613e39f2d142cd08b;hpb=d9fc6a0d07559cfa718efe971a51620c23ba211e;p=dpdk.git diff --git a/drivers/net/bnxt/bnxt_irq.c b/drivers/net/bnxt/bnxt_irq.c index 40e1b0c980..508abfc844 100644 --- a/drivers/net/bnxt/bnxt_irq.c +++ b/drivers/net/bnxt/bnxt_irq.c @@ -1,5 +1,5 @@ /* SPDX-License-Identifier: BSD-3-Clause - * Copyright(c) 2014-2018 Broadcom + * Copyright(c) 2014-2021 Broadcom * All rights reserved. */ @@ -21,11 +21,14 @@ void bnxt_int_handler(void *param) { struct rte_eth_dev *eth_dev = (struct rte_eth_dev *)param; struct bnxt *bp = eth_dev->data->dev_private; - struct bnxt_cp_ring_info *cpr = bp->async_cp_ring; + uint32_t cons, raw_cons, cp_ring_size; + struct bnxt_cp_ring_info *cpr; struct cmpl_base *cmp; - uint32_t raw_cons; - uint32_t cons; + + if (bp == NULL) + return; + cpr = bp->async_cp_ring; if (cpr == NULL) return; @@ -42,10 +45,11 @@ void bnxt_int_handler(void *param) return; } + cp_ring_size = cpr->cp_ring_struct->ring_size; cons = RING_CMP(cpr->cp_ring_struct, raw_cons); cmp = &cpr->cp_desc_ring[cons]; - if (!CMP_VALID(cmp, raw_cons, cpr->cp_ring_struct)) + if (!bnxt_cpr_cmp_valid(cmp, raw_cons, cp_ring_size)) break; bnxt_event_hwrm_resp_handler(bp, cmp); @@ -63,7 +67,7 @@ void bnxt_int_handler(void *param) int bnxt_free_int(struct bnxt *bp) { - struct rte_intr_handle *intr_handle = &bp->pdev->intr_handle; + struct rte_intr_handle *intr_handle = bp->pdev->intr_handle; struct bnxt_irq *irq = bp->irq_tbl; int rc = 0; @@ -151,7 +155,7 @@ int bnxt_setup_int(struct bnxt *bp) sizeof(struct bnxt_irq), 0); if (bp->irq_tbl) { for (i = 0; i < total_vecs; i++) { - bp->irq_tbl[i].vector = i; + bp->irq_tbl[i].vector_idx = i; snprintf(bp->irq_tbl[i].name, len, "%s-%d", bp->eth_dev->device->name, i); bp->irq_tbl[i].handler = bnxt_int_handler; @@ -166,7 +170,7 @@ int bnxt_setup_int(struct bnxt *bp) int bnxt_request_int(struct bnxt *bp) { - struct rte_intr_handle *intr_handle = &bp->pdev->intr_handle; + struct rte_intr_handle *intr_handle = bp->pdev->intr_handle; struct bnxt_irq *irq = bp->irq_tbl; int rc = 0;