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 A4A89A0545; Mon, 20 Jun 2022 12:41:29 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 52E7142B78; Mon, 20 Jun 2022 12:40:50 +0200 (CEST) Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by mails.dpdk.org (Postfix) with ESMTP id 01F6442820 for ; Mon, 20 Jun 2022 12:40:45 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1655721646; x=1687257646; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=9/5+G7oNATtDxFHMbw7sKoAyM1airB5TPL7G+GLPHts=; b=A0JHxQvPdeXJVXHFwAIC0JE4h7q49pyJUHWgYihrTJr6Ow8PT16MGKpK bvzwQiqZoL2rj7Fc1AZQRKMuFGTlKdz1exKbxM8KkCJ3ZXyMqlaXxBhor 8MANddKkjtHujjsBznbvOzRX+owlSpU69UZMGW9wXMfE22zZ6LRWnGIjc uJKwLzK7oT63YwkSy5LIZIyTuEv2nY7xwfdKN7K2Fm3swbTEYWa3OR+5Q kkoOOiW62GrvGdFpH6riWlYfUANN9Hm6ip3uSoK/eMZkAjVZCMCVVaCck hCYWzcN7ASHTvOVw17wNNlnaj1PHwFjoW8xCPTscWdVtYW9zoY0uN/1SC Q==; X-IronPort-AV: E=McAfee;i="6400,9594,10380"; a="268581680" X-IronPort-AV: E=Sophos;i="5.92,306,1650956400"; d="scan'208";a="268581680" 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:45 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.92,306,1650956400"; d="scan'208";a="591121110" Received: from silpixa00401215.ir.intel.com ([10.55.128.100]) by fmsmga007.fm.intel.com with ESMTP; 20 Jun 2022 03:40:44 -0700 From: Sean Morrissey To: Cristian Dumitrescu Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v4 08/14] meter: remove unneeded header includes Date: Mon, 20 Jun 2022 10:40:24 +0000 Message-Id: <20220620104030.1889156-9-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/meter/rte_meter.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/lib/meter/rte_meter.c b/lib/meter/rte_meter.c index da01429a8b..4549b97d36 100644 --- a/lib/meter/rte_meter.c +++ b/lib/meter/rte_meter.c @@ -2,12 +2,9 @@ * Copyright(c) 2010-2014 Intel Corporation */ -#include #include #include -#include -#include #include #include "rte_meter.h" -- 2.25.1