From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id C389CA00C5; Sat, 9 Jul 2022 10:28:43 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 8A27A42B71; Sat, 9 Jul 2022 10:28:27 +0200 (CEST) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.133.124]) by mails.dpdk.org (Postfix) with ESMTP id 294EE42B6D for ; Sat, 9 Jul 2022 10:28:26 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1657355305; 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=dDochzAnh5A0t8pEcOLEWp1Lo4KB9zT3FS/k1jJRteQ=; b=WUIxlZHtqLMCoiHBhPUF7pF7ut21J37YrXqz1xFHo6s3Zn3h96dRVgtZoUbcC/vyCg+jPL LYxq8H6RibOzni3TyiWEG+sQ9NII4hiXI2U3j5EatMR7cDhl0KLbPu06OnpMWZh98ODd2A CGH3z+DKJgbCCzzCNQuLjH4vA0KjgU0= 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-614-InoCnK12MeePd9GxFJ8GcQ-1; Sat, 09 Jul 2022 04:28:22 -0400 X-MC-Unique: InoCnK12MeePd9GxFJ8GcQ-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 C2EA73806738; Sat, 9 Jul 2022 08:28:21 +0000 (UTC) Received: from localhost.localdomain (unknown [10.40.192.194]) by smtp.corp.redhat.com (Postfix) with ESMTP id 8A26F2026D64; Sat, 9 Jul 2022 08:28:20 +0000 (UTC) From: David Marchand To: dev@dpdk.org Cc: stable@dpdk.org, Thomas Monjalon , Ferruh Yigit , Andrew Rybchenko , Tyler Retzlaff Subject: [RFC v2 v2 15/29] ethdev: mark some headers as driver only Date: Sat, 9 Jul 2022 10:26:30 +0200 Message-Id: <20220709082644.664675-16-david.marchand@redhat.com> In-Reply-To: <20220709082644.664675-1-david.marchand@redhat.com> References: <20220628144643.1213026-1-david.marchand@redhat.com> <20220709082644.664675-1-david.marchand@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.78 on 10.11.54.4 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"; x-default=true 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 Those headers are for drivers as they include ethdev_driver.h, a driver-only header. Fixes: 19cc526d6c79 ("ethdev: install driver headers") Cc: stable@dpdk.org Signed-off-by: David Marchand --- lib/ethdev/meson.build | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/ethdev/meson.build b/lib/ethdev/meson.build index 47bb2625b0..c25762ce66 100644 --- a/lib/ethdev/meson.build +++ b/lib/ethdev/meson.build @@ -24,11 +24,8 @@ headers = files( 'rte_ethdev_trace_fp.h', 'rte_dev_info.h', 'rte_flow.h', - 'rte_flow_driver.h', 'rte_mtr.h', - 'rte_mtr_driver.h', 'rte_tm.h', - 'rte_tm_driver.h', ) indirect_headers += files( @@ -40,6 +37,9 @@ driver_sdk_headers += files( 'ethdev_driver.h', 'ethdev_pci.h', 'ethdev_vdev.h', + 'rte_flow_driver.h', + 'rte_mtr_driver.h', + 'rte_tm_driver.h', ) deps += ['net', 'kvargs', 'meter', 'telemetry'] -- 2.36.1