patches for DPDK stable branches
 help / color / mirror / Atom feed
From: "Zhang, Qi Z" <qi.z.zhang@intel.com>
To: "Yigit, Ferruh" <ferruh.yigit@intel.com>,
	"Wu, Jingjing" <jingjing.wu@intel.com>,
	"Zhang, Helin" <helin.zhang@intel.com>
Cc: "dev@dpdk.org" <dev@dpdk.org>, "stable@dpdk.org" <stable@dpdk.org>
Subject: Re: [dpdk-stable] [PATCH v2] net/i40e: fix compile error
Date: Tue, 21 Feb 2017 01:02:39 +0000	[thread overview]
Message-ID: <039ED4275CED7440929022BC67E706115305D3DF@SHSMSX103.ccr.corp.intel.com> (raw)
In-Reply-To: <9035b7f4-1bee-75d4-adb6-8a8cbed04c49@intel.com>

Hi Ferruh:

> -----Original Message-----
> From: Yigit, Ferruh
> Sent: Monday, February 20, 2017 7:44 PM
> To: Zhang, Qi Z <qi.z.zhang@intel.com>; Wu, Jingjing <jingjing.wu@intel.com>;
> Zhang, Helin <helin.zhang@intel.com>
> Cc: dev@dpdk.org; stable@dpdk.org
> Subject: Re: [dpdk-stable] [PATCH v2] net/i40e: fix compile error
> 
> On 2/20/2017 12:08 AM, Qi Zhang wrote:
> > This patch fix the compile error when
> > RTE_LIBRTE_I40E_RX_ALLOW_BULK_ALLOC
> > is disabled.
> 
> Compile error:
>   CC i40e_rxtx_vec_sse.o
> .../drivers/net/i40e/i40e_rxtx_vec_sse.c:72:26:
> error: no member named 'fake_mbuf' in 'struct i40e_rx_queue'
>             rxep[i].mbuf = &rxq->fake_mbuf;
>                             ~~~  ^
> 
> >
> > Fixes: 9ed94e5bb04e ("i40e: add vector Rx")
> > Cc: stable@dpdk.org
> >
> > Signed-off-by: Qi Zhang <qi.z.zhang@intel.com>
> > ---
> >  drivers/net/i40e/i40e_rxtx.c | 2 +-
> >  drivers/net/i40e/i40e_rxtx.h | 2 +-
> >  2 files changed, 2 insertions(+), 2 deletions(-)
> >
> > diff --git a/drivers/net/i40e/i40e_rxtx.c
> > b/drivers/net/i40e/i40e_rxtx.c index 48429cc..40f4a45 100644
> > --- a/drivers/net/i40e/i40e_rxtx.c
> > +++ b/drivers/net/i40e/i40e_rxtx.c
> > @@ -2209,11 +2209,11 @@ i40e_reset_rx_queue(struct i40e_rx_queue
> *rxq)
> >  	for (i = 0; i < len * sizeof(union i40e_rx_desc); i++)
> >  		((volatile char *)rxq->rx_ring)[i] = 0;
> >
> > -#ifdef RTE_LIBRTE_I40E_RX_ALLOW_BULK_ALLOC
> >  	memset(&rxq->fake_mbuf, 0x0, sizeof(rxq->fake_mbuf));
> >  	for (i = 0; i < RTE_PMD_I40E_RX_MAX_BURST; ++i)
> >  		rxq->sw_ring[rxq->nb_rx_desc + i].mbuf = &rxq->fake_mbuf;
> >
> > +#ifdef RTE_LIBRTE_I40E_RX_ALLOW_BULK_ALLOC
> 
> Hi Qi,
> 
> Just to double check, below update in i40e_rxtx.h is enough to fix the build
> error.
> 
> Can you please confirm assigning fake_mbuf to sw_ring[] is required step,
> independent from RTE_LIBRTE_I40E_RX_ALLOW_BULK_ALLOC enabled or not?

I think it's necessary to assign fake_mbuf for couple additional entries in sw_ring 
Because there is no place to initialize these entries (i40e_rxq_rearm only cover entries round in nb_rx_desc) while _recv_raw_pkts_vec require these entries in some situation.(though only RTE_I40E_DESCS_PER_LOOP-1 entries are required, but we can reuse the code)

> And it can be good to document this in commit log.
OK, I will add it in v3
> 
> Thanks,
> ferruh
> 
> 
> >  	rxq->rx_nb_avail = 0;
> >  	rxq->rx_next_avail = 0;
> >  	rxq->rx_free_trigger = (uint16_t)(rxq->rx_free_thresh - 1); diff
> > --git a/drivers/net/i40e/i40e_rxtx.h b/drivers/net/i40e/i40e_rxtx.h
> > index 9df8a56..4f7f319 100644
> > --- a/drivers/net/i40e/i40e_rxtx.h
> > +++ b/drivers/net/i40e/i40e_rxtx.h
> > @@ -119,11 +119,11 @@ struct i40e_rx_queue {
> >  	uint16_t nb_rx_hold; /**< number of held free RX desc */
> >  	struct rte_mbuf *pkt_first_seg; /**< first segment of current packet */
> >  	struct rte_mbuf *pkt_last_seg; /**< last segment of current packet
> > */
> > +	struct rte_mbuf fake_mbuf; /**< dummy mbuf */
> >  #ifdef RTE_LIBRTE_I40E_RX_ALLOW_BULK_ALLOC
> >  	uint16_t rx_nb_avail; /**< number of staged packets ready */
> >  	uint16_t rx_next_avail; /**< index of next staged packets */
> >  	uint16_t rx_free_trigger; /**< triggers rx buffer allocation */
> > -	struct rte_mbuf fake_mbuf; /**< dummy mbuf */
> >  	struct rte_mbuf *rx_stage[RTE_PMD_I40E_RX_MAX_BURST * 2];  #endif
> >
> >

  reply	other threads:[~2017-02-21  1:02 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-02-20  0:08 Qi Zhang
2017-02-20 11:43 ` Ferruh Yigit
2017-02-21  1:02   ` Zhang, Qi Z [this message]
2017-02-20 18:11 ` [dpdk-stable] [PATCH v3] " Qi Zhang
2017-02-21  8:15   ` De Lara Guarch, Pablo
2017-02-22  1:04     ` Zhang, Qi Z
2017-02-22 17:51   ` 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=039ED4275CED7440929022BC67E706115305D3DF@SHSMSX103.ccr.corp.intel.com \
    --to=qi.z.zhang@intel.com \
    --cc=dev@dpdk.org \
    --cc=ferruh.yigit@intel.com \
    --cc=helin.zhang@intel.com \
    --cc=jingjing.wu@intel.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).