From patchwork Tue Aug 9 10:53:48 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Anoob Joseph X-Patchwork-Id: 114754 X-Patchwork-Delegate: gakhil@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 5721FA00C2; Tue, 9 Aug 2022 12:55:13 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 3222842C3C; Tue, 9 Aug 2022 12:54:29 +0200 (CEST) Received: from mx0b-0016f401.pphosted.com (mx0a-0016f401.pphosted.com [67.231.148.174]) by mails.dpdk.org (Postfix) with ESMTP id F396142C1D for ; Tue, 9 Aug 2022 12:54:27 +0200 (CEST) Received: from pps.filterd (m0045849.ppops.net [127.0.0.1]) by mx0a-0016f401.pphosted.com (8.17.1.5/8.17.1.5) with ESMTP id 2791FxJi015646 for ; Tue, 9 Aug 2022 03:54:27 -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=5Mmj233L9vQJWpbC9/4lC+rqIkF850Ti39Q9suwaA5I=; b=k4r57m92WXnSK4UlQL45SDtDWtd/+nwARG8Cb4icweiehOd4i9qn49gmSFLHlJCfIwK+ GwbkUdB2AEo6ZEmTxkIRNSLh5/0GtRzB3AkMNCMIseHoypYpnfQCYkrHi9jeoEhB27Io pUVtJFdsNVOfp0HKQrpK7aXIAKmdBrWqCk8H2xCMnnLicx59whj7LvOK4vjBib2GrU2T TGk0SWKKvi1/M4loAkn2koZOAV9xwYZHd287piVUYDpT0qg0EaL2Yn2Gkxr7gJkV4ELM sAw8xV62ygMSDQL9MdUVCpadY8Rpv0W+SptERYOqmBiFgFXhN146LC+Oyey4VEgolWRd FA== Received: from dc5-exch01.marvell.com ([199.233.59.181]) by mx0a-0016f401.pphosted.com (PPS) with ESMTPS id 3huds2sq7x-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT) for ; Tue, 09 Aug 2022 03:54:27 -0700 Received: from DC5-EXCH01.marvell.com (10.69.176.38) by DC5-EXCH01.marvell.com (10.69.176.38) with Microsoft SMTP Server (TLS) id 15.0.1497.2; Tue, 9 Aug 2022 03:54:25 -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.2 via Frontend Transport; Tue, 9 Aug 2022 03:54:25 -0700 Received: from BG-LT92004.corp.innovium.com (unknown [10.193.69.70]) by maili.marvell.com (Postfix) with ESMTP id 86AF23F704C; Tue, 9 Aug 2022 03:54:23 -0700 (PDT) From: Anoob Joseph To: Akhil Goyal , Jerin Jacob CC: Archana Muniganti , Tejasree Kondoj , Subject: [PATCH v2 10/18] crypto/cnxk: remove extra digest len check Date: Tue, 9 Aug 2022 16:23:48 +0530 Message-ID: <20220809105356.561-11-anoobj@marvell.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220809105356.561-1-anoobj@marvell.com> References: <20220808080606.220-1-anoobj@marvell.com> <20220809105356.561-1-anoobj@marvell.com> MIME-Version: 1.0 X-Proofpoint-ORIG-GUID: nl1OVLVPHGUaYRxlcuU9n-cHY_9rI3VL X-Proofpoint-GUID: nl1OVLVPHGUaYRxlcuU9n-cHY_9rI3VL X-Proofpoint-Virus-Version: vendor=baseguard engine=ICAP:2.0.205,Aquarius:18.0.883,Hydra:6.0.517,FMLib:17.11.122.1 definitions=2022-08-09_03,2022-08-09_02,2022-06-22_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 the flag ROC_SE_VALID_MAC_BUF is set, digest length will be non-zero. Remove extra check in datapath. Signed-off-by: Anoob Joseph --- drivers/crypto/cnxk/cnxk_se.h | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/drivers/crypto/cnxk/cnxk_se.h b/drivers/crypto/cnxk/cnxk_se.h index 64100e8376..f382194c27 100644 --- a/drivers/crypto/cnxk/cnxk_se.h +++ b/drivers/crypto/cnxk/cnxk_se.h @@ -680,11 +680,9 @@ cpt_enc_hmac_prep(uint32_t flags, uint64_t d_offs, uint64_t d_lens, return -1; } } - /* mac_data */ - if (mac_len) { - i = fill_sg_comp_from_buf(scatter_comp, i, - &fc_params->mac_buf); - } + + /* Digest buffer */ + i = fill_sg_comp_from_buf(scatter_comp, i, &fc_params->mac_buf); } else { /* Output including mac */ size = outputlen - iv_len;