net/sfc/base: round number of queue buffers up
authorIgor Romanov <igor.romanov@oktetlabs.ru>
Thu, 7 Feb 2019 16:29:26 +0000 (16:29 +0000)
committerFerruh Yigit <ferruh.yigit@intel.com>
Fri, 8 Feb 2019 10:35:41 +0000 (11:35 +0100)
Functions efx_*q_nbufs return the number of a queue buffers by dividing
the queue size by page size. If minimum size of a queue is smaller than
one page, we still need the page and number of buffers should not be 0.

Signed-off-by: Igor Romanov <igor.romanov@oktetlabs.ru>
Signed-off-by: Andrew Rybchenko <arybchenko@solarflare.com>
drivers/net/sfc/base/efx_ev.c
drivers/net/sfc/base/efx_rx.c
drivers/net/sfc/base/efx_tx.c

index 21f4c22..b986239 100644 (file)
@@ -188,7 +188,7 @@ efx_evq_nbufs(
        __in    const efx_nic_t *enp,
        __in    unsigned int ndescs)
 {
-       return (efx_evq_size(enp, ndescs) / EFX_BUF_SIZE);
+       return (EFX_DIV_ROUND_UP(efx_evq_size(enp, ndescs), EFX_BUF_SIZE));
 }
 
                void
index c0d7381..8a12ef7 100644 (file)
@@ -781,7 +781,7 @@ efx_rxq_nbufs(
        __in    const efx_nic_t *enp,
        __in    unsigned int ndescs)
 {
-       return (efx_rxq_size(enp, ndescs) / EFX_BUF_SIZE);
+       return (EFX_DIV_ROUND_UP(efx_rxq_size(enp, ndescs), EFX_BUF_SIZE));
 }
 
                        void
index bbe2bd1..5cf3dcd 100644 (file)
@@ -312,7 +312,7 @@ efx_txq_nbufs(
        __in    const efx_nic_t *enp,
        __in    unsigned int ndescs)
 {
-       return (efx_txq_size(enp, ndescs) / EFX_BUF_SIZE);
+       return (EFX_DIV_ROUND_UP(efx_txq_size(enp, ndescs), EFX_BUF_SIZE));
 }
 
        __checkReturn   efx_rc_t