From patchwork Wed Apr 26 09:27:50 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Rakesh Kudurumalla X-Patchwork-Id: 126530 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 5121D42A01; Wed, 26 Apr 2023 11:28:00 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 264DE410FA; Wed, 26 Apr 2023 11:28:00 +0200 (CEST) Received: from mx0b-0016f401.pphosted.com (mx0a-0016f401.pphosted.com [67.231.148.174]) by mails.dpdk.org (Postfix) with ESMTP id B978340DDA for ; Wed, 26 Apr 2023 11:27:57 +0200 (CEST) Received: from pps.filterd (m0045849.ppops.net [127.0.0.1]) by mx0a-0016f401.pphosted.com (8.17.1.19/8.17.1.19) with ESMTP id 33Q8YdF9007686; Wed, 26 Apr 2023 02:27:56 -0700 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=uzfzIPhKJc1wdEu8/VygRRWfDje/rMlmgzUOXRFxm0Q=; b=EBzoT9f5QIC8K+xIYl1CayW3sxRIsDnt6xZwD6OUI4egnVWT0YJ3DFr+lD77nPeKCN3A rwVSftiFZ6LV5EusAdDxR8ET1wE+r4uugo/0guIuhXGAW56bUDy6B5jVoAr0s+n9eegG AhwUITtivF8/yFChTkR8H7ND0ajQdI0SmojyFOa7nkcQmsWWlw8TPgYTg4SFXtN9r9ar 2RDFki0C8WQEkjf715nB0BmjAkgn2szat6/BaloKteaR15Uq27+yJGl7KmkIoMDQ2lkJ O5nowFJ7QXEIseihEDOyUhwW6yspfRsG/+KGljpVFkBgpxinFDTA6jxIhuVu+U5YbRaW uA== Received: from dc5-exch01.marvell.com ([199.233.59.181]) by mx0a-0016f401.pphosted.com (PPS) with ESMTPS id 3q70jgg6b2-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT); Wed, 26 Apr 2023 02:27:55 -0700 Received: from DC5-EXCH02.marvell.com (10.69.176.39) by DC5-EXCH01.marvell.com (10.69.176.38) with Microsoft SMTP Server (TLS) id 15.0.1497.48; Wed, 26 Apr 2023 02:27:54 -0700 Received: from maili.marvell.com (10.69.176.80) by DC5-EXCH02.marvell.com (10.69.176.39) with Microsoft SMTP Server id 15.0.1497.48 via Frontend Transport; Wed, 26 Apr 2023 02:27:54 -0700 Received: from localhost.localdomain (unknown [10.28.36.154]) by maili.marvell.com (Postfix) with ESMTP id 87B483F7044; Wed, 26 Apr 2023 02:27:52 -0700 (PDT) From: Rakesh Kudurumalla To: Olivier Matz CC: , , , "Rakesh Kudurumalla" Subject: [PATCH 1/1] app/test: resolve mbuf_test application failure Date: Wed, 26 Apr 2023 14:57:50 +0530 Message-ID: <20230426092750.2423850-1-rkudurumalla@marvell.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20230426092303.2423712-1-rkudurumalla@marvell.com> References: <20230426092303.2423712-1-rkudurumalla@marvell.com> MIME-Version: 1.0 X-Proofpoint-GUID: C1mf4d8zt2pEjtYw4k1m_-h0QR76W-2r X-Proofpoint-ORIG-GUID: C1mf4d8zt2pEjtYw4k1m_-h0QR76W-2r X-Proofpoint-Virus-Version: vendor=baseguard engine=ICAP:2.0.254,Aquarius:18.0.942,Hydra:6.0.573,FMLib:17.11.170.22 definitions=2023-04-26_04,2023-04-26_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 when RTE_ENABLE_ASSERT is defined test_mbuf application is failing because we are trying to attach extbuf to a cloned buffer to which external mbuf is already attached.This patch fixes the same. Signed-off-by: Rakesh Kudurumalla Acked-by: Ashwin Sekhar T K --- v2: removed gerrit id app/test/test_mbuf.c | 1 + 1 file changed, 1 insertion(+) diff --git a/app/test/test_mbuf.c b/app/test/test_mbuf.c index 8d8d3b9386..e2b81db308 100644 --- a/app/test/test_mbuf.c +++ b/app/test/test_mbuf.c @@ -2375,6 +2375,7 @@ test_pktmbuf_ext_shinfo_init_helper(struct rte_mempool *pktmbuf_pool) GOTO_FAIL("%s: Bad packet length\n", __func__); /* attach the same external buffer to the cloned mbuf */ + clone->ol_flags = 0; rte_pktmbuf_attach_extbuf(clone, ext_buf_addr, buf_iova, buf_len, ret_shinfo); if (clone->ol_flags != RTE_MBUF_F_EXTERNAL)