From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ravi Kerur Subject: [PATCH v9 0/3] Move EAL common functions Date: Sat, 25 Jul 2015 12:34:28 -0700 Message-ID: <1437852868-6031-1-git-send-email-rkerur@gmail.com> To: dev@dpdk.org Return-path: Received: from mail-pd0-f176.google.com (mail-pd0-f176.google.com [209.85.192.176]) by dpdk.org (Postfix) with ESMTP id F4198C488 for ; Sat, 25 Jul 2015 21:34:50 +0200 (CEST) Received: by pdjr16 with SMTP id r16so30274401pdj.3 for ; Sat, 25 Jul 2015 12:34:50 -0700 (PDT) List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" As per Thomas's suggestion dividing v8 patch into multiple smaller series. This patch contains changes to eal_lcore.c, eal_timer.c and eal_memory.c files. Tested on Ubuntu x86_64 14.04 GCC and Clang Tested on FreeBSD 10.0 x86_64 GCC and Clang testpmd, make test were run successfully. Ravi Kerur (3): Move common functions in eal_lcore.c Move common functions in eal_timer.c Move common functions in eal_memory.c lib/librte_eal/bsdapp/eal/Makefile | 2 + lib/librte_eal/bsdapp/eal/eal_lcore.c | 72 +++++--------------- lib/librte_eal/bsdapp/eal/eal_memory.c | 52 +++++++-------- lib/librte_eal/bsdapp/eal/eal_timer.c | 52 +++------------ lib/librte_eal/common/eal_common_lcore.c | 107 ++++++++++++++++++++++++++++++ lib/librte_eal/common/eal_common_memory.c | 41 +++++++++++- lib/librte_eal/common/eal_common_timer.c | 102 ++++++++++++++++++++++++++++ lib/librte_eal/common/eal_private.h | 63 ++++++++++++++++++ lib/librte_eal/linuxapp/eal/Makefile | 3 + lib/librte_eal/linuxapp/eal/eal_lcore.c | 66 ++---------------- lib/librte_eal/linuxapp/eal/eal_memory.c | 52 +++------------ lib/librte_eal/linuxapp/eal/eal_timer.c | 55 ++------------- 12 files changed, 379 insertions(+), 288 deletions(-) create mode 100644 lib/librte_eal/common/eal_common_lcore.c create mode 100644 lib/librte_eal/common/eal_common_timer.c -- 1.9.1