From mboxrd@z Thu Jan 1 00:00:00 1970 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) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id; bh=G5JXDSG9+1KVQNiT568j4mglkLOfAsQlI/JEJ8ONSxk=; b=eSpByPik1pcwpnvN2ILJlELdxPgAgo7nWdkWpXR7XdtzBeR/aEGARIQHHBcdje6Pva 4RNK9Q7c5GRaT/DjyJXF6vKsxFxq0fsQcyO9G1zNAVJii/0YLSNilpq/D1+MulBWTDkb IReGidt2CZ/h6aon/IgLgronHyrgKQu+UIEgvCC79w5YHD85eVk5CB9C19BDKnJFIS1t YoGqgKO4bPUqDTxk9pW0w8v6QDCLPWKE3J2UTNLE2fDhWZUxZcSEvBAet0i/qFmJSgJl Gq5XwbY/kG68/JkCJzXG3GRlcWl3eNLnbvTN3I+rAQG1aV5LH1IZ7sL4OnYYsfzdLgMZ Rm8Q== X-Received: by 10.70.132.135 with SMTP id ou7mr47120762pdb.112.1437852890159; Sat, 25 Jul 2015 12:34:50 -0700 (PDT) Received: from user-PC.hsd1.ca.comcast.net (c-98-234-176-9.hsd1.ca.comcast.net. [98.234.176.9]) by smtp.gmail.com with ESMTPSA id pu4sm21203677pdb.86.2015.07.25.12.34.48 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Sat, 25 Jul 2015 12:34:49 -0700 (PDT) From: Ravi Kerur To: dev@dpdk.org Date: Sat, 25 Jul 2015 12:34:28 -0700 Message-Id: <1437852868-6031-1-git-send-email-rkerur@gmail.com> X-Mailer: git-send-email 1.9.1 Subject: [dpdk-dev] [PATCH v9 0/3] Move 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: Sat, 25 Jul 2015 19:34:51 -0000 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