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 7C9E1A0545; Mon, 20 Jun 2022 12:41:35 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 4ACAC42B7D; Mon, 20 Jun 2022 12:40:51 +0200 (CEST) Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by mails.dpdk.org (Postfix) with ESMTP id 4BC6942836 for ; Mon, 20 Jun 2022 12:40:47 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1655721647; x=1687257647; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=WTgl1EyY+amkBzMNdbSAt5b/dLqIInId4yqyL2Q4c6Y=; b=Xom2vCPgkkYr3Uj3eJXcm8DlWkP0ypn6inby7FIKORtDtXYSGHmijA+t WbZlKvdwK1swNORQdSG7nGRfl4kiqpWyc+FRWQEBCIpzjPIGTp3iGtPDJ 4kgIYIyPmVHWBNf+1bMwoNt6lqezJEvrtCfWqLhqeR/3g5m9As0oqQu2a 8eIJ55e7Q1G6YNmlaJFPIPXOfFxTde6qibDmC/1EJ0JLyvPzBxAwRHq/w SuBZ1xGHpG2BS67fETirVXDTFi2D6eCtC9BXa3W0lZdVbo8CjJvj0uclB FP784n3j1UhWs9+pBdHW3HM/FI5t/eAGbY+/RgQ8zLgZ3M01RZJ4Fsmu9 Q==; X-IronPort-AV: E=McAfee;i="6400,9594,10380"; a="268581684" X-IronPort-AV: E=Sophos;i="5.92,306,1650956400"; d="scan'208";a="268581684" Received: from fmsmga007.fm.intel.com ([10.253.24.52]) by orsmga101.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 20 Jun 2022 03:40:46 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.92,306,1650956400"; d="scan'208";a="591121116" Received: from silpixa00401215.ir.intel.com ([10.55.128.100]) by fmsmga007.fm.intel.com with ESMTP; 20 Jun 2022 03:40:45 -0700 From: Sean Morrissey To: Olivier Matz Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v4 09/14] net: remove unneeded header includes Date: Mon, 20 Jun 2022 10:40:25 +0000 Message-Id: <20220620104030.1889156-10-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220620104030.1889156-1-sean.morrissey@intel.com> References: <20220617190835.1126602-1-sean.morrissey@intel.com> <20220620104030.1889156-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/net/rte_net.h | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/net/rte_net.h b/lib/net/rte_net.h index 53a7f4d360..56611fc8f9 100644 --- a/lib/net/rte_net.h +++ b/lib/net/rte_net.h @@ -12,7 +12,6 @@ extern "C" { #include #include #include -#include /** * Structure containing header lengths associated to a packet, filled -- 2.25.1