From patchwork Wed Feb 22 16:25:27 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stephen Hemminger X-Patchwork-Id: 124387 X-Patchwork-Delegate: thomas@monjalon.net Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 31A6041D40; Wed, 22 Feb 2023 17:26:29 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 49787430B1; Wed, 22 Feb 2023 17:25:56 +0100 (CET) Received: from mail-pj1-f46.google.com (mail-pj1-f46.google.com [209.85.216.46]) by mails.dpdk.org (Postfix) with ESMTP id A18664305E for ; Wed, 22 Feb 2023 17:25:51 +0100 (CET) Received: by mail-pj1-f46.google.com with SMTP id oe18-20020a17090b395200b00236a0d55d3aso9291488pjb.3 for ; Wed, 22 Feb 2023 08:25:51 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=networkplumber-org.20210112.gappssmtp.com; s=20210112; h=content-transfer-encoding:mime-version:references:in-reply-to :message-id:date:subject:cc:to:from:from:to:cc:subject:date :message-id:reply-to; bh=A8ZLTC81tc/H3BMyua7/sxGykenf388/Z2PWAxQ9AMg=; b=HtR0Xr5xW449ysX6TaXUPpdhKXRK2PJZhxjoC+yyIUlUxhqHsswzuSd5g4zKLCbbgF HpRizsMkfto38g/UMPYstpJFH6SsNRJ6RadTpN7jlvsdU5Lj/0rbUOqKA9XSHqlknpX/ wrmd62qyuNA3jkH7rKAHy2ObKlBwMEuttXr92+aGiyTfQsZTbeuT5jj+VnZUen5c1phl xRrhuPjW95eAxi5ijSpKACbef2Vk5Js703Zek1DrvJ2GANPf/wixzgiSwg6ZLcZBUIxc fVfRjydsqD4gF6d1L66d1g+u0sAoofkrpw/PrCtvWH7tnF3Gmw9TZozknUjsdK92FvcX MYZg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=content-transfer-encoding:mime-version:references:in-reply-to :message-id:date:subject:cc:to:from:x-gm-message-state:from:to:cc :subject:date:message-id:reply-to; bh=A8ZLTC81tc/H3BMyua7/sxGykenf388/Z2PWAxQ9AMg=; b=E3KuwaT0BRAH3YMqydikQheIV5DRapXRAZ19Pc1TZFTBKz+ExvJ3CmveQ1HLbOZiAE U08dNJH9XWBr+U3VhPPdU1y4gUHLY76zRyYa4U8oktcnaSZl6TIXaYMwImyL2QsdmElf 8G+daSHiUNhUzno6Ri0YUIczW8WWmVxgV2al2Xp8V1dT56krOoQ5AzwCUg/0cneER6Tt gwsUOSAu4ExVarWSEm1EA5KBHyEUrb/ajczSMgDGBoc8h3ESyU8Wsl7SpCaz6Loa8NQA vHb0GbxKiSQRAJv07oCRkEtEfzh10hC52j2iAlgrrR48AJK8518Ozcf/gU9Y1jZX/966 2W/Q== X-Gm-Message-State: AO0yUKV5JNvzfXopRM/2j0EuSvKWQSsgNjSb9Qxg7qllAjgKEkuOEhGd Noiweg4jA/ybfIXIKXZupD4CSkvzkengbXuqv+0= X-Google-Smtp-Source: AK7set+rP/rjS7cW7mr8ce2FrkOyZ4AWnXNP9CptEGgMjxOqtfwvw6n6665JCBPMISwgJ9T7xoiSfw== X-Received: by 2002:a17:902:da91:b0:19a:7648:512 with SMTP id j17-20020a170902da9100b0019a76480512mr13940457plx.30.1677083150623; Wed, 22 Feb 2023 08:25:50 -0800 (PST) Received: from hermes.local (204-195-120-218.wavecable.com. [204.195.120.218]) by smtp.gmail.com with ESMTPSA id p5-20020a170902a40500b0019adfb96084sm1510781plq.36.2023.02.22.08.25.49 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Wed, 22 Feb 2023 08:25:50 -0800 (PST) From: Stephen Hemminger To: dev@dpdk.org Cc: Stephen Hemminger , Honnappa Nagarahalli , Konstantin Ananyev Subject: [PATCH v4 07/19] remove repeated word 'this' Date: Wed, 22 Feb 2023 08:25:27 -0800 Message-Id: <20230222162539.127103-8-stephen@networkplumber.org> X-Mailer: git-send-email 2.39.1 In-Reply-To: <20230222162539.127103-1-stephen@networkplumber.org> References: <0220722214106.162640-1-stephen@networkplumber.org> <20230222162539.127103-1-stephen@networkplumber.org> MIME-Version: 1.0 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 Found by doing duplicate word scan. Signed-off-by: Stephen Hemminger --- lib/ring/rte_ring.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/ring/rte_ring.c b/lib/ring/rte_ring.c index cddaf6b2876f..8ed455043dee 100644 --- a/lib/ring/rte_ring.c +++ b/lib/ring/rte_ring.c @@ -280,7 +280,8 @@ rte_ring_create_elem(const char *name, unsigned int esize, unsigned int count, /* reserve a memory zone for this ring. If we can't get rte_config or * we are secondary process, the memzone_reserve function will set - * rte_errno for us appropriately - hence no check in this this function */ + * rte_errno for us appropriately - hence no check in this function + */ mz = rte_memzone_reserve_aligned(mz_name, ring_size, socket_id, mz_flags, __alignof__(*r)); if (mz != NULL) {