From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jerin Jacob Subject: Re: [PATCH] eventdev: fix Rx SW adapter stop Date: Mon, 11 Jun 2018 17:49:30 +0530 Message-ID: <20180611121929.GD8358@jerin> References: <1528116917-156214-1-git-send-email-nikhil.rao@intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: dev@dpdk.org, stable@dpdk.org To: Nikhil Rao Return-path: Content-Disposition: inline In-Reply-To: <1528116917-156214-1-git-send-email-nikhil.rao@intel.com> List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" -----Original Message----- > Date: Mon, 4 Jun 2018 18:25:17 +0530 > From: Nikhil Rao > To: jerin.jacob@caviumnetworks.com > CC: dev@dpdk.org, Nikhil Rao , stable@dpdk.org > Subject: [PATCH] eventdev: fix Rx SW adapter stop > X-Mailer: git-send-email 1.8.3.1 > > The Rx adapter stop call does not guarantee that the > SW service function will not execute after the > rte_event_eth_rx_adapter_stop() call. > > Add a "started" flag to prevent the adapter from executing > if stop has been called. > > Fixes: 9c38b704d280 ("eventdev: add eth Rx adapter implementation") > Signed-off-by: Nikhil Rao > CC: stable@dpdk.org Applied to dpdk-next-eventdev/master. Thanks. > --- > lib/librte_eventdev/rte_event_eth_rx_adapter.c | 12 +++++++++++- > 1 file changed, 11 insertions(+), 1 deletion(-) > > diff --git a/lib/librte_eventdev/rte_event_eth_rx_adapter.c b/lib/librte_eventdev/rte_event_eth_rx_adapter.c > index d03f870..7b39e39 100644 > --- a/lib/librte_eventdev/rte_event_eth_rx_adapter.c > +++ b/lib/librte_eventdev/rte_event_eth_rx_adapter.c > @@ -91,6 +91,8 @@ struct rte_event_eth_rx_adapter { > int socket_id; > /* Per adapter EAL service */ > uint32_t service_id; > + /* Adapter started flag */ > + uint8_t rxa_started; > } __rte_cache_aligned; > > /* Per eth device */ > @@ -556,6 +558,10 @@ static uint16_t gcd_u16(uint16_t a, uint16_t b) > > if (rte_spinlock_trylock(&rx_adapter->rx_lock) == 0) > return 0; > + if (!rx_adapter->rxa_started) { > + return 0; > + rte_spinlock_unlock(&rx_adapter->rx_lock); > + } > eth_rx_poll(rx_adapter); > rte_spinlock_unlock(&rx_adapter->rx_lock); > return 0; > @@ -847,8 +853,12 @@ static int add_rx_queue(struct rte_event_eth_rx_adapter *rx_adapter, > &rte_eth_devices[i]); > } > > - if (use_service) > + if (use_service) { > + rte_spinlock_lock(&rx_adapter->rx_lock); > + rx_adapter->rxa_started = start; > rte_service_runstate_set(rx_adapter->service_id, start); > + rte_spinlock_unlock(&rx_adapter->rx_lock); > + } > > return 0; > } > -- > 1.8.3.1 >