From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wi0-f173.google.com (mail-wi0-f173.google.com [209.85.212.173]) by dpdk.org (Postfix) with ESMTP id 55744C4C4 for ; Mon, 27 Jul 2015 02:57:53 +0200 (CEST) Received: by wibud3 with SMTP id ud3so120377151wib.1 for ; Sun, 26 Jul 2015 17:57:53 -0700 (PDT) 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:in-reply-to :references; bh=+oZr4+y+caVi42xs50T+M7PcYLgSjAbAZ8MM8Elx5YA=; b=VA09eHX28S0TLX6jEdBvlVrR0zG/6CgKgWTuJQUXtmmAEBZU2FTZNCkK/0mkRCNtwf 25g6c6zcazE3iMngQ3GZjqiz6VzDj8PtVIXp3TAJsKjFIKtXOqUmNOfUDpMmWaeG83IC CFNbRV3Y9LT35O2XFj0XtilgCuYoNC+1uSMfpOuGHJUbhfW/d+XZMKm7F4HgGkMhlPcb nQ2xjecLA5YolLKZILKQbq2CQh6jUeiJjOWAip6oSwc169kp74Xqk03aX4j6KXr7iJu8 wQO7S+uLHDxt8zYDFzvbDwfjnQjnDwhG2hL8voVQpiviORXFjY+s5AsWIJ3JdNgMVtqO 4FvQ== X-Gm-Message-State: ALoCoQlDlc3yEby+QNiVOdDPazGJE+pzWzgj+c6OW0AbflibXxPayR97MX+eIu4OoUnNaHlawShi X-Received: by 10.194.6.37 with SMTP id x5mr54786794wjx.73.1437958673200; Sun, 26 Jul 2015 17:57:53 -0700 (PDT) Received: from localhost.localdomain (136-92-190-109.dsl.ovh.fr. [109.190.92.136]) by smtp.gmail.com with ESMTPSA id dz4sm10733801wib.17.2015.07.26.17.57.51 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Sun, 26 Jul 2015 17:57:52 -0700 (PDT) From: Thomas Monjalon To: david.marchand@6wind.com Date: Mon, 27 Jul 2015 02:56:31 +0200 Message-Id: <1437958594-29468-1-git-send-email-thomas.monjalon@6wind.com> X-Mailer: git-send-email 2.4.2 In-Reply-To: <1437852868-6031-1-git-send-email-rkerur@gmail.com> References: <1437852868-6031-1-git-send-email-rkerur@gmail.com> Cc: dev@dpdk.org Subject: [dpdk-dev] [PATCH v10 0/3] deduplicate EAL common functions 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: Mon, 27 Jul 2015 00:57:53 -0000 v9 was a subset of previous deduplications by Ravi Kerur. This v10 address the comments I've done on v9. Ravi Kerur (3): eal: deduplicate lcore initialization eal: deduplicate timer functions eal: deduplicate memory initialization lib/librte_eal/bsdapp/eal/Makefile | 2 + lib/librte_eal/bsdapp/eal/eal_lcore.c | 72 ++++--------------- lib/librte_eal/bsdapp/eal/eal_memory.c | 39 +---------- lib/librte_eal/bsdapp/eal/eal_timer.c | 58 ++-------------- .../eal/eal_lcore.c => common/eal_common_lcore.c} | 52 +++++--------- lib/librte_eal/common/eal_common_memory.c | 38 +++++++++- .../eal/eal_timer.c => common/eal_common_timer.c} | 79 +++------------------ lib/librte_eal/common/eal_private.h | 46 +++++++++++++ lib/librte_eal/linuxapp/eal/Makefile | 3 + lib/librte_eal/linuxapp/eal/eal_lcore.c | 66 ++---------------- lib/librte_eal/linuxapp/eal/eal_memory.c | 80 +++++++--------------- lib/librte_eal/linuxapp/eal/eal_timer.c | 60 ++-------------- 12 files changed, 175 insertions(+), 420 deletions(-) copy lib/librte_eal/{bsdapp/eal/eal_lcore.c => common/eal_common_lcore.c} (75%) copy lib/librte_eal/{bsdapp/eal/eal_timer.c => common/eal_common_timer.c} (57%) -- 2.4.2