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 99793A0093; Thu, 21 Apr 2022 21:09:43 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 025AC427F8; Thu, 21 Apr 2022 21:09:20 +0200 (CEST) Received: from mga18.intel.com (mga18.intel.com [134.134.136.126]) by mails.dpdk.org (Postfix) with ESMTP id D5834427FF for ; Thu, 21 Apr 2022 21:09:16 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1650568157; x=1682104157; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=kPHIhD0BVPpcsUGuCO87uCxLPMgDVvYWe9pBSZVYlH0=; b=nnR8GBNG5So8AtOiy/ASFeBnhyEJ6+YuoMiJH6mvcWJB9vxxWRSgsphm cVcqimswfaNGBhO+yoePmxPvDmLNVfVScQZtA4CgoJd2Tcp/wMwDPZmL+ d1XtIG3Ihti7wJ9RJlf7d1efcSmt0JR0K9kAOUg7zg59IM0j91bpnq/BY yOd/R06i0B9I4wYK04ZBKE/25q1KXOSCrUeKchSQ1yg0mXaCgUI4b0eEZ 7M6yph5VYtiFuPx1En0CXkqPyy3L0k+pqGuSQylrvjYn+3sILPTb8fIIp zC+vZm5fQhqSHmtZaEZCpu8N8Ov1Pqky9z8zTC/pXJPgC97CS+5hAy30x w==; X-IronPort-AV: E=McAfee;i="6400,9594,10324"; a="246354170" X-IronPort-AV: E=Sophos;i="5.90,279,1643702400"; d="scan'208";a="246354170" Received: from orsmga004.jf.intel.com ([10.7.209.38]) by orsmga106.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 21 Apr 2022 12:09:16 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.90,279,1643702400"; d="scan'208";a="671185552" Received: from silpixa00401215.ir.intel.com ([10.55.128.100]) by orsmga004.jf.intel.com with ESMTP; 21 Apr 2022 12:09:15 -0700 From: Sean Morrissey To: Jiayu Hu Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v1 05/19] gso: remove unneeded header includes Date: Thu, 21 Apr 2022 19:08:45 +0000 Message-Id: <20220421190859.264174-6-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220421190859.264174-1-sean.morrissey@intel.com> References: <20220421190859.264174-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/gso/gso_common.c | 1 - lib/gso/gso_common.h | 1 - lib/gso/gso_tcp4.h | 1 - lib/gso/gso_tunnel_tcp4.h | 1 - lib/gso/gso_tunnel_udp4.h | 1 - lib/gso/gso_udp4.h | 1 - 6 files changed, 6 deletions(-) diff --git a/lib/gso/gso_common.c b/lib/gso/gso_common.c index 0fad1132fc..378bf2c6aa 100644 --- a/lib/gso/gso_common.c +++ b/lib/gso/gso_common.c @@ -6,7 +6,6 @@ #include #include -#include #include "gso_common.h" diff --git a/lib/gso/gso_common.h b/lib/gso/gso_common.h index 2c258b22bf..9456d596d3 100644 --- a/lib/gso/gso_common.h +++ b/lib/gso/gso_common.h @@ -7,7 +7,6 @@ #include -#include #include #include #include diff --git a/lib/gso/gso_tcp4.h b/lib/gso/gso_tcp4.h index 10d4b3acdd..7527fa51c9 100644 --- a/lib/gso/gso_tcp4.h +++ b/lib/gso/gso_tcp4.h @@ -6,7 +6,6 @@ #define _GSO_TCP4_H_ #include -#include /** * Segment an IPv4/TCP packet. This function doesn't check if the input diff --git a/lib/gso/gso_tunnel_tcp4.h b/lib/gso/gso_tunnel_tcp4.h index c522ed27f2..3a7ea238c8 100644 --- a/lib/gso/gso_tunnel_tcp4.h +++ b/lib/gso/gso_tunnel_tcp4.h @@ -6,7 +6,6 @@ #define _GSO_TUNNEL_TCP4_H_ #include -#include /** * Segment a tunneling packet with inner TCP/IPv4 headers. This function diff --git a/lib/gso/gso_tunnel_udp4.h b/lib/gso/gso_tunnel_udp4.h index c49b43fe3e..214a69ccd5 100644 --- a/lib/gso/gso_tunnel_udp4.h +++ b/lib/gso/gso_tunnel_udp4.h @@ -6,7 +6,6 @@ #define _GSO_TUNNEL_UDP4_H_ #include -#include /** * Segment a tunneling packet with inner UDP/IPv4 headers. This function diff --git a/lib/gso/gso_udp4.h b/lib/gso/gso_udp4.h index b2a2908e54..8baa0ba6db 100644 --- a/lib/gso/gso_udp4.h +++ b/lib/gso/gso_udp4.h @@ -6,7 +6,6 @@ #define _GSO_UDP4_H_ #include -#include /** * Segment an UDP/IPv4 packet. This function doesn't check if the input -- 2.25.1