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 A137945909; Thu, 5 Sep 2024 09:47:01 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id AA99342E02; Thu, 5 Sep 2024 09:46:46 +0200 (CEST) Received: from mx0b-0016f401.pphosted.com (mx0b-0016f401.pphosted.com [67.231.156.173]) by mails.dpdk.org (Postfix) with ESMTP id 76F4042E0B for ; Thu, 5 Sep 2024 09:46:45 +0200 (CEST) Received: from pps.filterd (m0045851.ppops.net [127.0.0.1]) by mx0b-0016f401.pphosted.com (8.18.1.2/8.18.1.2) with ESMTP id 48547jkX013950 for ; Thu, 5 Sep 2024 00:46:44 -0700 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=marvell.com; h= cc:content-transfer-encoding:content-type:date:from:in-reply-to :message-id:mime-version:references:subject:to; s=pfpt0220; bh=0 /GS+Mt+zL8CUqX57H0gScXzv98xIbusHsv7svDvW1Q=; b=QswGq2DPqF79ogSYG o/U3akMDOET4Ny4WxbR0uYfTIOO5JkZJbRq7L39Dh5jSassucrqnsBCn/XqkeKEj STko4C0V0eCdc4MPobTidqMoPO1AxuxR7ZJC0utNrUvHMXJ/2UdOAS54iXO9JnhG EUY/xaSvus0+80t3xwGo716nDTbJ/HcquX/OT/94sd44LpAH9mPiPklMf5B+MBcT mFghqceDwTfxr/QkaJItm/28aBE3mvufb66LsIU4tfSlapfGxap5hJ9FYVzbZAu2 AkYrsmId/tIJFMO4PV/9vtx1iV+a+a/VNsHFHGjC/4Iawado4zetV3FSa1ozFk9k JZ3/g== Received: from dc5-exch05.marvell.com ([199.233.59.128]) by mx0b-0016f401.pphosted.com (PPS) with ESMTPS id 41ev31tfp0-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NOT) for ; Thu, 05 Sep 2024 00:46:44 -0700 (PDT) Received: from DC5-EXCH05.marvell.com (10.69.176.209) by DC5-EXCH05.marvell.com (10.69.176.209) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id 15.2.1544.4; Thu, 5 Sep 2024 00:46:43 -0700 Received: from maili.marvell.com (10.69.176.80) by DC5-EXCH05.marvell.com (10.69.176.209) with Microsoft SMTP Server id 15.2.1544.4 via Frontend Transport; Thu, 5 Sep 2024 00:46:43 -0700 Received: from hyd1554.caveonetworks.com (unknown [10.29.56.32]) by maili.marvell.com (Postfix) with ESMTP id AD9263F70AC; Thu, 5 Sep 2024 00:46:41 -0700 (PDT) From: Tejasree Kondoj To: Akhil Goyal CC: Anoob Joseph , Vidya Sagar Velumuri , Subject: [PATCH 04/11] common/cnxk: rearrange to remove hole Date: Thu, 5 Sep 2024 13:16:24 +0530 Message-ID: <20240905074631.1462357-5-ktejasree@marvell.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20240905074631.1462357-1-ktejasree@marvell.com> References: <20240905074631.1462357-1-ktejasree@marvell.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain X-Proofpoint-ORIG-GUID: PYfGeGDLgPdTFYbz-fV7fdI7yDKCanjp X-Proofpoint-GUID: PYfGeGDLgPdTFYbz-fV7fdI7yDKCanjp X-Proofpoint-Virus-Version: vendor=baseguard engine=ICAP:2.0.293,Aquarius:18.0.1039,Hydra:6.0.680,FMLib:17.12.60.29 definitions=2024-09-05_04,2024-09-04_01,2024-09-02_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 From: Anoob Joseph Rearrange fields to remove hole. Signed-off-by: Anoob Joseph --- drivers/common/cnxk/roc_se.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/common/cnxk/roc_se.h b/drivers/common/cnxk/roc_se.h index 50741a0b81..ede8d69c0e 100644 --- a/drivers/common/cnxk/roc_se.h +++ b/drivers/common/cnxk/roc_se.h @@ -331,6 +331,7 @@ struct roc_se_ctx { /* auth_iv_offset passed to PDCP_CHAIN opcode based on FVC bit */ uint8_t pdcp_iv_offset; union cpt_inst_w4 template_w4; + uint8_t *auth_key; /* Below fields are accessed by hardware */ struct se_ctx_s { /* Word0 */ @@ -355,7 +356,6 @@ struct roc_se_ctx { struct roc_se_sm_context sm_ctx; }; } se_ctx __plt_aligned(ROC_ALIGN); - uint8_t *auth_key; } __plt_aligned(ROC_ALIGN); struct roc_se_fc_params { -- 2.25.1