From: "Zhang, Qi Z" <qi.z.zhang@intel.com>
To: "Ananyev, Konstantin" <konstantin.ananyev@intel.com>,
"Lu, Wenzhuo" <wenzhuo.lu@intel.com>,
"dev@dpdk.org" <dev@dpdk.org>
Cc: "Lu, Wenzhuo" <wenzhuo.lu@intel.com>
Subject: Re: [dpdk-dev] [PATCH] net/iavf: fix missed pointer check
Date: Tue, 10 Nov 2020 10:16:44 +0000 [thread overview]
Message-ID: <1ff1b0741d9e4342a977e0c2f757ac43@intel.com> (raw)
In-Reply-To: <DM6PR11MB33081D63C93A2131F62857D89AE90@DM6PR11MB3308.namprd11.prod.outlook.com>
> -----Original Message-----
> From: dev <dev-bounces@dpdk.org> On Behalf Of Ananyev, Konstantin
> Sent: Tuesday, November 10, 2020 6:06 PM
> To: Lu, Wenzhuo <wenzhuo.lu@intel.com>; dev@dpdk.org
> Cc: Lu, Wenzhuo <wenzhuo.lu@intel.com>
> Subject: Re: [dpdk-dev] [PATCH] net/iavf: fix missed pointer check
>
>
>
> > The return value of rte_mempool_default_cache should be checked as it
> > can be NULL.
> >
> > Fixes: 9ab9514c150e ("net/iavf: enable AVX512 for Tx")
> >
> > Reported-by: Konstantin Ananyev <konstantin.ananyev@intel.com>
> > Signed-off-by: Wenzhuo Lu <wenzhuo.lu@intel.com>
> > ---
> > drivers/net/iavf/iavf_rxtx_vec_avx512.c | 8 +++++++-
> > 1 file changed, 7 insertions(+), 1 deletion(-)
> >
> > diff --git a/drivers/net/iavf/iavf_rxtx_vec_avx512.c
> > b/drivers/net/iavf/iavf_rxtx_vec_avx512.c
> > index 8680734..584d12e 100644
> > --- a/drivers/net/iavf/iavf_rxtx_vec_avx512.c
> > +++ b/drivers/net/iavf/iavf_rxtx_vec_avx512.c
> > @@ -1424,7 +1424,12 @@
> > struct rte_mempool *mp = txep[0].mbuf->pool;
> > struct rte_mempool_cache *cache =
> rte_mempool_default_cache(mp,
> > rte_lcore_id());
> > - void **cache_objs = &cache->objs[cache->len];
> > + void **cache_objs;
> > +
> > + if (!cache || cache->len == 0)
> > + goto normal;
> > +
> > + cache_objs = &cache->objs[cache->len];
> >
> > if (n > RTE_MEMPOOL_CACHE_MAX_SIZE) {
> > rte_mempool_ops_enqueue_bulk(mp, (void *)txep, n); @@
> -1462,6
> > +1467,7 @@
> > goto done;
> > }
> >
> > +normal:
> > m = rte_pktmbuf_prefree_seg(txep[0].mbuf);
> > if (likely(m)) {
> > free[0] = m;
> > --
>
> Acked-by: Konstantin Ananyev <konstantin.ananyev@intel.com>
Applied to dpdk-next-net-intel.
Thanks
Qi
>
> > 1.9.3
prev parent reply other threads:[~2020-11-10 10:16 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-11-10 6:46 Wenzhuo Lu
2020-11-10 10:05 ` Ananyev, Konstantin
2020-11-10 10:16 ` Zhang, Qi Z [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=1ff1b0741d9e4342a977e0c2f757ac43@intel.com \
--to=qi.z.zhang@intel.com \
--cc=dev@dpdk.org \
--cc=konstantin.ananyev@intel.com \
--cc=wenzhuo.lu@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 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).