qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Akihiko Odaki <akihiko.odaki@daynix.com>
To: timothee.cocault@gmail.com, qemu-devel@nongnu.org
Cc: Jason Wang <jasowang@redhat.com>,
	Dmitry Fleytman <dmitry.fleytman@gmail.com>
Subject: Re: [PATCH 1/1] e1000e: Fix tx/rx counters
Date: Tue, 11 Apr 2023 00:33:58 +0900	[thread overview]
Message-ID: <5bae2d2d-b28e-00c9-e6a3-2b0deb8e4e59@daynix.com> (raw)
In-Reply-To: <6b31f5f523af93d47cac37509caf8036e183e136.camel@gmail.com>

On 2023/04/11 0:27, timothee.cocault@gmail.com wrote:
> The bytes and packets counter registers are cleared on read.
> 
> Copying the "total counter" registers to the "good counter" registers has
> side effects.
> If the "total" register is never read by the OS, it only gets incremented.
> This leads to exponential growth of the "good" register.
> 
> This commit increments the counters individually to avoid this.
> 
> Signed-off-by: Timothée Cocault <timothee.cocault@gmail.com>

Reviewed-by: Akihiko Odaki <akihiko.odaki@daynix.com>

> ---
>   hw/net/e1000.c         | 5 ++---
>   hw/net/e1000e_core.c   | 5 ++---
>   hw/net/e1000x_common.c | 5 ++---
>   hw/net/igb_core.c      | 5 ++---
>   4 files changed, 8 insertions(+), 12 deletions(-)
> 
> diff --git a/hw/net/e1000.c b/hw/net/e1000.c
> index 23d660619f..59bacb5d3b 100644
> --- a/hw/net/e1000.c
> +++ b/hw/net/e1000.c
> @@ -637,9 +637,8 @@ xmit_seg(E1000State *s)
>   
>       e1000x_inc_reg_if_not_full(s->mac_reg, TPT);
>       e1000x_grow_8reg_if_not_full(s->mac_reg, TOTL, s->tx.size + 4);
> -    s->mac_reg[GPTC] = s->mac_reg[TPT];
> -    s->mac_reg[GOTCL] = s->mac_reg[TOTL];
> -    s->mac_reg[GOTCH] = s->mac_reg[TOTH];
> +    e1000x_inc_reg_if_not_full(s->mac_reg, GPTC);
> +    e1000x_grow_8reg_if_not_full(s->mac_reg, GOTCL, s->tx.size + 4);
>   }
>   
>   static void
> diff --git a/hw/net/e1000e_core.c b/hw/net/e1000e_core.c
> index c0c09b6965..cfa3f55e96 100644
> --- a/hw/net/e1000e_core.c
> +++ b/hw/net/e1000e_core.c
> @@ -711,9 +711,8 @@ e1000e_on_tx_done_update_stats(E1000ECore *core, struct NetTxPkt *tx_pkt)
>           g_assert_not_reached();
>       }
>   
> -    core->mac[GPTC] = core->mac[TPT];
> -    core->mac[GOTCL] = core->mac[TOTL];
> -    core->mac[GOTCH] = core->mac[TOTH];
> +    e1000x_inc_reg_if_not_full(core->mac, GPTC);
> +    e1000x_grow_8reg_if_not_full(core->mac, GOTCL, tot_len);
>   }
>   
>   static void
> diff --git a/hw/net/e1000x_common.c b/hw/net/e1000x_common.c
> index b844af590a..4c8e7dcf70 100644
> --- a/hw/net/e1000x_common.c
> +++ b/hw/net/e1000x_common.c
> @@ -220,15 +220,14 @@ e1000x_update_rx_total_stats(uint32_t *mac,
>   
>       e1000x_increase_size_stats(mac, PRCregs, data_fcs_size);
>       e1000x_inc_reg_if_not_full(mac, TPR);
> -    mac[GPRC] = mac[TPR];
> +    e1000x_inc_reg_if_not_full(mac, GPRC);
>       /* TOR - Total Octets Received:
>       * This register includes bytes received in a packet from the <Destination
>       * Address> field through the <CRC> field, inclusively.
>       * Always include FCS length (4) in size.
>       */
>       e1000x_grow_8reg_if_not_full(mac, TORL, data_size + 4);
> -    mac[GORCL] = mac[TORL];
> -    mac[GORCH] = mac[TORH];
> +    e1000x_grow_8reg_if_not_full(mac, GORCL, data_size + 4);
>   }
>   
>   void
> diff --git a/hw/net/igb_core.c b/hw/net/igb_core.c
> index d733fed6cf..826e7a6cf1 100644
> --- a/hw/net/igb_core.c
> +++ b/hw/net/igb_core.c
> @@ -538,9 +538,8 @@ igb_on_tx_done_update_stats(IGBCore *core, struct NetTxPkt *tx_pkt, int qn)
>           g_assert_not_reached();
>       }
>   
> -    core->mac[GPTC] = core->mac[TPT];
> -    core->mac[GOTCL] = core->mac[TOTL];
> -    core->mac[GOTCH] = core->mac[TOTH];
> +    e1000x_inc_reg_if_not_full(core->mac, GPTC);
> +    e1000x_grow_8reg_if_not_full(core->mac, GOTCL, tot_len);
>   
>       if (core->mac[MRQC] & 1) {
>           uint16_t pool = qn % IGB_NUM_VM_POOLS;


  reply	other threads:[~2023-04-10 15:34 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-04-10 15:24 [PATCH 0/1] e1000e: Fix tx/rx counters timothee.cocault
2023-04-10 15:27 ` [PATCH 1/1] " timothee.cocault
2023-04-10 15:33   ` Akihiko Odaki [this message]
2023-05-10  5:12     ` Jason Wang
2023-05-10 18:54   ` Michael Tokarev
2023-05-11  0:30     ` Jason Wang

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=5bae2d2d-b28e-00c9-e6a3-2b0deb8e4e59@daynix.com \
    --to=akihiko.odaki@daynix.com \
    --cc=dmitry.fleytman@gmail.com \
    --cc=jasowang@redhat.com \
    --cc=qemu-devel@nongnu.org \
    --cc=timothee.cocault@gmail.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;
as well as URLs for NNTP newsgroup(s).