From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 9B3EEA00C5; Mon, 14 Feb 2022 12:39:46 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 64074426FF; Mon, 14 Feb 2022 12:38:04 +0100 (CET) Received: from mga18.intel.com (mga18.intel.com [134.134.136.126]) by mails.dpdk.org (Postfix) with ESMTP id 2433D41140 for ; Mon, 14 Feb 2022 12:37:51 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1644838672; x=1676374672; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=pGdplYfecC+JqqjMimlHuyEnHK2NopXUrT877UPIQLQ=; b=HsqOsQ+bf8fuZr+M5/5JrRJNAfqlzyInpvAR6O+wMMDSpGrPYmrpIP2h G2Q4tf0mB32gornY8lfvVv3nv9zrXa9xrLaui9yDG3IRtP8TP+cLVxjkF ZTldGVXSSko82fU8KgMDq/1G0AYEDU//7zdkOtoHcrMmC85go0Y/QJ1mf 2XTxVMqEqs6xUCn7mgkPgJ7f8oar5aQYCK2DF1eEDI6afyiUeNYWVQJ0t Zreq0lllJ2D3FMdT76JQ6+2lTcYx1EEhGNq+jOobZ/9DbHxk49OvIg5RR a9+62zsTFUleUmTAPpcdzXnmdxe+vtRiHWUHHK4mBUkEUX4nPd4p8p0+B w==; X-IronPort-AV: E=McAfee;i="6200,9189,10257"; a="233619952" X-IronPort-AV: E=Sophos;i="5.88,367,1635231600"; d="scan'208";a="233619952" Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by orsmga106.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 14 Feb 2022 03:37:51 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,367,1635231600"; d="scan'208";a="632087674" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by fmsmga002.fm.intel.com with ESMTP; 14 Feb 2022 03:37:50 -0800 From: Sean Morrissey To: Ferruh Yigit Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v7 31/50] kni: remove unneeded header includes Date: Mon, 14 Feb 2022 11:36:13 +0000 Message-Id: <20220214113632.3184921-32-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220214113632.3184921-1-sean.morrissey@intel.com> References: <20220202094802.3618978-1-sean.morrissey@intel.com> <20220214113632.3184921-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 List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org These header includes have been flagged by the iwyu_tool and removed. Signed-off-by: Sean Morrissey --- lib/kni/rte_kni.c | 2 -- lib/kni/rte_kni.h | 2 -- 2 files changed, 4 deletions(-) diff --git a/lib/kni/rte_kni.c b/lib/kni/rte_kni.c index fc8f0e7b5a..7971c56bb4 100644 --- a/lib/kni/rte_kni.c +++ b/lib/kni/rte_kni.c @@ -12,7 +12,6 @@ #include #include -#include #include #include #include @@ -20,7 +19,6 @@ #include #include #include -#include #include #include #include "rte_kni_fifo.h" diff --git a/lib/kni/rte_kni.h b/lib/kni/rte_kni.h index b0eaf46104..b85d3dd32b 100644 --- a/lib/kni/rte_kni.h +++ b/lib/kni/rte_kni.h @@ -18,8 +18,6 @@ */ #include -#include -#include #include #include -- 2.25.1