net/sfc: use NIC event descriptor size instead of common
authorIgor Romanov <igor.romanov@oktetlabs.ru>
Thu, 7 Feb 2019 16:29:29 +0000 (16:29 +0000)
committerFerruh Yigit <ferruh.yigit@intel.com>
Fri, 8 Feb 2019 10:35:41 +0000 (11:35 +0100)
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 <igor.romanov@oktetlabs.ru>
Signed-off-by: Andrew Rybchenko <arybchenko@solarflare.com>
drivers/net/sfc/sfc_ev.c

index 939766d..5992833 100644 (file)
@@ -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;