From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-pd0-f182.google.com (mail-pd0-f182.google.com [209.85.192.182]) by dpdk.org (Postfix) with ESMTP id 82B52C482 for ; Sat, 25 Jul 2015 21:36:40 +0200 (CEST) Received: by pdjr16 with SMTP id r16so30287109pdj.3 for ; Sat, 25 Jul 2015 12:36:40 -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:in-reply-to:references; bh=G5JXDSG9+1KVQNiT568j4mglkLOfAsQlI/JEJ8ONSxk=; b=ktMHGrv+qAIkfR5zyEH16bHV5zXVlVwoX/B8nboQm+Z1hAUPsL7C5pz+2brWy7OAgQ vqj9aKgnKR5pqk/UW/KA/E+HDvZjCg40SHQjDRn/hD92bG2X5ONuRkFjwdo8rlqAEXWu mkYCUTxeR0CK6VHFWvfmB6WTgUa4uCgshcXt7sxTnkNVd+b6pNTHNzLKzXp4LC8M2PmI euj/oTLf9jh/WtaUdjGIQJh6Z4Pe29osrKmLgZ/ESIubAgqbY/9GFSbed1Itba7mrg+E 4TQLLUaXZYgBpZcGnTWSqV2Fvdasy+JkUNLUUXObzRwRy2qChoV4sRIit6A+CT6jVnkW mrKg== X-Received: by 10.70.96.194 with SMTP id du2mr47779519pdb.108.1437852999957; Sat, 25 Jul 2015 12:36:39 -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 u16sm10325066pdl.71.2015.07.25.12.36.38 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Sat, 25 Jul 2015 12:36:39 -0700 (PDT) From: Ravi Kerur To: dev@dpdk.org Date: Sat, 25 Jul 2015 12:36:30 -0700 Message-Id: <1437852990-6096-4-git-send-email-rkerur@gmail.com> X-Mailer: git-send-email 1.9.1 In-Reply-To: <1437852990-6096-1-git-send-email-rkerur@gmail.com> References: <1437852868-6031-1-git-send-email-rkerur@gmail.com> <1437852990-6096-1-git-send-email-rkerur@gmail.com> 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:36:41 -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