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 351BEA00C5; Tue, 15 Feb 2022 13:35:15 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 2993442703; Tue, 15 Feb 2022 13:33:01 +0100 (CET) Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by mails.dpdk.org (Postfix) with ESMTP id 7E95541C27 for ; Tue, 15 Feb 2022 13:32:40 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1644928360; x=1676464360; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=pGdplYfecC+JqqjMimlHuyEnHK2NopXUrT877UPIQLQ=; b=MsXy1WKyu4Y3NjhvKB23NOg7sp6Q5Tt/G9ZxZnfPz+IVxuxzsL+WMxyw Z8C0JvyQMXJvhbEUKeynfWSRsstf3Zib6ZA85NqlNOgIYMXwcRVWtxkAq hI8kyAbAR/pGbR94p4Y4TD8cw8hRTuMeU838bGYUZmIndnP9sU++oyXIP MU7ZqmEaPxMOalvDtpz8XW9y3btr5xJAiMSdLItHzZ3l95DV1Lg+XcD/A dmJX0LvFN3MglZg+HZBd/WOKSoXpNiimzlSmkUewQSynfcFH849ceJISV 9D+K+AKepFrZ1gILQzT7P+aONP31kLxrfLSPGi3BeIfaa49rv32bA2B5E Q==; X-IronPort-AV: E=McAfee;i="6200,9189,10258"; a="247936640" X-IronPort-AV: E=Sophos;i="5.88,370,1635231600"; d="scan'208";a="247936640" Received: from orsmga008.jf.intel.com ([10.7.209.65]) by fmsmga102.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 15 Feb 2022 04:32:39 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,370,1635231600"; d="scan'208";a="544280451" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga008.jf.intel.com with ESMTP; 15 Feb 2022 04:32:38 -0800 From: Sean Morrissey To: Ferruh Yigit Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v9 31/50] kni: remove unneeded header includes Date: Tue, 15 Feb 2022 12:30:18 +0000 Message-Id: <20220215123037.608981-32-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220215123037.608981-1-sean.morrissey@intel.com> References: <20220214144406.4192233-1-sean.morrissey@intel.com> <20220215123037.608981-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