From patchwork Fri Aug 11 08:57:44 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Nithin Dabilpuram X-Patchwork-Id: 130124 X-Patchwork-Delegate: jerinj@marvell.com 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 F202843032; Fri, 11 Aug 2023 10:59:10 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 40A9043257; Fri, 11 Aug 2023 10:58:43 +0200 (CEST) Received: from mx0b-0016f401.pphosted.com (mx0a-0016f401.pphosted.com [67.231.148.174]) by mails.dpdk.org (Postfix) with ESMTP id 15CA34327D for ; Fri, 11 Aug 2023 10:58:40 +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 37AMkPcv002990 for ; Fri, 11 Aug 2023 01:58:40 -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=MZzo9FvZSfJzKAYrd6S86bUWu1cK99t/v4lCuXWkoAU=; b=g/6NBgEOD5dALq6jPLtf9XYHb6h98T3XiUgp8k/fehaKRlCBB+fkZ5XPb3IfYx0mFDag u8G8/vHIuYgFrlYQDEr0ZffYE7NTWeYK3PDyMgNkU+sQm06Khl6GEXabdLu/myj31iwW 7Dpp2dPW7DHqSK48Mp32KPmwA6xoBuQcivfrgwQkKnvTG8rkmKzV/Et4uRp6yWX6jFE3 PHqLPDCLJCj7wkrhUZ9IX2mlJT77of8E214zUmCnquNYKSkrCnObVncgd1XkC+zhb1xP AZMg6shM4KZYVoXZwpFnBJpartu3Bllqoh3U+8A+WtH3g1FoyOBWRs5DAveDrETKvZ5g LA== Received: from dc5-exch02.marvell.com ([199.233.59.182]) by mx0a-0016f401.pphosted.com (PPS) with ESMTPS id 3sd8yp9r7k-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT) for ; Fri, 11 Aug 2023 01:58:40 -0700 Received: from DC5-EXCH02.marvell.com (10.69.176.39) by DC5-EXCH02.marvell.com (10.69.176.39) with Microsoft SMTP Server (TLS) id 15.0.1497.48; Fri, 11 Aug 2023 01:58:38 -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; Fri, 11 Aug 2023 01:58:38 -0700 Received: from hyd1588t430.caveonetworks.com (unknown [10.29.52.204]) by maili.marvell.com (Postfix) with ESMTP id 0966F3F706A; Fri, 11 Aug 2023 01:58:35 -0700 (PDT) From: Nithin Dabilpuram To: Nithin Dabilpuram , Kiran Kumar K , Sunil Kumar Kori , Satha Rao CC: , , Akhil Goyal Subject: [PATCH 10/31] common/cnxk: fix different size bit operations Date: Fri, 11 Aug 2023 14:27:44 +0530 Message-ID: <20230811085805.441256-10-ndabilpuram@marvell.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20230811085805.441256-1-ndabilpuram@marvell.com> References: <20230811085805.441256-1-ndabilpuram@marvell.com> MIME-Version: 1.0 X-Proofpoint-ORIG-GUID: _jvUktsMx_XjZnKux4xoNlZtI-Eid4Eh X-Proofpoint-GUID: _jvUktsMx_XjZnKux4xoNlZtI-Eid4Eh X-Proofpoint-Virus-Version: vendor=baseguard engine=ICAP:2.0.267,Aquarius:18.0.957,Hydra:6.0.591,FMLib:17.11.176.26 definitions=2023-08-10_20,2023-08-10_01,2023-05-22_02 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: Akhil Goyal WORD_SIZE is made as unsigned long long so that bit operations are done on same size of variables. Fixes: 1ec23c7523b4 ("common/cnxk: support anti-replay check in SW for cn9k") Signed-off-by: Akhil Goyal --- drivers/common/cnxk/cnxk_security_ar.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/common/cnxk/cnxk_security_ar.h b/drivers/common/cnxk/cnxk_security_ar.h index deb38db0d0..d0151a752c 100644 --- a/drivers/common/cnxk/cnxk_security_ar.h +++ b/drivers/common/cnxk/cnxk_security_ar.h @@ -17,7 +17,7 @@ BITS_PER_LONG_LONG) #define WORD_SHIFT 6 -#define WORD_SIZE (1 << WORD_SHIFT) +#define WORD_SIZE (1ULL << WORD_SHIFT) #define WORD_MASK (WORD_SIZE - 1) #define IPSEC_ANTI_REPLAY_FAILED (-1)