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 248B7A00C5; Tue, 15 Feb 2022 13:32:12 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 06D3941157; Tue, 15 Feb 2022 13:32:02 +0100 (CET) Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by mails.dpdk.org (Postfix) with ESMTP id 37DCD410F7 for ; Tue, 15 Feb 2022 13:31:58 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1644928318; x=1676464318; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=XKdx5di4TEwl4JuP/Oy0SWhYDoBCsoMdA4xaNgY6lCE=; b=kAxbnn6Hcv4OvDEqaEGfljlXizJm/21En1gu59BQUEocJl+2RPh+/YFS 0eVreiMNk/U3s8buwLN0qzpEvm5RDCkfiLAPwfGigAZf9cV1+r2R3yIc7 DWwkjPGbuJ1znTZ6SNnMgkeDHGvMCawmTpqx+hB6RU959kyRYu/s0QQWN 0k+d/V+JeUpvgEfzQntOC/lpb5jROrp/HZBfXNa2q1Q5mdORKRSt9knCX +RwVHxfIBP9Gw5Rj/BEnC9EgnBCq/s6J3c5daUNOSWdNbuefC5qCebwFI EZ77RbZcORDuiTUwhQ8NOayelRus5Hkiu1vhRJPGj29jItqBuLvSRIv/W w==; X-IronPort-AV: E=McAfee;i="6200,9189,10258"; a="247936526" X-IronPort-AV: E=Sophos;i="5.88,370,1635231600"; d="scan'208";a="247936526" 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:31:57 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,370,1635231600"; d="scan'208";a="544280260" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga008.jf.intel.com with ESMTP; 15 Feb 2022 04:31:56 -0800 From: Sean Morrissey To: Honnappa Nagarahalli , Konstantin Ananyev Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v9 03/50] ring: remove unneeded header includes Date: Tue, 15 Feb 2022 12:29:50 +0000 Message-Id: <20220215123037.608981-4-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/ring/rte_ring.c | 9 --------- 1 file changed, 9 deletions(-) diff --git a/lib/ring/rte_ring.c b/lib/ring/rte_ring.c index 6a94a038c4..cddaf6b287 100644 --- a/lib/ring/rte_ring.c +++ b/lib/ring/rte_ring.c @@ -8,7 +8,6 @@ */ #include -#include #include #include #include @@ -17,19 +16,11 @@ #include #include -#include #include #include -#include -#include #include -#include -#include -#include -#include #include #include -#include #include #include "rte_ring.h" -- 2.25.1