From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 817A6430C3; Mon, 21 Aug 2023 17:53:00 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 7506943245; Mon, 21 Aug 2023 17:53:00 +0200 (CEST) Received: from sender-of-o51.zoho.eu (sender-of-o51.zoho.eu [136.143.169.51]) by mails.dpdk.org (Postfix) with ESMTP id 1F67040DF5 for ; Mon, 21 Aug 2023 17:52:59 +0200 (CEST) ARC-Seal: i=1; a=rsa-sha256; t=1692633177; cv=none; d=zohomail.eu; s=zohoarc; b=ABlQSMwBaVp/pmBjGfBjvnC0GoIny2EwV7fjQFE4tGOX9txZlq9q2GHbLG/22g8Lx2h453sdoBPgw+ZLKbNXjoT4GsU/MbLeZNL7MsquxSPtWcdFdkazfvbDZ7QpdEA/vwZIQG4M76jY6M0oiYySLpUBkGcvX3071+KGJk0D2q8= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zohomail.eu; s=zohoarc; t=1692633177; h=Content-Type:Cc:Date:From:In-Reply-To:MIME-Version:Message-ID:References:Subject:To; bh=r8u4rD1ZU6wsefZdfiDPbB8mx4FyCpCmjxDyBAVqSs8=; b=U6hBHO3O8dgKQfrQQyLUNfybYhgt3Tx+JevSqfBW8viLXrGJgwxllsK64r01PHMBVJY4uacd3+oKlsrIGilBasSiGdneprBs42fTSxlj2GTqCZne7q/ZNKJ5NZ1znZbUU/0JTKeCTv6hYFRfCelsea8E57hV08DwG8ronqNB64Q= ARC-Authentication-Results: i=1; mx.zohomail.eu; spf=pass smtp.mailfrom=liangma@liangbit.com; dmarc=pass header.from= Received: from C02GF04TMD6V.usts.net (cpc92322-cmbg19-2-0-cust802.5-4.cable.virginm.net [86.26.35.35]) by mx.zoho.eu with SMTPS id 1692633175423879.9528674011732; Mon, 21 Aug 2023 17:52:55 +0200 (CEST) Date: Mon, 21 Aug 2023 16:52:52 +0100 From: Liang Ma To: Stephen Hemminger Cc: dev@dpdk.org, Peter Mccarthy Subject: Re: [PATCH v4 15/19] event/opdl: remove term sanity Message-ID: References: <20230517161603.117728-1-stephen@networkplumber.org> <20230802232550.125487-1-stephen@networkplumber.org> <20230802232550.125487-16-stephen@networkplumber.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20230802232550.125487-16-stephen@networkplumber.org> X-ZohoMailClient: External X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org On Wed, Aug 02, 2023 at 04:25:46PM -0700, Stephen Hemminger wrote: > Don't use non-inclusive term. > > Signed-off-by: Stephen Hemminger > --- Acked-by: Liang Ma > drivers/event/opdl/opdl_evdev.c | 2 +- > drivers/event/opdl/opdl_evdev_init.c | 2 +- > 2 files changed, 2 insertions(+), 2 deletions(-) > > diff --git a/drivers/event/opdl/opdl_evdev.c b/drivers/event/opdl/opdl_evdev.c > index 9ce8b39b6098..862f3fa9b27a 100644 > --- a/drivers/event/opdl/opdl_evdev.c > +++ b/drivers/event/opdl/opdl_evdev.c > @@ -241,7 +241,7 @@ opdl_queue_setup(struct rte_eventdev *dev, > > struct opdl_evdev *device = opdl_pmd_priv(dev); > > - /* Extra sanity check, probably not needed */ > + /* Extra check, probably not needed */ > if (queue_id == OPDL_INVALID_QID) { > PMD_DRV_LOG(ERR, "DEV_ID:[%02d] : " > "Invalid queue id %u requested\n", > diff --git a/drivers/event/opdl/opdl_evdev_init.c b/drivers/event/opdl/opdl_evdev_init.c > index be3437fc2f40..12eb2695f5de 100644 > --- a/drivers/event/opdl/opdl_evdev_init.c > +++ b/drivers/event/opdl/opdl_evdev_init.c > @@ -300,7 +300,7 @@ static int opdl_add_deps(struct opdl_evdev *device, > struct opdl_queue *queue_deps = &device->queue[deps_q_id]; > struct opdl_stage *dep_stages[OPDL_PORTS_MAX]; > > - /* sanity check that all stages are for same opdl ring */ > + /* check that all stages are for same opdl ring */ > for (i = 0; i < queue->nb_ports; i++) { > struct opdl_ring *r = > opdl_stage_get_opdl_ring(stage_for_port(queue, i)); > -- > 2.39.2 >