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 7E33E45AE1; Tue, 8 Oct 2024 11:53:27 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 0046A4025C; Tue, 8 Oct 2024 11:53:26 +0200 (CEST) Received: from dkmailrelay1.smartsharesystems.com (smartserver.smartsharesystems.com [77.243.40.215]) by mails.dpdk.org (Postfix) with ESMTP id CCEF74021F for ; Tue, 8 Oct 2024 11:53:25 +0200 (CEST) Received: from smartserver.smartsharesystems.com (smartserver.smartsharesys.local [192.168.4.10]) by dkmailrelay1.smartsharesystems.com (Postfix) with ESMTP id A1D5C203F3; Tue, 8 Oct 2024 11:53:25 +0200 (CEST) Content-class: urn:content-classes:message Subject: RE: [PATCH] replace use of word segregate in comments MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Date: Tue, 8 Oct 2024 11:53:24 +0200 Message-ID: <98CBD80474FA8B44BF855DF32C47DC35E9F795@smartserver.smartshare.dk> In-Reply-To: <20241004230305.72516-1-stephen@networkplumber.org> X-MS-Has-Attach: X-MS-TNEF-Correlator: X-MimeOLE: Produced By Microsoft Exchange V6.5 Thread-Topic: [PATCH] replace use of word segregate in comments Thread-Index: AdsWsaQtpSJJ3YN7RD6yuTvJndiheQCthQZg References: <20241004230305.72516-1-stephen@networkplumber.org> From: =?iso-8859-1?Q?Morten_Br=F8rup?= To: "Stephen Hemminger" , Cc: "Yipeng Wang" , "Sameh Gobriel" , "Bruce Richardson" , "Vladimir Medvedkin" , "Wathsala Vithanage" , "Vamsi Attunuru" , "Konstantin Ananyev" 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 > From: Stephen Hemminger [mailto:stephen@networkplumber.org] > Sent: Saturday, 5 October 2024 01.03 >=20 > The use of the word segregate should be avoided. > Rationale from = https://inclusivenaming.org/word-lists/tier-3/segregate/ >=20 > The word segregation carries strong context in regard to civil = rights > movements in the US and South Africa, segregation in the US South, > and > racist history. >=20 > Signed-off-by: Stephen Hemminger > --- > +++ b/drivers/net/octeon_ep/cnxk_ep_rx_neon.c > @@ -61,7 +61,7 @@ cnxk_ep_process_pkts_vec_neon(struct rte_mbuf > **rx_pkts, struct otx_ep_droq *dro >=20 > /* Vertical add, consolidate outside the loop. */ > bytes +=3D vaddq_u32(bytes, s01); > - /* Segregate to packet length and data length. */ > + /* Separate intto packet length and data length. */ Typo: intto -> into > +++ b/drivers/net/octeon_ep/cnxk_ep_rx_sse.c > @@ -52,7 +52,7 @@ cnxk_ep_process_pkts_vec_sse(struct rte_mbuf > **rx_pkts, struct otx_ep_droq *droq > s01 =3D _mm_shuffle_epi8(s01, bswap_mask); > /* Vertical add, consolidate outside loop */ > bytes =3D _mm_add_epi32(bytes, s01); > - /* Segregate to packet length and data length. */ > + /* Separate intto packet length and data length. */ Typo: intto -> into With typos fixed, Acked-by: Morten Br=F8rup