From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <stable-bounces@dpdk.org> Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id AAC8D43C94 for <public@inbox.dpdk.org>; Tue, 12 Mar 2024 18:55:33 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id A19BD42E00; 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 <roretzla@linux.microsoft.com> To: dev@dpdk.org Cc: Bruce Richardson <bruce.richardson@intel.com>, Dmitry Kozlyuk <dmitry.kozliuk@gmail.com>, Pallavi Kadam <pallavi.kadam@intel.com>, Ranjit Menon <ranjit.menon@intel.com>, Tyler Retzlaff <roretzla@linux.microsoft.com>, Thomas Monjalon <thomas@monjalon.net>, 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: stable@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: patches for DPDK stable branches <stable.dpdk.org> List-Unsubscribe: <https://mails.dpdk.org/options/stable>, <mailto:stable-request@dpdk.org?subject=unsubscribe> List-Archive: <http://mails.dpdk.org/archives/stable/> List-Post: <mailto:stable@dpdk.org> List-Help: <mailto:stable-request@dpdk.org?subject=help> List-Subscribe: <https://mails.dpdk.org/listinfo/stable>, <mailto:stable-request@dpdk.org?subject=subscribe> Errors-To: stable-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 <roretzla@linux.microsoft.com> Acked-by: Bruce Richardson <bruce.richardson@intel.com> --- 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', ) -- 1.8.3.1