public inbox for netdev@vger.kernel.org
 help / color / mirror / Atom feed
From: Stephen Hemminger <stephen@networkplumber.org>
To: Corcodel Marian <asd@marian1000.go.ro>
Cc: netdev@vger.kernel.org, Francois Romieu <romieu@fr.zoreil.com>
Subject: Re: [PATCH net v3.16] r8169: Increase no descriptors on max.
Date: Tue, 1 Mar 2016 10:31:58 -0800	[thread overview]
Message-ID: <20160301103158.069d6978@xeon-e3> (raw)
In-Reply-To: <1456817225-2026-1-git-send-email-asd@marian1000.go.ro>

On Tue,  1 Mar 2016 09:27:05 +0200
Corcodel Marian <asd@marian1000.go.ro> wrote:

>   This patch increase rx/tx on maximum allowed 1024 4-duble-words
>   descriptors.
> 
> Signed-off-by: Corcodel Marian <asd@marian1000.go.ro>
> ---
>  drivers/net/ethernet/realtek/r8169.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/net/ethernet/realtek/r8169.c b/drivers/net/ethernet/realtek/r8169.c
> index e215812..5fd3fca 100644
> --- a/drivers/net/ethernet/realtek/r8169.c
> +++ b/drivers/net/ethernet/realtek/r8169.c
> @@ -84,8 +84,8 @@ static const int multicast_filter_limit = 32;
>  
>  #define R8169_REGS_SIZE		256
>  #define R8169_NAPI_WEIGHT	64
> -#define NUM_TX_DESC	64	/* Number of Tx descriptor registers */
> -#define NUM_RX_DESC	256U	/* Number of Rx descriptor registers */
> +#define NUM_TX_DESC	1024	/* Number of Tx descriptor registers */
> +#define NUM_RX_DESC	1024U	/* Number of Rx descriptor registers */
>  #define R8169_TX_RING_BYTES	(NUM_TX_DESC * sizeof(struct TxDesc))
>  #define R8169_RX_RING_BYTES	(NUM_RX_DESC * sizeof(struct RxDesc))
>  

I can see why you would want to do this to get better small packet
performance, but there is a serious downside.  Increasing the ring
size can mean significantly increased bufferbloat. With jumbo frames
a full ring of 1024 packets is 73ms.

The r8169 driver does not support a couple of things that would help
with bufferbloat. It doesn't support tuning the ring sizes
with ethtool. And it doesn't support BQL.

If you really want to do this, better to support ethtool ring size control
and leave the default alone, but allow larger values by override.

      reply	other threads:[~2016-03-01 18:31 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-03-01  7:27 [PATCH net v3.16] r8169: Increase no descriptors on max Corcodel Marian
2016-03-01 18:31 ` Stephen Hemminger [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20160301103158.069d6978@xeon-e3 \
    --to=stephen@networkplumber.org \
    --cc=asd@marian1000.go.ro \
    --cc=netdev@vger.kernel.org \
    --cc=romieu@fr.zoreil.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox