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 4356BA04DD; Thu, 22 Oct 2020 09:56:21 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 52E9EA8EC; Thu, 22 Oct 2020 09:56:08 +0200 (CEST) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [216.205.24.124]) by dpdk.org (Postfix) with ESMTP id 2E6C8A8EC for ; Thu, 22 Oct 2020 09:56:06 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1603353364; 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: in-reply-to:in-reply-to:references:references; bh=i306lAmglXQUk8X/heLUoECy7EoWUm7srDity/9Jf6o=; b=c3veRcRb7CDZKqiTZyt2GGszGgp1g3Nc1IhOO0bQ4xjjzi4gxax7vWmm3b7MOhiWcijg7u +kpg86nOY7Tlkj55i7scAKp5NkYgbuCBpoLnoMvFD7gaE8+XDKPdvwXXFSy+keZl080zhg 3vrU7MsslcHderNdrSvxRiO2cMmYCj0= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-263-fUmTolKNNTGYgRhN3jfPcQ-1; Thu, 22 Oct 2020 03:56:00 -0400 X-MC-Unique: fUmTolKNNTGYgRhN3jfPcQ-1 Received: from smtp.corp.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 457B710A0B8A; Thu, 22 Oct 2020 07:55:59 +0000 (UTC) Received: from dmarchan.remote.csb (unknown [10.40.193.33]) by smtp.corp.redhat.com (Postfix) with ESMTP id 3AEC560BFA; Thu, 22 Oct 2020 07:55:56 +0000 (UTC) From: David Marchand To: dev@dpdk.org Cc: bruce.richardson@intel.com, stable@dpdk.org, Fan Zhang , Luca Boccassi Date: Thu, 22 Oct 2020 09:55:44 +0200 Message-Id: <20201022075545.17945-1-david.marchand@redhat.com> In-Reply-To: <20200917150917.22945-1-david.marchand@redhat.com> References: <20200917150917.22945-1-david.marchand@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.12 Authentication-Results: relay.mimecast.com; auth=pass smtp.auth=CUSA124A263 smtp.mailfrom=david.marchand@redhat.com X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Subject: [dpdk-dev] [PATCH v2 1/2] crypto/scheduler: fix header install with meson 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" The headers variable is only used in lib/meson.build context. For drivers, an explicit install_headers() is necessary. Reproduced while compiling the l2fwd-crypto example out of meson (which can be done by adding it in devtools/test-meson-builds.sh examples build test). Fixes: cd2b6458a1cb ("crypto/scheduler: add in meson build") Cc: stable@dpdk.org Signed-off-by: David Marchand Acked-by: Bruce Richardson --- drivers/crypto/scheduler/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/crypto/scheduler/meson.build b/drivers/crypto/scheduler/meson.build index 2209c50232..df8f3fe7b7 100644 --- a/drivers/crypto/scheduler/meson.build +++ b/drivers/crypto/scheduler/meson.build @@ -13,7 +13,7 @@ sources = files( 'scheduler_roundrobin.c', ) -headers = files( +install_headers( 'rte_cryptodev_scheduler.h', 'rte_cryptodev_scheduler_operations.h', ) -- 2.23.0