From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm0-f46.google.com (mail-wm0-f46.google.com [74.125.82.46]) by dpdk.org (Postfix) with ESMTP id 087D428F3 for ; Thu, 9 Jun 2016 17:00:12 +0200 (CEST) Received: by mail-wm0-f46.google.com with SMTP id n184so229407351wmn.1 for ; Thu, 09 Jun 2016 08:00:12 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=6wind-com.20150623.gappssmtp.com; s=20150623; h=from:to:cc:subject:date:message-id; bh=7ZYjBsKcEtg/8LRZ8aKbwfsIm6vHCYE12kDwlu2z/ZY=; b=PcThBhAi0jlqBDXmNt0R4sJfc6mTCMV916Y9Qnbs60u0xX4rTosPtWsimKg5Xj2RiH nK5a3V+tN/N8GUqBiIS4fEjrslvHttmdvFX9fx8quQz1D4o7vNkz7YBmY30TwY0JoefW dL7Z+PGZaJdu2bcHfs5HrQ0p09wZr2Qxb4ETZwNZWtQsScklrSAl7NGeZGKrrjwdjXMm 6W1HXaW5p8ERQaDbfuG/rpYBDbuoKO0UsDOX3rLcHYvVYqibqvFV1Jtjt1Tbej+Z257u pJSqMw7QuXE8l34igaVAGg16tGujaaNe5y3yJ8XLPH/jDTGuLUtb3cKPcSpV/io5xeLa tVcw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id; bh=7ZYjBsKcEtg/8LRZ8aKbwfsIm6vHCYE12kDwlu2z/ZY=; b=EJHTa4xV8c6MR/txu+fkdbwGR07vddzC13kmBmnZyQwyBtKMXBELiPDdQOSChFyne7 8i4OpRRUYygkH2OBbQ+Mby7jdAiVeaX21TSRgXgCmI/TF0JT+CX7tzTCnm3g98+c4DNN o6IAdV7SAUymvNipiKv7VoIPWX5JhiWdG6D353jd5m4+xzfz+qXZDLWl3j0Eu6oqhX8T NOGU7MXuoA2ugb74wV7IQ3W0V4rtz/VlijMgYk5zjTIa/ZdmZYFsHLOH/7Ifc/HjStzt BxGaW3qzKuM7jWsXQaEC80UOW719U8Pf3TnBZ3XVRj2TuwnP46arDMS4ZKn0vNigdtCz IUVg== X-Gm-Message-State: ALyK8tJHCJFRMC1G4+7Z+tpdSCCMHfRU7/Y4GrrTZJJlFQmbrbAMCOePsjx3jslAYCcGq8gJ X-Received: by 10.28.173.66 with SMTP id w63mr11236014wme.14.1465484411804; Thu, 09 Jun 2016 08:00:11 -0700 (PDT) Received: from XPS13.localdomain (184.203.134.77.rev.sfr.net. [77.134.203.184]) by smtp.gmail.com with ESMTPSA id b1sm7499441wjq.25.2016.06.09.08.00.10 (version=TLSv1/SSLv3 cipher=OTHER); Thu, 09 Jun 2016 08:00:11 -0700 (PDT) From: Thomas Monjalon To: david.marchand@6wind.com Cc: dev@dpdk.org Date: Thu, 9 Jun 2016 17:00:03 +0200 Message-Id: <1465484403-8209-1-git-send-email-thomas.monjalon@6wind.com> X-Mailer: git-send-email 2.7.0 Subject: [dpdk-dev] [PATCH] eal: remove useless includes of mempool and ring X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Jun 2016 15:00:12 -0000 The libraries rte_mempool and rte_ring are not used in EAL, except rte_ring for the ivshmem part (CONFIG_RTE_LIBRTE_IVSHMEM). Signed-off-by: Thomas Monjalon --- lib/librte_eal/linuxapp/eal/eal_interrupts.c | 2 -- lib/librte_eal/linuxapp/eal/eal_ivshmem.c | 1 - 2 files changed, 3 deletions(-) diff --git a/lib/librte_eal/linuxapp/eal/eal_interrupts.c b/lib/librte_eal/linuxapp/eal/eal_interrupts.c index 06b26a9..a9af396 100644 --- a/lib/librte_eal/linuxapp/eal/eal_interrupts.c +++ b/lib/librte_eal/linuxapp/eal/eal_interrupts.c @@ -57,10 +57,8 @@ #include #include #include -#include #include #include -#include #include #include #include diff --git a/lib/librte_eal/linuxapp/eal/eal_ivshmem.c b/lib/librte_eal/linuxapp/eal/eal_ivshmem.c index eea0314..67b3caf 100644 --- a/lib/librte_eal/linuxapp/eal/eal_ivshmem.c +++ b/lib/librte_eal/linuxapp/eal/eal_ivshmem.c @@ -49,7 +49,6 @@ #include #include #include -#include #include #include #include -- 2.7.0