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 07FF0A0C41; Thu, 30 Sep 2021 16:51:27 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id EB041410EB; Thu, 30 Sep 2021 16:51:26 +0200 (CEST) Received: from mx0b-0016f401.pphosted.com (mx0a-0016f401.pphosted.com [67.231.148.174]) by mails.dpdk.org (Postfix) with ESMTP id CB602410EB for ; Thu, 30 Sep 2021 16:51:25 +0200 (CEST) Received: from pps.filterd (m0045849.ppops.net [127.0.0.1]) by mx0a-0016f401.pphosted.com (8.16.1.2/8.16.1.2) with SMTP id 18UDg337025463; Thu, 30 Sep 2021 07:51:19 -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=OLeN+88Z2Tp4RpPaPqpfkw2T6fqv8J0mui6/HuBEW3E=; b=jk4lnR/Da1tMpM2+PNkYPKDhxwAHoIs76aGilInplURlSOst4eRJHnGhyCjfVurCnuBy 0VciIteYvjCEF6oSudSdIZWuLfByWiIu7mNreErZBSlDql/92c903z/pU9URR4b4gKj6 TB2A/4Kwi84UHfhGdMTtLAgl4Y0cJch24PoHY0T44UtMpg1wxdVX1VIWDDZGfDWxYHwd UWDBShggh2FgdBSOxEbc4fONz/u+sRXSzdLH6+nvn4WV1yCxdr7tCfxSchwrMGBjRMV7 27JclLVekGFYu9kBYw333U9rsi5hgqo36XWAkZBbzy4L1NAgmoIO6aS/f2XSW1n+4rti pg== Received: from dc5-exch02.marvell.com ([199.233.59.182]) by mx0a-0016f401.pphosted.com with ESMTP id 3bdebtg9r4-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT); Thu, 30 Sep 2021 07:51:18 -0700 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.18; Thu, 30 Sep 2021 07:51:17 -0700 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.18 via Frontend Transport; Thu, 30 Sep 2021 07:51:17 -0700 Received: from localhost.localdomain (unknown [10.28.36.185]) by maili.marvell.com (Postfix) with ESMTP id AA4B43F7074; Thu, 30 Sep 2021 07:51:08 -0700 (PDT) From: Akhil Goyal To: CC: , , , , , , , , , , , , , , , , , , , Akhil Goyal , Jian Wang , "Jiawen Wu" , Haiyue Wang Date: Thu, 30 Sep 2021 20:20:13 +0530 Message-ID: <20210930145014.2476799-3-gakhil@marvell.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20210930145014.2476799-1-gakhil@marvell.com> References: <20210930145014.2476799-1-gakhil@marvell.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain X-Proofpoint-ORIG-GUID: zyUlue64XKILHMH9IZyEvNU1Qtr14e0E X-Proofpoint-GUID: zyUlue64XKILHMH9IZyEvNU1Qtr14e0E X-Proofpoint-Virus-Version: vendor=baseguard engine=ICAP:2.0.182.1,Aquarius:18.0.790,Hydra:6.0.391,FMLib:17.0.607.475 definitions=2021-09-30_05,2021-09-30_01,2020-04-07_01 Subject: [dpdk-dev] [PATCH 2/3] drivers/net: temporary disable ixgbe and txgbe 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 Sender: "dev" The PMDs ixgbe and txgbe are currently making rte_security_session private data as constant, but they are getting filled inside the API. This was feasible as the session_private_data and rte_security_session pointers were separate. But now these two will be from same memory chunk. Hence it cannot use them as const. Need help from PMD owners to fix this. Cc: Jian Wang Cc: Jiawen Wu Cc: Haiyue Wang Cc: Fan Zhang Signed-off-by: Akhil Goyal --- drivers/net/meson.build | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/net/meson.build b/drivers/net/meson.build index bcf488f203..4c0cd50cd5 100644 --- a/drivers/net/meson.build +++ b/drivers/net/meson.build @@ -30,7 +30,7 @@ drivers = [ 'igc', 'ionic', 'ipn3ke', - 'ixgbe', + # 'ixgbe', 'kni', 'liquidio', 'memif', @@ -55,7 +55,7 @@ drivers = [ 'szedata2', 'tap', 'thunderx', - 'txgbe', +# 'txgbe', 'vdev_netvsc', 'vhost', 'virtio', -- 2.25.1