All of lore.kernel.org
 help / color / mirror / Atom feed
From: Jerin Jacob <jerin.jacob@caviumnetworks.com>
To: Harry van Haaren <harry.van.haaren@intel.com>
Cc: dev@dpdk.org
Subject: Re: [PATCH] event: fix memory realloc check in port config
Date: Wed, 19 Jul 2017 09:16:48 +0530	[thread overview]
Message-ID: <20170719034647.GB10840@jerin> (raw)
In-Reply-To: <1500307787-73213-1-git-send-email-harry.van.haaren@intel.com>

-----Original Message-----
> Date: Mon, 17 Jul 2017 17:09:47 +0100
> From: Harry van Haaren <harry.van.haaren@intel.com>
> To: dev@dpdk.org
> CC: Harry van Haaren <harry.van.haaren@intel.com>,
>  jerin.jacob@caviumnetworks.com
> Subject: [PATCH] event: fix memory realloc check in port config
> X-Mailer: git-send-email 2.7.4
> 
> This commit fixes the check to use the just reallocated
> links_map variable, instead of stale dev->data->links_map.
> Later the new variable is written to the dev->data->links_map,
> so the stale-ness is only temporary.
> 
> Coverity issue: 143456
> Fixes: 4f0804bbdfb9 ("eventdev: implement the northbound APIs")
> Cc: jerin.jacob@caviumnetworks.com

Reviewed-by: Jerin Jacob <jerin.jacob@caviumnetworks.com>

> 
> Signed-off-by: Harry van Haaren <harry.van.haaren@intel.com>
> ---
>  lib/librte_eventdev/rte_eventdev.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/lib/librte_eventdev/rte_eventdev.c b/lib/librte_eventdev/rte_eventdev.c
> index ca2900c..bbb3805 100644
> --- a/lib/librte_eventdev/rte_eventdev.c
> +++ b/lib/librte_eventdev/rte_eventdev.c
> @@ -298,7 +298,7 @@ rte_event_dev_port_config(struct rte_eventdev *dev, uint8_t nb_ports)
>  			sizeof(dev->data->links_map[0]) * nb_ports *
>  			RTE_EVENT_MAX_QUEUES_PER_DEV,
>  			RTE_CACHE_LINE_SIZE);
> -		if (dev->data->links_map == NULL) {
> +		if (links_map == NULL) {
>  			dev->data->nb_ports = 0;
>  			RTE_EDEV_LOG_ERR("failed to realloc mem for port_map,"
>  					"nb_ports %u", nb_ports);
> -- 
> 2.7.4
> 

  reply	other threads:[~2017-07-19  3:47 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-07-17 16:09 [PATCH] event: fix memory realloc check in port config Harry van Haaren
2017-07-19  3:46 ` Jerin Jacob [this message]
2017-07-19  3:51 ` Jerin Jacob

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=20170719034647.GB10840@jerin \
    --to=jerin.jacob@caviumnetworks.com \
    --cc=dev@dpdk.org \
    --cc=harry.van.haaren@intel.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.