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 9509443DF8 for ; Thu, 4 Apr 2024 11:52:47 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 8AF5E402E9; Thu, 4 Apr 2024 11:52:47 +0200 (CEST) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.129.124]) by mails.dpdk.org (Postfix) with ESMTP id 789D6402D8 for ; Thu, 4 Apr 2024 11:52:45 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1712224365; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=zc3lB64cLo9IPawLNP5tLgIOGKGpwb+2hw6d2fogCD0=; b=ORKa4i9ne1brpdIAOM2vbRdJodO21VBDbhzWwp5GgsnTCjP8y4/JCA2u3iyOgSTsNFYSAC QgGW314DmzXGviGo6F/DS+x+K1RQ7LcpdVqWbYJ/jxcJlgzfNdaAwfunxupZXQbxHPzq/f 2SJDBbR7/HsQGWVrqzfU0q4OMqs/9Wk= Received: from mimecast-mx02.redhat.com (mimecast-mx02.redhat.com [66.187.233.88]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.3, cipher=TLS_AES_256_GCM_SHA384) id us-mta-641-THBshQKiOne4kiSh3MoHmA-1; Thu, 04 Apr 2024 05:52:41 -0400 X-MC-Unique: THBshQKiOne4kiSh3MoHmA-1 Received: from smtp.corp.redhat.com (int-mx01.intmail.prod.int.rdu2.redhat.com [10.11.54.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id 6D0BA863062; Thu, 4 Apr 2024 09:52:41 +0000 (UTC) Received: from rh.Home (unknown [10.39.192.22]) by smtp.corp.redhat.com (Postfix) with ESMTP id BB4F13C24; Thu, 4 Apr 2024 09:52:40 +0000 (UTC) From: Kevin Traynor To: Flore Norceide Cc: dpdk stable Subject: patch 'doc: fix typo in packet framework guide' has been queued to stable release 21.11.7 Date: Thu, 4 Apr 2024 10:51:47 +0100 Message-ID: <20240404095155.155427-17-ktraynor@redhat.com> In-Reply-To: <20240404095155.155427-1-ktraynor@redhat.com> References: <20240404095155.155427-1-ktraynor@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 3.4.1 on 10.11.54.1 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII"; x-default=true X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: stable-bounces@dpdk.org Hi, FYI, your patch has been queued to stable release 21.11.7 Note it hasn't been pushed to http://dpdk.org/browse/dpdk-stable yet. It will be pushed if I get no objections before 04/09/24. So please shout if anyone has objections. Also note that after the patch there's a diff of the upstream commit vs the patch applied to the branch. This will indicate if there was any rebasing needed to apply to the stable branch. If there were code changes for rebasing (ie: not only metadata diffs), please double check that the rebase was correctly done. Queued patches are on a temporary branch at: https://github.com/kevintraynor/dpdk-stable This queued commit can be viewed at: https://github.com/kevintraynor/dpdk-stable/commit/fe97b1e3edcd2d17e12c7d4e179c921e3df451ff Thanks. Kevin --- >From fe97b1e3edcd2d17e12c7d4e179c921e3df451ff Mon Sep 17 00:00:00 2001 From: Flore Norceide Date: Thu, 21 Mar 2024 19:03:52 -0400 Subject: [PATCH] doc: fix typo in packet framework guide [ upstream commit e4e1f2f7d24240d476cfa757e218d1532759b65d ] Caught by codespell Fixes: fc1f2750a3ec ("doc: programmers guide") Signed-off-by: Flore Norceide --- .mailmap | 1 + doc/guides/prog_guide/packet_framework.rst | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.mailmap b/.mailmap index 44212ef422..1f846973ee 100644 --- a/.mailmap +++ b/.mailmap @@ -390,4 +390,5 @@ Fiona Trahe Flavia Musatescu Flavio Leitner +Flore Norceide Forrest Shi Francesco Mancino diff --git a/doc/guides/prog_guide/packet_framework.rst b/doc/guides/prog_guide/packet_framework.rst index 3d4e3b66cc..b263f23f17 100644 --- a/doc/guides/prog_guide/packet_framework.rst +++ b/doc/guides/prog_guide/packet_framework.rst @@ -513,5 +513,5 @@ This is because the cost of L2/L3 cache memory miss on memory read accesses is h the CPU execution units have to stall until the read operation is completed from L3 cache memory or external DRAM memory. By using prefetch instructions, the latency of memory read accesses is hidden, -provided that it is preformed early enough before the respective data structure is actually used. +provided that it is performed early enough before the respective data structure is actually used. By splitting the processing into several stages that are executed on different packets (the packets from the input burst are interlaced), -- 2.44.0 --- Diff of the applied patch vs upstream commit (please double-check if non-empty: --- --- - 2024-04-04 10:49:34.438169157 +0100 +++ 0017-doc-fix-typo-in-packet-framework-guide.patch 2024-04-04 10:49:33.761457767 +0100 @@ -1 +1 @@ -From e4e1f2f7d24240d476cfa757e218d1532759b65d Mon Sep 17 00:00:00 2001 +From fe97b1e3edcd2d17e12c7d4e179c921e3df451ff Mon Sep 17 00:00:00 2001 @@ -5,0 +6,2 @@ +[ upstream commit e4e1f2f7d24240d476cfa757e218d1532759b65d ] + @@ -9 +10,0 @@ -Cc: stable@dpdk.org @@ -18 +19 @@ -index 67687d21b1..ac50264e66 100644 +index 44212ef422..1f846973ee 100644 @@ -21 +22 @@ -@@ -412,4 +412,5 @@ Fiona Trahe +@@ -390,4 +390,5 @@ Fiona Trahe @@ -28 +29 @@ -index ebc69d8c3e..9987ead6c5 100644 +index 3d4e3b66cc..b263f23f17 100644 @@ -31 +32 @@ -@@ -510,5 +510,5 @@ This is because the cost of L2/L3 cache memory miss on memory read accesses is h +@@ -513,5 +513,5 @@ This is because the cost of L2/L3 cache memory miss on memory read accesses is h