From: Declan Doherty <declan.doherty-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
To: Jia Yu <jyu-pghWNbHTmq7QT0dZR+AlfA@public.gmane.org>,
dev-VfR2kkLFssw@public.gmane.org
Subject: Re: [PATCH v2] librte_pmd_bond: remove memory alloc for rte_pci_driver
Date: Thu, 26 Mar 2015 11:59:02 +0000 [thread overview]
Message-ID: <5513F486.4040906@intel.com> (raw)
In-Reply-To: <1427147636-45003-1-git-send-email-jyu-pghWNbHTmq7QT0dZR+AlfA@public.gmane.org>
On 23/03/15 21:53, Jia Yu wrote:
> eth_driver already contains rte_pci_driver data structure.
> Allocating rte_pci_driver without referencing it after bond
> creation causes memory leakage.
>
> Added signed off information.
>
> Signed-off-by: Jia Yu <jyu-pghWNbHTmq7QT0dZR+AlfA@public.gmane.org>
> ---
> lib/librte_pmd_bond/rte_eth_bond_api.c | 11 ++---------
> 1 file changed, 2 insertions(+), 9 deletions(-)
>
> diff --git a/lib/librte_pmd_bond/rte_eth_bond_api.c b/lib/librte_pmd_bond/rte_eth_bond_api.c
> index 903b7c3..13f3941 100644
> --- a/lib/librte_pmd_bond/rte_eth_bond_api.c
> +++ b/lib/librte_pmd_bond/rte_eth_bond_api.c
> @@ -230,11 +230,8 @@ rte_eth_bond_create(const char *name, uint8_t mode, uint8_t socket_id)
> goto err;
> }
>
> - pci_drv = rte_zmalloc_socket(name, sizeof(*pci_drv), 0, socket_id);
> - if (pci_drv == NULL) {
> - RTE_BOND_LOG(ERR, "Unable to malloc pci_drv on socket");
> - goto err;
> - }
> + pci_drv = ð_drv->pci_drv;
> +
> pci_id_table = rte_zmalloc_socket(name, sizeof(*pci_id_table), 0, socket_id);
> if (pci_id_table == NULL) {
> RTE_BOND_LOG(ERR, "Unable to malloc pci_id_table on socket");
> @@ -266,9 +263,7 @@ rte_eth_bond_create(const char *name, uint8_t mode, uint8_t socket_id)
> pci_dev->numa_node = socket_id;
> pci_drv->name = driver_name;
>
> - eth_drv->pci_drv = (struct rte_pci_driver)(*pci_drv);
> eth_dev->driver = eth_drv;
> -
> eth_dev->data->dev_private = internals;
> eth_dev->data->nb_rx_queues = (uint16_t)1;
> eth_dev->data->nb_tx_queues = (uint16_t)1;
> @@ -325,8 +320,6 @@ rte_eth_bond_create(const char *name, uint8_t mode, uint8_t socket_id)
> err:
> if (pci_dev)
> rte_free(pci_dev);
> - if (pci_drv)
> - rte_free(pci_drv);
> if (pci_id_table)
> rte_free(pci_id_table);
> if (eth_drv)
>
Acked-by: Declan Doherty <declan.doherty-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
next prev parent reply other threads:[~2015-03-26 11:59 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-03-23 21:53 [PATCH v2] librte_pmd_bond: remove memory alloc for rte_pci_driver Jia Yu
[not found] ` <1427147636-45003-1-git-send-email-jyu-pghWNbHTmq7QT0dZR+AlfA@public.gmane.org>
2015-03-26 11:59 ` Declan Doherty [this message]
[not found] ` <5513F486.4040906-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
2015-03-27 11:03 ` Thomas Monjalon
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=5513F486.4040906@intel.com \
--to=declan.doherty-ral2jqcrhueavxtiumwx3w@public.gmane.org \
--cc=dev-VfR2kkLFssw@public.gmane.org \
--cc=jyu-pghWNbHTmq7QT0dZR+AlfA@public.gmane.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 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.