From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id C22C2A04DB; Thu, 15 Oct 2020 12:33:29 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 061371DE91; Thu, 15 Oct 2020 12:32:36 +0200 (CEST) Received: from mail-wr1-f67.google.com (mail-wr1-f67.google.com [209.85.221.67]) by dpdk.org (Postfix) with ESMTP id DAB941DE8D for ; Thu, 15 Oct 2020 12:32:34 +0200 (CEST) Received: by mail-wr1-f67.google.com with SMTP id h5so2783511wrv.7 for ; Thu, 15 Oct 2020 03:32:34 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:message-id:subject:from:to:cc:date:in-reply-to :references:content-transfer-encoding:user-agent:mime-version; bh=vmdMx+4ZrueLoWpnTHZq8xyw6t94linYn4KEKVONlVU=; b=kxFp+HOWuB7dPiYxBikbGzdrBwdLaxTSSb0/pPW4Nw1GDHNtOsN9iOoMEBLrtPblUN VHg1GDsEwnVXfOZo3yTEuOYSu38xfvecnZ8qzbJ4eNV3V9gMbPGfIlLIhD66jzJfm5Bi uGuifbrYqua/ZXNLDEVBwQ7FjSoXr++cAK6rzRc+mtGFcQA5qyoZUv61gXrePVRQvkKE /Dssgj3keqj/F9TCVs+9Q2mGFT8DEiDHlwmY26ah5uOWCqCw6Is5VZ/hC5MspxH6Qh2M RVM2ileiG1L2DfDAQxqlurQT9IuhZohMNKkvboV+qFhjM1iq0N75X+OZvhGCt4znydH7 c0Pg== X-Gm-Message-State: AOAM532vXbAgn9wjCmAgz75bGrzrWnTFMFVEEpxpPTgMtcPqX4dmZVxT JY5JimK3WZKJKEsZeR5Pi9I= X-Google-Smtp-Source: ABdhPJz8E7PpoSxcdcEBfk5UWMAW/pzUcecWw6cyXWjL7F2osrIj24VY/v6lk306qwgbTdjVXkCprg== X-Received: by 2002:adf:f903:: with SMTP id b3mr3674509wrr.142.1602757953647; Thu, 15 Oct 2020 03:32:33 -0700 (PDT) Received: from localhost ([88.98.246.218]) by smtp.gmail.com with ESMTPSA id x1sm3754564wrl.41.2020.10.15.03.32.32 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Thu, 15 Oct 2020 03:32:32 -0700 (PDT) Message-ID: <1fa21b1318f2fd8b7bde0b2d56822a96ed73bf8d.camel@debian.org> From: Luca Boccassi To: Bruce Richardson , dev@dpdk.org Cc: david.marchand@redhat.com, arybchenko@solarflare.com, ferruh.yigit@intel.com, thomas@monjalon.net Date: Thu, 15 Oct 2020 11:32:32 +0100 In-Reply-To: <20201014141304.632120-5-bruce.richardson@intel.com> References: <20200916164429.244847-1-bruce.richardson@intel.com> <20201014141304.632120-1-bruce.richardson@intel.com> <20201014141304.632120-5-bruce.richardson@intel.com> Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable User-Agent: Evolution 3.30.5-1.1 MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH v3 4/7] qat: build from common folder X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 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" On Wed, 2020-10-14 at 15:13 +0100, Bruce Richardson wrote: > Since the drivers in the common directory can be processed out of order, = in > this case following the "bus" directory, we can simplify somewhat the bui= ld > of the QAT driver to be done entirely from the "common/qat" folder rather > than having it's build distributed across 3 folders. >=20 > This also opens up the possibility of building the QAT driver with crypto > only and the compression part disabled. It further allows more sensible > naming of the resulting shared library in case of standardizing library > names based on device class; i.e. common_qat is more descriptive for a > combined crypto/compression driver than either of the other two prefixes > individually. >=20 > Signed-off-by: Bruce Richardson > --- > drivers/common/meson.build | 2 +- > drivers/common/qat/meson.build | 69 ++++++++++++++++--- > .../qat/rte_common_qat_version.map} | 0 > drivers/compress/meson.build | 2 +- > drivers/compress/qat/meson.build | 17 ----- > drivers/crypto/meson.build | 1 - > drivers/crypto/qat/meson.build | 23 ------- > drivers/meson.build | 1 + > 8 files changed, 63 insertions(+), 52 deletions(-) > rename drivers/{compress/qat/rte_pmd_qat_version.map =3D> common/qat/rte= _common_qat_version.map} (100%) > delete mode 100644 drivers/compress/qat/meson.build > delete mode 100644 drivers/crypto/qat/meson.build Acked-by: Luca Boccassi --=20 Kind regards, Luca Boccassi