From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <dev-bounces@dpdk.org>
Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124])
	by inbox.dpdk.org (Postfix) with ESMTP id 305BCA00C2;
	Thu, 16 Jun 2022 17:19:36 +0200 (CEST)
Received: from [217.70.189.124] (localhost [127.0.0.1])
	by mails.dpdk.org (Postfix) with ESMTP id 3F41842BA8;
	Thu, 16 Jun 2022 17:18:06 +0200 (CEST)
Received: from mga05.intel.com (mga05.intel.com [192.55.52.43])
 by mails.dpdk.org (Postfix) with ESMTP id 5446942B93
 for <dev@dpdk.org>; Thu, 16 Jun 2022 17:18:02 +0200 (CEST)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple;
 d=intel.com; i=@intel.com; q=dns/txt; s=Intel;
 t=1655392682; x=1686928682;
 h=from:to:cc:subject:date:message-id:in-reply-to:
 references:mime-version:content-transfer-encoding;
 bh=fSDawLP68Rq6He+d0oBwaB2pH5A0+Qi6rggWuwxTUb4=;
 b=Bq+duQZUqAJd4wrY8GXWC+eaCdgAWyfeu9xKo5nHN2QlWLmJpKKhbZMb
 EfOd9D4eMeYSAc0GvC66ALb/LYTQVs9kOqykcNXzTHOlDVI0SKs+Ez8Wg
 foo+zTepyL8niVD7wjMVROCDYK87v32AFio8Tg/AHyZ4R/4CJX1e4yzCc
 h5IN6U6GRMo2lR8xLIC7WeJ7gMGwULPNbVzkBVWvcsXQaab1uK5RGgTVN
 /Gs3ySHTZRUc9usaaajE+C8S1zEt+bw/F9961KYOEqQmtMg3fYFcOACCZ
 IPDPP0JikiBor3HNSt7+Br83mm/C0Xiwy+pe3n2ngjgrqg/7bal7B6tku g==;
X-IronPort-AV: E=McAfee;i="6400,9594,10379"; a="365624937"
X-IronPort-AV: E=Sophos;i="5.92,305,1650956400"; d="scan'208";a="365624937"
Received: from fmsmga003.fm.intel.com ([10.253.24.29])
 by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384;
 16 Jun 2022 08:18:02 -0700
X-ExtLoop1: 1
X-IronPort-AV: E=Sophos;i="5.92,305,1650956400"; d="scan'208";a="675066400"
Received: from silpixa00401215.ir.intel.com ([10.55.128.100])
 by FMSMGA003.fm.intel.com with ESMTP; 16 Jun 2022 08:18:00 -0700
From: Sean Morrissey <sean.morrissey@intel.com>
To: Cristian Dumitrescu <cristian.dumitrescu@intel.com>,
 Jasvinder Singh <jasvinder.singh@intel.com>
Cc: dev@dpdk.org,
	Sean Morrissey <sean.morrissey@intel.com>
Subject: [PATCH v2 15/19] sched: remove unneeded header includes
Date: Thu, 16 Jun 2022 15:17:23 +0000
Message-Id: <20220616151728.339629-16-sean.morrissey@intel.com>
X-Mailer: git-send-email 2.25.1
In-Reply-To: <20220616151728.339629-1-sean.morrissey@intel.com>
References: <20220421190859.264174-1-sean.morrissey@intel.com>
 <20220616151728.339629-1-sean.morrissey@intel.com>
MIME-Version: 1.0
Content-Transfer-Encoding: 8bit
X-BeenThere: dev@dpdk.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: DPDK patches and discussions <dev.dpdk.org>
List-Unsubscribe: <https://mails.dpdk.org/options/dev>,
 <mailto:dev-request@dpdk.org?subject=unsubscribe>
List-Archive: <http://mails.dpdk.org/archives/dev/>
List-Post: <mailto:dev@dpdk.org>
List-Help: <mailto:dev-request@dpdk.org?subject=help>
List-Subscribe: <https://mails.dpdk.org/listinfo/dev>,
 <mailto:dev-request@dpdk.org?subject=subscribe>
Errors-To: dev-bounces@dpdk.org

These header includes have been flagged by the iwyu_tool
and removed.

Signed-off-by: Sean Morrissey <sean.morrissey@intel.com>
---
 lib/sched/rte_pie.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/lib/sched/rte_pie.c b/lib/sched/rte_pie.c
index d37b79e6dd..c84f75a18c 100644
--- a/lib/sched/rte_pie.c
+++ b/lib/sched/rte_pie.c
@@ -6,7 +6,6 @@
 #include <string.h>
 
 #include "rte_pie.h"
-#include <rte_malloc.h>
 
 #ifdef __INTEL_COMPILER
 #pragma warning(disable:2259) /* conversion may lose significant bits */
-- 
2.25.1