From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wi0-f182.google.com (mail-wi0-f182.google.com [209.85.212.182]) by dpdk.org (Postfix) with ESMTP id 77DBB7E14 for ; Fri, 26 Sep 2014 15:58:08 +0200 (CEST) Received: by mail-wi0-f182.google.com with SMTP id d1so11664127wiv.3 for ; Fri, 26 Sep 2014 07:04:30 -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=0ilDz5dquvRdy3hRuc0G8B0jMOwLrSGm8GLigpX/LEY=; b=mVmTlmCpGGq4Zpao8Cto2irpIwZXDzEokm8KJPsZZJEbN0UCF0HTLwemv5mLBmU597 tCodNiU6SorBiMXMKg3z7zDSl1iIfFmkXp5jIoxH4IwVnRNOmiQQC8L2QqfxahUd6xBr YT/6KJetcE1oH5IvYIFVqC+B3EpVsJJsXuvbeZP2BsA84PZoyFHB88gl1LTHjG7ypsy7 is4IERZ6XFLD5GRDm+svMBwAfqPEi9YtYFK2QEOkyt7JjyX0y4hRjnt1IIEySM1K/s0s RwdZHnfGurvTcTYXDAgmIHuxu23k1baPyzh/WS4nyrvXrm2BcE83PGR7W6Ir6OzOP5YQ oAPA== X-Gm-Message-State: ALoCoQnGiFsr3Vw9kG5dfx83sqE9d3zFY7zOB68jfNyyRa4XvVSw+UIzGvHekM+PLl/ovNni5OeS X-Received: by 10.194.236.35 with SMTP id ur3mr3356348wjc.127.1411740270811; Fri, 26 Sep 2014 07:04:30 -0700 (PDT) Received: from localhost.localdomain (136-92-190-109.dsl.ovh.fr. [109.190.92.136]) by mx.google.com with ESMTPSA id fs13sm1246085wic.19.2014.09.26.07.04.28 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Fri, 26 Sep 2014 07:04:29 -0700 (PDT) From: Thomas Monjalon To: dev@dpdk.org Date: Fri, 26 Sep 2014 16:04:00 +0200 Message-Id: <1411740242-4240-4-git-send-email-thomas.monjalon@6wind.com> X-Mailer: git-send-email 2.0.4 In-Reply-To: <1411740242-4240-1-git-send-email-thomas.monjalon@6wind.com> References: <1411740242-4240-1-git-send-email-thomas.monjalon@6wind.com> Subject: [dpdk-dev] [PATCH 3/5] eal: no more bare metal environment 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: Fri, 26 Sep 2014 13:58:09 -0000 From: David Marchand Signed-off-by: David Marchand Signed-off-by: Thomas Monjalon --- lib/Makefile | 1 - lib/librte_eal/Makefile | 2 -- lib/librte_eal/common/Makefile | 3 --- lib/librte_eal/common/include/rte_eal.h | 5 ++--- lib/librte_eal/common/include/rte_log.h | 3 +-- 5 files changed, 3 insertions(+), 11 deletions(-) diff --git a/lib/Makefile b/lib/Makefile index 10c5bb3..8af6bd7 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -31,7 +31,6 @@ include $(RTE_SDK)/mk/rte.vars.mk -DIRS-$(CONFIG_RTE_LIBC) += libc DIRS-$(CONFIG_RTE_LIBRTE_EAL) += librte_eal DIRS-$(CONFIG_RTE_LIBRTE_MALLOC) += librte_malloc DIRS-$(CONFIG_RTE_LIBRTE_RING) += librte_ring diff --git a/lib/librte_eal/Makefile b/lib/librte_eal/Makefile index 3e1441b..69003cf 100644 --- a/lib/librte_eal/Makefile +++ b/lib/librte_eal/Makefile @@ -35,7 +35,5 @@ DIRS-$(CONFIG_RTE_LIBRTE_EAL_LINUXAPP) += common DIRS-$(CONFIG_RTE_LIBRTE_EAL_LINUXAPP) += linuxapp DIRS-$(CONFIG_RTE_LIBRTE_EAL_BSDAPP) += common DIRS-$(CONFIG_RTE_LIBRTE_EAL_BSDAPP) += bsdapp -DIRS-$(CONFIG_RTE_LIBRTE_EAL_BAREMETAL) += baremetal -DIRS-$(CONFIG_RTE_LIBRTE_EAL_BAREMETAL) += common include $(RTE_SDK)/mk/rte.subdir.mk diff --git a/lib/librte_eal/common/Makefile b/lib/librte_eal/common/Makefile index 7f27966..40986a7 100644 --- a/lib/librte_eal/common/Makefile +++ b/lib/librte_eal/common/Makefile @@ -52,7 +52,4 @@ SYMLINK-$(CONFIG_RTE_LIBRTE_EAL)-include := $(addprefix include/,$(INC)) SYMLINK-$(CONFIG_RTE_LIBRTE_EAL)-include/arch := \ $(addprefix include/$(RTE_ARCH)/arch/,$(ARCH_INC)) -# add libc if configured -DEPDIRS-$(CONFIG_RTE_LIBC) += lib/libc - include $(RTE_SDK)/mk/rte.install.mk diff --git a/lib/librte_eal/common/include/rte_eal.h b/lib/librte_eal/common/include/rte_eal.h index 273da9a..3c2d357 100644 --- a/lib/librte_eal/common/include/rte_eal.h +++ b/lib/librte_eal/common/include/rte_eal.h @@ -124,9 +124,8 @@ enum rte_proc_type_t rte_eal_process_type(void); * This function is to be executed on the MASTER lcore only, as soon * as possible in the application's main() function. * - * The function finishes the initialization process that was started - * during boot (in case of baremetal) or before main() is called (in - * case of linuxapp). It puts the SLAVE lcores in the WAIT state. + * The function finishes the initialization process before main() is called. + * It puts the SLAVE lcores in the WAIT state. * * When the multi-partition feature is supported, depending on the * configuration (if CONFIG_RTE_EAL_MAIN_PARTITION is disabled), this diff --git a/lib/librte_eal/common/include/rte_log.h b/lib/librte_eal/common/include/rte_log.h index 02cbb14..db1ea08 100644 --- a/lib/librte_eal/common/include/rte_log.h +++ b/lib/librte_eal/common/include/rte_log.h @@ -106,8 +106,7 @@ extern FILE *eal_default_log_stream; * * This can be done at any time. The f argument represents the stream * to be used to send the logs. If f is NULL, the default output is - * used, which is the serial line in case of bare metal, or directly - * sent to syslog in case of linux application. + * used (stderr). * * @param f * Pointer to the stream. -- 2.0.4