From: Igor Romanov Date: Thu, 7 Feb 2019 16:29:29 +0000 (+0000) Subject: net/sfc: use NIC event descriptor size instead of common X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=afe3c7563a00561903763541ca07b193f751f9c1;p=dpdk.git net/sfc: use NIC event descriptor size instead of common Use of the macro for calculating a Rx queue size is deprecated. Replace it with a call to a function that uses descriptor size specified for every NIC. Signed-off-by: Igor Romanov Signed-off-by: Andrew Rybchenko --- diff --git a/drivers/net/sfc/sfc_ev.c b/drivers/net/sfc/sfc_ev.c index 939766dc25..59928332a3 100644 --- a/drivers/net/sfc/sfc_ev.c +++ b/drivers/net/sfc/sfc_ev.c @@ -599,7 +599,8 @@ sfc_ev_qstart(struct sfc_evq *evq, unsigned int hw_index) evq->evq_index = hw_index; /* Clear all events */ - (void)memset((void *)esmp->esm_base, 0xff, EFX_EVQ_SIZE(evq->entries)); + (void)memset((void *)esmp->esm_base, 0xff, + efx_evq_size(sa->nic, evq->entries)); if (sa->intr.lsc_intr && hw_index == sa->mgmt_evq_index) evq_flags |= EFX_EVQ_FLAGS_NOTIFY_INTERRUPT; @@ -823,7 +824,8 @@ sfc_ev_qinit(struct sfc_adapter *sa, /* Allocate DMA space */ rc = sfc_dma_alloc(sa, sfc_evq_type2str(type), type_index, - EFX_EVQ_SIZE(evq->entries), socket_id, &evq->mem); + efx_evq_size(sa->nic, evq->entries), socket_id, + &evq->mem); if (rc != 0) goto fail_dma_alloc;