From patchwork Fri Mar 11 20:05:20 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bruce Richardson X-Patchwork-Id: 108690 X-Patchwork-Delegate: thomas@monjalon.net 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 9C135A00C2; Fri, 11 Mar 2022 21:05:43 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 3A5CF41142; Fri, 11 Mar 2022 21:05:34 +0100 (CET) Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by mails.dpdk.org (Postfix) with ESMTP id D3D1440140 for ; Fri, 11 Mar 2022 21:05:30 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1647029131; x=1678565131; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=Q4BdbAJPlt6tJGOijrvpgKnwvlGLvWrlZ+qmqacwrD8=; b=O2PemgQO0p/jLHolKbLi3oIJbDnAAmDSGrk+T20Ph+7mDhFxBbrTeMnA GVpokAyBkssXYwfOC/WI5xaH9uu7Z3pIoljWozpBqmpS4jtKc5OFS3/6j ACyQvVMutYqUSWlOyGHSgVhx/tVIk0aYQyGplR+17K+yWXDpJzOG/jjfZ YooE0ZykhwqSgsA1W3aRc8/p0oRQkBMEAP8NP8xGudaTeqoUdyJNKhbcG MNSWTtdMf2MHMFYQ4lz+ctm2azvrr6yTsNGmMtywySC0JR+QGJsgBYilj BdBLiBLf564vgUb3xM2z2oAldg1vOCDqge6JkYceqC5X2Fp7QMk7JqrOV g==; X-IronPort-AV: E=McAfee;i="6200,9189,10283"; a="253207383" X-IronPort-AV: E=Sophos;i="5.90,174,1643702400"; d="scan'208";a="253207383" Received: from orsmga008.jf.intel.com ([10.7.209.65]) by fmsmga102.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 11 Mar 2022 12:05:29 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.90,174,1643702400"; d="scan'208";a="555444782" Received: from silpixa00399126.ir.intel.com ([10.237.223.34]) by orsmga008.jf.intel.com with ESMTP; 11 Mar 2022 12:05:29 -0800 From: Bruce Richardson To: dev@dpdk.org Cc: Bruce Richardson Subject: [PATCH 2/5] compressdev: separate out driver-only headers Date: Fri, 11 Mar 2022 20:05:20 +0000 Message-Id: <20220311200523.1020050-3-bruce.richardson@intel.com> X-Mailer: git-send-email 2.32.0 In-Reply-To: <20220311200523.1020050-1-bruce.richardson@intel.com> References: <20220311200523.1020050-1-bruce.richardson@intel.com> MIME-Version: 1.0 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 The headers rte_compressdev_pmd.h and rte_compressdev_internal.h are, as the filenames suggest, headers for building drivers using the compressdev APIs. As such they should be marked as "driver_sdk_headers" rather than just "headers" in the meson.build file. Signed-off-by: Bruce Richardson --- lib/compressdev/meson.build | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/lib/compressdev/meson.build b/lib/compressdev/meson.build index 75ea666a9b..c80295dc0d 100644 --- a/lib/compressdev/meson.build +++ b/lib/compressdev/meson.build @@ -11,7 +11,9 @@ sources = files('rte_compressdev.c', 'rte_compressdev_pmd.c', 'rte_comp.c') headers = files('rte_compressdev.h', - 'rte_compressdev_pmd.h', - 'rte_compressdev_internal.h', 'rte_comp.h') +driver_sdk_headers = files( + 'rte_compressdev_pmd.h', + 'rte_compressdev_internal.h', + ) deps += ['kvargs', 'mbuf']