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 A7766A034E for ; Mon, 21 Feb 2022 16:37:32 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id A289D4013F; Mon, 21 Feb 2022 16:37:32 +0100 (CET) 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 4B7CD4013F for ; Mon, 21 Feb 2022 16:37:31 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1645457850; 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=zn7KRYVBU1NTtUwze8HhaTn3TQ1vnnH/0A8DxBgo4cs=; b=RddU87Co6JITO9z55Tes+zbVHeP1yckaBsQ7P/IWKI7kUche3t+w70AbjN1FwVqnHcmOQm Twz8uMrcNfeFh4h2wvLgbZ6sgP6Rfzjf5Jf/VS2MgT1Xpjzlht7H1WTYmtMIfwJ3q8tqay txTgucuYX1mtjfh8PKZrot2wcKLC0VM= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-453-u2tRZtkJOeeXxEbPQulhMw-1; Mon, 21 Feb 2022 10:37:27 -0500 X-MC-Unique: u2tRZtkJOeeXxEbPQulhMw-1 Received: from smtp.corp.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id A030E180FD64; Mon, 21 Feb 2022 15:37:26 +0000 (UTC) Received: from rh.Home (unknown [10.39.195.12]) by smtp.corp.redhat.com (Postfix) with ESMTP id 895707E2E8; Mon, 21 Feb 2022 15:37:25 +0000 (UTC) From: Kevin Traynor To: Nipun Gupta Cc: Sunil Kumar Kori , dpdk stable Subject: patch 'examples/l3fwd: fix Rx burst size for event mode' has been queued to stable release 21.11.1 Date: Mon, 21 Feb 2022 15:33:24 +0000 Message-Id: <20220221153625.152324-15-ktraynor@redhat.com> In-Reply-To: <20220221153625.152324-1-ktraynor@redhat.com> References: <20220221153625.152324-1-ktraynor@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.12 Authentication-Results: relay.mimecast.com; auth=pass smtp.auth=CUSA124A263 smtp.mailfrom=ktraynor@redhat.com X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" 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.1 Note it hasn't been pushed to http://dpdk.org/browse/dpdk-stable yet. It will be pushed if I get no objections before 02/26/22. 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/87646d04a138be3d6988dbd1bb463699395b9095 Thanks. Kevin --- >From 87646d04a138be3d6988dbd1bb463699395b9095 Mon Sep 17 00:00:00 2001 From: Nipun Gupta Date: Tue, 11 Jan 2022 10:35:46 +0530 Subject: [PATCH] examples/l3fwd: fix Rx burst size for event mode [ upstream commit 2e94304c8434968626cd39fd6afe393a905c7dd2 ] While dequeuing the packets from the event device, burst size is provided in the API. This was not getting properly configured in the application. This patch correctly configures the burst size. Fixes: aaf58cb85b62 ("examples/l3fwd: add event port and queue setup") Signed-off-by: Nipun Gupta Acked-by: Sunil Kumar Kori --- examples/l3fwd/l3fwd_event_internal_port.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/examples/l3fwd/l3fwd_event_internal_port.c b/examples/l3fwd/l3fwd_event_internal_port.c index 1e8f46bc11..32cf657148 100644 --- a/examples/l3fwd/l3fwd_event_internal_port.c +++ b/examples/l3fwd/l3fwd_event_internal_port.c @@ -119,4 +119,6 @@ l3fwd_event_port_setup_internal_port(void) RTE_EVENT_PORT_CFG_DISABLE_IMPL_REL; + evt_rsrc->deq_depth = def_p_conf.dequeue_depth; + for (event_p_id = 0; event_p_id < evt_rsrc->evp.nb_ports; event_p_id++) { -- 2.34.1 --- Diff of the applied patch vs upstream commit (please double-check if non-empty: --- --- - 2022-02-21 15:22:45.005866443 +0000 +++ 0015-examples-l3fwd-fix-Rx-burst-size-for-event-mode.patch 2022-02-21 15:22:44.040704010 +0000 @@ -1 +1 @@ -From 2e94304c8434968626cd39fd6afe393a905c7dd2 Mon Sep 17 00:00:00 2001 +From 87646d04a138be3d6988dbd1bb463699395b9095 Mon Sep 17 00:00:00 2001 @@ -5,0 +6,2 @@ +[ upstream commit 2e94304c8434968626cd39fd6afe393a905c7dd2 ] + @@ -12 +13,0 @@ -Cc: stable@dpdk.org