patches for DPDK stable branches
 help / color / mirror / Atom feed
From: Ferruh Yigit <ferruh.yigit@intel.com>
To: Weiguo Li <liwg06@foxmail.com>, <andrew.rybchenko@oktetlabs.ru>
Cc: <ivan.ilchenko@oktetlabs.ru>, <dev@dpdk.org>, <stable@dpdk.org>
Subject: Re: [PATCH] net/sfc: fix the argument to sizeof for unit cache
Date: Fri, 18 Feb 2022 14:38:41 +0000	[thread overview]
Message-ID: <191c80de-37d4-da06-5fef-fdc3e47c58cb@intel.com> (raw)
In-Reply-To: <tencent_1990BE73477645EE63B078424EDD235E7409@qq.com>

On 12/21/2021 6:41 AM, Weiguo Li wrote:
> The size of unit cache should be sizeof(**cache) instead of
> sizeof(*cache). Memory reallocation is inadequate by sizeof(*cache)
> for the platform whose size of pointer is 32-bits. Found by coccinelle
> (see https://coccinelle.gitlabpages.inria.fr/website) script.
> 
> Fixes: 63abf8d29225 ("net/sfc: support SW stats groups")
> Cc: stable@dpdk.org
> 
> Signed-off-by: Weiguo Li <liwg06@foxmail.com>
> ---
>   drivers/net/sfc/sfc_sw_stats.c | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/net/sfc/sfc_sw_stats.c b/drivers/net/sfc/sfc_sw_stats.c
> index 70259660c0..81f5aa3cc4 100644
> --- a/drivers/net/sfc/sfc_sw_stats.c
> +++ b/drivers/net/sfc/sfc_sw_stats.c
> @@ -777,7 +777,7 @@ sfc_sw_xstats_configure(struct sfc_adapter *sa)
>   
>   	memset(*reset_vals, 0, nb_supported * sizeof(**reset_vals));
>   
> -	*cache = rte_realloc(*cache, cache_count * sizeof(*cache), 0);
> +	*cache = rte_realloc(*cache, cache_count * sizeof(**cache), 0);
>   	if (*cache == NULL) {
>   		rc = ENOMEM;
>   		goto fail_cache;


Hi Andrew, Ivan,

This patch seems missed, and it looks a valid fix to me.

Do you have any comment on patch?

  reply	other threads:[~2022-02-18 14:38 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-12-21  6:41 Weiguo Li
2022-02-18 14:38 ` Ferruh Yigit [this message]
2022-02-18 14:43   ` Andrew Rybchenko
2022-02-18 15:50     ` Ferruh Yigit

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=191c80de-37d4-da06-5fef-fdc3e47c58cb@intel.com \
    --to=ferruh.yigit@intel.com \
    --cc=andrew.rybchenko@oktetlabs.ru \
    --cc=dev@dpdk.org \
    --cc=ivan.ilchenko@oktetlabs.ru \
    --cc=liwg06@foxmail.com \
    --cc=stable@dpdk.org \
    /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).