From patchwork Mon Jul 2 17:55:23 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Rami Rosen X-Patchwork-Id: 42128 X-Patchwork-Delegate: thomas@monjalon.net Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 97B811B568; Mon, 2 Jul 2018 19:57:50 +0200 (CEST) Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by dpdk.org (Postfix) with ESMTP id F16861B532 for ; Mon, 2 Jul 2018 19:57:47 +0200 (CEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by fmsmga104.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 02 Jul 2018 10:57:45 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.51,299,1526367600"; d="scan'208";a="69064100" Received: from imail001.iil.intel.com ([10.184.207.12]) by fmsmga001.fm.intel.com with ESMTP; 02 Jul 2018 10:57:43 -0700 Received: from rubyhost.iil.intel.com (rubyhost.iil.intel.com [143.185.141.89]) by imail001.iil.intel.com with ESMTP id w62Hvc6D014280; Mon, 2 Jul 2018 20:57:38 +0300 From: Rami Rosen To: dev@dpdk.org Cc: rkerur@gmail.com, Rami Rosen Date: Mon, 2 Jul 2018 20:55:23 +0300 Message-Id: <1530554123-10261-1-git-send-email-rami.rosen@intel.com> X-Mailer: git-send-email 1.9.1 Subject: [dpdk-dev] [PATCH] examples/l3fwd: remove redudant include. X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" This patch removes unneeded include of rte_mempool.h in two modules in examples/l3fwd. Fixes: 268888b5b020 ("examples/l3fwd: modularize") Signed-off-by: Rami Rosen --- examples/l3fwd/l3fwd_em.c | 1 - examples/l3fwd/l3fwd_lpm.c | 1 - 2 files changed, 2 deletions(-) diff --git a/examples/l3fwd/l3fwd_em.c b/examples/l3fwd/l3fwd_em.c index 9dc3b8c..fa8f82b 100644 --- a/examples/l3fwd/l3fwd_em.c +++ b/examples/l3fwd/l3fwd_em.c @@ -18,7 +18,6 @@ #include #include #include -#include #include #include #include diff --git a/examples/l3fwd/l3fwd_lpm.c b/examples/l3fwd/l3fwd_lpm.c index a747126..b1dc195 100644 --- a/examples/l3fwd/l3fwd_lpm.c +++ b/examples/l3fwd/l3fwd_lpm.c @@ -17,7 +17,6 @@ #include #include #include -#include #include #include #include