From patchwork Mon Jun 5 02:27:39 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Dengdui Huang X-Patchwork-Id: 128065 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 A0B1042C2F; Mon, 5 Jun 2023 04:27:52 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 3E497410EE; Mon, 5 Jun 2023 04:27:47 +0200 (CEST) Received: from szxga03-in.huawei.com (szxga03-in.huawei.com [45.249.212.189]) by mails.dpdk.org (Postfix) with ESMTP id 5E7E340DF6 for ; Mon, 5 Jun 2023 04:27:44 +0200 (CEST) Received: from dggpeml500011.china.huawei.com (unknown [172.30.72.56]) by szxga03-in.huawei.com (SkyGuard) with ESMTP id 4QZHXT1cxtzLmZG; Mon, 5 Jun 2023 10:26:01 +0800 (CST) Received: from localhost.huawei.com (10.50.163.32) by dggpeml500011.china.huawei.com (7.185.36.84) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2507.23; Mon, 5 Jun 2023 10:27:41 +0800 From: Dengdui Huang To: CC: , , , , , , , , , Subject: [PATCH v5 0/2] add Rx/Tx queue ID check API and use it to fix a bug Date: Mon, 5 Jun 2023 10:27:39 +0800 Message-ID: <20230605022741.1473230-1-huangdengdui@huawei.com> X-Mailer: git-send-email 2.33.0 In-Reply-To: <20230516110021.1801443-1-huangdengdui@huawei.com> References: <20230516110021.1801443-1-huangdengdui@huawei.com> MIME-Version: 1.0 X-Originating-IP: [10.50.163.32] X-ClientProxiedBy: dggems705-chm.china.huawei.com (10.3.19.182) To dggpeml500011.china.huawei.com (7.185.36.84) X-CFilter-Loop: Reflected 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 series add a commom API to check queue id and use it to fix a bug. v4->v5 update document order and correcting typos v3->v4 update API name and uptate description in the API documentation v2->v3 update API name and use the internal function eth_dev_validate_tx_queue() to check queue id v1->v2 add a commom API to check queue id Dengdui Huang (2): ethdev: add API to check if queue is valid app/testpmd: fix segment fault with invalid queue ID app/test-pmd/cmdline.c | 23 +++++++++++----- doc/guides/rel_notes/release_23_07.rst | 6 ++++ lib/ethdev/rte_ethdev.c | 22 +++++++++++++++ lib/ethdev/rte_ethdev.h | 38 ++++++++++++++++++++++++++ lib/ethdev/version.map | 2 ++ 5 files changed, 84 insertions(+), 7 deletions(-)