From patchwork Sat Aug 28 22:13:45 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Dmitry Kozlyuk X-Patchwork-Id: 97505 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 E3BB8A0C57; Sun, 29 Aug 2021 00:13:53 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 2533440142; Sun, 29 Aug 2021 00:13:53 +0200 (CEST) Received: from mail-lj1-f169.google.com (mail-lj1-f169.google.com [209.85.208.169]) by mails.dpdk.org (Postfix) with ESMTP id A996340042 for ; Sun, 29 Aug 2021 00:13:51 +0200 (CEST) Received: by mail-lj1-f169.google.com with SMTP id i28so18368462ljm.7 for ; Sat, 28 Aug 2021 15:13:51 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=from:to:cc:subject:date:message-id:mime-version :content-transfer-encoding; bh=jZl1xNILwNODDlZ9F1k/dH8YSU/GCqA64LwLaFqnyCs=; b=lRQ6T15HQly+744gjFHYvVsH7x/JYmzUxen7N/gY/n676d9ELwcWLnueWv6P5R4hcz az4WZHB/fAcVefXdDatdvDgqbK+L+/MIVqVW8gK0hNr1qPZSg1MJpK6vY5ul5Ii1wwQP ZCZyGNYU6Ay6SWyjuD5CdeBbyP0HQcCZiuwjtR95sKc0qO3+UVC0w4yteGF80IUBM2lO EqnykYdfgYHxkdWjPmYeTI1sbevMyXQ48HhqeRP1VflHmEdoNkyXZ/rucOZqTDTYbL6J jGfyjiMAEHKEmcbOrm9+ebzbPNm4y4rHQOPgjONlLtsBNZe5dYwTeniwb6cOYLCfdFA7 To9g== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:mime-version :content-transfer-encoding; bh=jZl1xNILwNODDlZ9F1k/dH8YSU/GCqA64LwLaFqnyCs=; b=EotN4ZjW6vpa8/JQ6m81QWfItrc0UndVtOKpeDGNOhAF7l5/XG3REWIfvi3YDf2Pil g9GQh9Uqgv7bRdhd/jNsbBAqD7e/8JjfZy14F8hcurtb0lMJ0dt1Q38f6L0UmyoMHt5Y wCTuMD9mi1IcYCzEoUaz3JHEWcmjp6uh23UVfvA9CcGpSUSg/sZWVaieixnm5fE4rry/ 1As+u/NFlUZT/DbRzXWFM6LpaEYLsD0xXKppXZPRpwaGb+DLNq0AQsPBgMkqJKU+UC9q m4kkiR4wg5XC+IDDWTgJmDMWMHFkdbqnNiHqFUOCpFoHl2flwBMh9cFL5OHnL8v5KNvU anJQ== X-Gm-Message-State: AOAM533CqzW9rIXOT3Mc4haL/U7KODGs80AI7PwhYuAwZ67UFE2p31SV 42lg9tu2wrjYXy4RPkWRV60pOf8kmrk= X-Google-Smtp-Source: ABdhPJx0VBM3sQ9uH19+C+aUjkK0Yp4WeuXGF/GuQLl2HLk9k+/uweBmp2dYz3BrNZqtl8LQ2iLi+w== X-Received: by 2002:a2e:934f:: with SMTP id m15mr13265512ljh.208.1630188830786; Sat, 28 Aug 2021 15:13:50 -0700 (PDT) Received: from sovereign.. (broadband-37-110-65-23.ip.moscow.rt.ru. [37.110.65.23]) by smtp.gmail.com with ESMTPSA id q189sm1169852ljb.68.2021.08.28.15.13.50 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Sat, 28 Aug 2021 15:13:50 -0700 (PDT) From: Dmitry Kozlyuk To: dev@dpdk.org Cc: Dmitry Kozlyuk , Ciara Power Date: Sun, 29 Aug 2021 01:13:45 +0300 Message-Id: <20210828221345.276048-1-dmitry.kozliuk@gmail.com> X-Mailer: git-send-email 2.29.3 MIME-Version: 1.0 Subject: [dpdk-dev] [PATCH] lib: remove sched.h from public headers 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 Sender: "dev" Public headers including POSIX-specific were unusable on Windows. These includes were superfluous, remove them. Signed-off-by: Dmitry Kozlyuk Acked-by: William Tu --- lib/eal/include/rte_eal.h | 1 - lib/telemetry/rte_telemetry.h | 1 - 2 files changed, 2 deletions(-) diff --git a/lib/eal/include/rte_eal.h b/lib/eal/include/rte_eal.h index eaf6469e50..0c43a0a2c1 100644 --- a/lib/eal/include/rte_eal.h +++ b/lib/eal/include/rte_eal.h @@ -12,7 +12,6 @@ */ #include -#include #include #include diff --git a/lib/telemetry/rte_telemetry.h b/lib/telemetry/rte_telemetry.h index 8776998b54..1cdc903f38 100644 --- a/lib/telemetry/rte_telemetry.h +++ b/lib/telemetry/rte_telemetry.h @@ -3,7 +3,6 @@ */ #include -#include #include