From patchwork Mon Feb 20 10:48:27 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Volodymyr Fialko X-Patchwork-Id: 124184 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 63A8441CE5; Mon, 20 Feb 2023 11:48:44 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 496EC43013; Mon, 20 Feb 2023 11:48:44 +0100 (CET) Received: from mx0b-0016f401.pphosted.com (mx0b-0016f401.pphosted.com [67.231.156.173]) by mails.dpdk.org (Postfix) with ESMTP id 1AA8840395 for ; Mon, 20 Feb 2023 11:48:42 +0100 (CET) Received: from pps.filterd (m0045851.ppops.net [127.0.0.1]) by mx0b-0016f401.pphosted.com (8.17.1.19/8.17.1.19) with ESMTP id 31K8X9RS009636; Mon, 20 Feb 2023 02:48:42 -0800 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=marvell.com; h=from : to : cc : subject : date : message-id : in-reply-to : references : mime-version : content-transfer-encoding : content-type; s=pfpt0220; bh=v+qJM5kE0w+/q98G21tM4uTUPRtuA+T3NeZLS4QYa3w=; b=aFoBx0m+fnp0lnwfhI24gFOgTFOWhReYsfZpNy5RHs9g69hGizWzFnz0m6dZrK6yglFw DqgEX9TIRVgDnragHO7tSqynnLCntrSCc95sXib76Uo6Y+hXuX2VGUMj9u5jkSeH1IVw 8oZSA+ybw0ycsVrXDTsD8RX1q97mbsTvQcO6OzB8YsRMFrYSQKzwFaRO4MG3KGl0uQew THnmhCVg4xNBJr03fvvecEuHX+HLQYUkYoIEGUIYLwyDH9LMuWVmb+h5+Z8kQmVLx9Dl qellD0NAQTwTC0sZR/KURAp5P6h4j9lsBamhCHZ0xPyl4ygD+G+QDZ8PCvvFFB3LyTfQ zw== Received: from dc5-exch02.marvell.com ([199.233.59.182]) by mx0b-0016f401.pphosted.com (PPS) with ESMTPS id 3nty2yxpmg-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT); Mon, 20 Feb 2023 02:48:42 -0800 Received: from DC5-EXCH01.marvell.com (10.69.176.38) by DC5-EXCH02.marvell.com (10.69.176.39) with Microsoft SMTP Server (TLS) id 15.0.1497.42; Mon, 20 Feb 2023 02:48:40 -0800 Received: from maili.marvell.com (10.69.176.80) by DC5-EXCH01.marvell.com (10.69.176.38) with Microsoft SMTP Server id 15.0.1497.42 via Frontend Transport; Mon, 20 Feb 2023 02:48:39 -0800 Received: from cavium-DT10.. (unknown [10.28.34.39]) by maili.marvell.com (Postfix) with ESMTP id B13BD3F70A6; Mon, 20 Feb 2023 02:48:37 -0800 (PST) From: Volodymyr Fialko To: CC: , , , , , Volodymyr Fialko Subject: [PATCH v2 0/2] reorder: introduce new APIs Date: Mon, 20 Feb 2023 11:48:27 +0100 Message-ID: <20230220104830.4086788-1-vfialko@marvell.com> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20230120102146.4035460-1-vfialko@marvell.com> References: <20230120102146.4035460-1-vfialko@marvell.com> MIME-Version: 1.0 X-Proofpoint-GUID: bMOdEzptwm9eHEZZf4ouT1Uu1PppIlBH X-Proofpoint-ORIG-GUID: bMOdEzptwm9eHEZZf4ouT1Uu1PppIlBH X-Proofpoint-Virus-Version: vendor=baseguard engine=ICAP:2.0.219,Aquarius:18.0.930,Hydra:6.0.562,FMLib:17.11.170.22 definitions=2023-02-20_08,2023-02-17_01,2023-02-09_01 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 This patch series provides new APIs for reorder library and test cases for them. v2: - squash tests with corresponding API patches - address minor comments Volodymyr Fialko (2): reorder: add new drain up to seq number API reorder: add ability to set min sequence number app/test/test_reorder.c | 160 ++++++++++++++++++++++++++++++++++++++ lib/reorder/rte_reorder.c | 109 ++++++++++++++++++++++++++ lib/reorder/rte_reorder.h | 44 +++++++++++ lib/reorder/version.map | 3 + 4 files changed, 316 insertions(+)