From patchwork Tue Mar 12 17:54:37 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tyler Retzlaff X-Patchwork-Id: 138250 X-Patchwork-Delegate: david.marchand@redhat.com 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 6863043C94; Tue, 12 Mar 2024 18:55:34 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id CA97142DC4; Tue, 12 Mar 2024 18:55:33 +0100 (CET) Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mails.dpdk.org (Postfix) with ESMTP id BACEC42D90; Tue, 12 Mar 2024 18:54:42 +0100 (CET) Received: by linux.microsoft.com (Postfix, from userid 1086) id EF86420B74C0; Tue, 12 Mar 2024 10:54:41 -0700 (PDT) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com EF86420B74C0 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1710266081; bh=mq9uRY0wfyLcxNXTATdTkoprQ2QLbsdkAMp7tePjAbE=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=B922w7VROBzCGsaOULSDrpOXYOTTJbaNftb3FjrGaYoD3GlNlOFm/bTW4e1dg6rkE xZaCBe1Dff9vHfC0EQXcDQyft8H1Iz/YVwyN6r4Ve/tpriPLC/QL+H9MIxdSnKUGWV EM+JBSnyaaOiKHteipP1DjE+xdK/0vDjji6JayI4= From: Tyler Retzlaff To: dev@dpdk.org Cc: Bruce Richardson , Dmitry Kozlyuk , Pallavi Kadam , Ranjit Menon , Tyler Retzlaff , Thomas Monjalon , stable@dpdk.org Subject: [PATCH v2] windows: install sched.h header Date: Tue, 12 Mar 2024 10:54:37 -0700 Message-Id: <1710266077-26489-1-git-send-email-roretzla@linux.microsoft.com> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: <1703017057-22336-1-git-send-email-roretzla@linux.microsoft.com> References: <1703017057-22336-1-git-send-email-roretzla@linux.microsoft.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 rte_os.h includes sched.h so install sched.h to allow DPDK installed to DESTDIR to be usable. Fixes: e8428a9d89f1 ("eal/windows: add some basic functions and macros") Cc: stable@dpdk.org Cc: pallavi.kadam@intel.com Signed-off-by: Tyler Retzlaff Acked-by: Bruce Richardson --- v2: * reviewed all other headers to see if any should be added to the series, no other headers need to be installed as they are not exposed through already installed / public headers. * add Fixes tag as suggested by Thomas lib/eal/windows/include/meson.build | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/eal/windows/include/meson.build b/lib/eal/windows/include/meson.build index 5fb1962..e985a77 100644 --- a/lib/eal/windows/include/meson.build +++ b/lib/eal/windows/include/meson.build @@ -6,4 +6,5 @@ includes += include_directories('.') headers += files( 'rte_os.h', 'rte_windows.h', + 'sched.h', )