From patchwork Tue Jun 20 07:52:45 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Maxime Coquelin X-Patchwork-Id: 128823 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 4F20F42D04; Tue, 20 Jun 2023 09:53:02 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 25F7F4068E; Tue, 20 Jun 2023 09:53:02 +0200 (CEST) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.129.124]) by mails.dpdk.org (Postfix) with ESMTP id BCA6B400D6 for ; Tue, 20 Jun 2023 09:53:00 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1687247580; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=lZHR+ZCuA1GGZkD/0zf1/uxeRjChBbQg86C4mzS1USA=; b=ffui32vxh47mXBntgP33VPFqY++8UR4/Aj1myh87L0wNZJ8fc0oqaFVnMB+XH5SPJdxilj qM+zNhewdqt39urZisjgBvnFt93v6l6WfHJhj8/lzXotBNqA2ewmPOZgcsJJUuyDIBcU56 AZI6252qmuWySlVA3usX6fZMNGInc9o= Received: from mimecast-mx02.redhat.com (mx3-rdu2.redhat.com [66.187.233.73]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-595-GYs4_mVgPf2OqhdHNSTPow-1; Tue, 20 Jun 2023 03:52:56 -0400 X-MC-Unique: GYs4_mVgPf2OqhdHNSTPow-1 Received: from smtp.corp.redhat.com (int-mx04.intmail.prod.int.rdu2.redhat.com [10.11.54.4]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id 2DE1428088A4; Tue, 20 Jun 2023 07:52:56 +0000 (UTC) Received: from max-t490s.redhat.com (unknown [10.39.208.22]) by smtp.corp.redhat.com (Postfix) with ESMTP id 31853200A398; Tue, 20 Jun 2023 07:52:54 +0000 (UTC) From: Maxime Coquelin To: dev@dpdk.org, kai.ji@intel.com, g.singh@nxp.com, hemant.agrawal@nxp.com, pablo.de.lara.guarch@intel.com, fanzhang.oss@gmail.com, roretzla@linux.microsoft.com Cc: Maxime Coquelin Subject: [PATCH v2 0/6] Trivial crypto PMDs cleanup Date: Tue, 20 Jun 2023 09:52:45 +0200 Message-ID: <20230620075251.103491-1-maxime.coquelin@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 3.1 on 10.11.54.4 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com 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 This small series cleans-up some crypto PMD drivers. Changes in v2: ============== - Rebased on top of next-crypto - Fix typo in commit message (patch 4) - Applied A-by's & R-by's Maxime Coquelin (6): crypto/qat: fix sym device prototype crypto/qat: remove security lib presence checks crypto/dpaa2_sec: remove security lib presence checks crypto/dpaa_sec: remove security lib presence checks crypto/ipsec_mb: remove security lib presence checks crypto/qat: remove useless log level checks drivers/common/qat/qat_qp.c | 2 -- drivers/crypto/dpaa2_sec/dpaa2_sec_dpseci.c | 36 +++++--------------- drivers/crypto/dpaa2_sec/dpaa2_sec_priv.h | 9 ----- drivers/crypto/dpaa_sec/dpaa_sec.c | 26 ++------------ drivers/crypto/dpaa_sec/dpaa_sec.h | 9 +---- drivers/crypto/dpaa_sec/dpaa_sec_raw_dp.c | 6 ---- drivers/crypto/ipsec_mb/ipsec_mb_private.h | 3 -- drivers/crypto/ipsec_mb/pmd_aesni_mb_priv.h | 4 --- drivers/crypto/qat/dev/qat_crypto_pmd_gen2.c | 3 -- drivers/crypto/qat/dev/qat_crypto_pmd_gen3.c | 11 +----- drivers/crypto/qat/dev/qat_crypto_pmd_gen4.c | 9 +---- drivers/crypto/qat/dev/qat_crypto_pmd_gens.h | 2 -- drivers/crypto/qat/dev/qat_sym_pmd_gen1.c | 34 ++---------------- drivers/crypto/qat/qat_crypto.h | 2 -- drivers/crypto/qat/qat_sym.c | 17 ++------- drivers/crypto/qat/qat_sym.h | 13 +------ drivers/crypto/qat/qat_sym_session.c | 4 --- drivers/crypto/qat/qat_sym_session.h | 4 --- 18 files changed, 21 insertions(+), 173 deletions(-)