From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from out4-smtp.messagingengine.com (out4-smtp.messagingengine.com [66.111.4.28]) by dpdk.org (Postfix) with ESMTP id F181B1B1BD for ; Wed, 24 Jan 2018 16:41:16 +0100 (CET) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id 1482B2271B; Wed, 24 Jan 2018 10:41:16 -0500 (EST) Received: from frontend1 ([10.202.2.160]) by compute1.internal (MEProxy); Wed, 24 Jan 2018 10:41:16 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=fridaylinux.org; h=cc:date:from:in-reply-to:message-id:references:subject:to :x-me-sender:x-me-sender:x-sasl-enc; s=fm1; bh=Pok72Ge6ig1s/AAR9 eoXZV32zYNUfb7+FI7xE9HlUtA=; b=qCyZpc3GAsedgCp0YGp21UEZOOI95pq4I XIYS9S2O+hGhrmxLY+n/6BgvrwMB0QlYPdFKJFQMjxZogzjvRBQ4QaYidlBapppZ Apus1Qce/QvdlXs+4DsnOBi9dnIPmScGMLNy1isztCA7Xa4LtXCypbPU3d9lxj8N AUkQzG8Z7KSHwz0aOQQtXGiDBUMLDNnxjqYcsMPUIxQmRpoYwtLJuWw9ukAQefVn wl9iJ24Dok6EWDqXIBM5EXyh3T/t+TtOxiLHUvtH8nghsYwEg/XMAEp1DtRKLuGt d1Dh1SR1tyVDwzUwxd1gF+cVvLiXHuLk+0+QitTcKkXLdo2IMwlTA== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:date:from:in-reply-to:message-id :references:subject:to:x-me-sender:x-me-sender:x-sasl-enc; s= fm1; bh=Pok72Ge6ig1s/AAR9eoXZV32zYNUfb7+FI7xE9HlUtA=; b=I/AwtWrO zJXLzp+k66bPdfNHbyB/G/YKAOICYQJ1HjFSUiez2XO9k5ifEcPTF+vsQWIPvHrJ PGm+jWSQG6zAKpdrn8iFM+dNDgXu+kmvNnVY0AWIapf4GY2IRjuTbKuUCZl5jfNZ 6KGubSbZ0U0C2qXYt+xaRa2RVx3L/FThKCXfGtNnUujHu+5fXilu8DKEdEdamPpH FT7vxEPnIeQV2DJhntBZPISA8tqdUDHY4qY4NF9/mF+kKTCVIM+XUdo01un0259G 3m1+10PKRIUVXaQOu7i7N1T6P2MgIksJJHSi7aUzRbwbVeUglevw7wpMYFxLLmM1 rh0TKzEfagSHdw== X-ME-Sender: Received: from localhost.localdomain (unknown [115.150.27.206]) by mail.messagingengine.com (Postfix) with ESMTPA id 5A5937E1A2; Wed, 24 Jan 2018 10:41:13 -0500 (EST) From: Yuanhan Liu To: Anatoly Burakov Cc: dpdk stable Date: Wed, 24 Jan 2018 23:33:08 +0800 Message-Id: <1516808026-25523-120-git-send-email-yliu@fridaylinux.org> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1516808026-25523-1-git-send-email-yliu@fridaylinux.org> References: <1516808026-25523-1-git-send-email-yliu@fridaylinux.org> Subject: [dpdk-stable] patch 'app/procinfo: add compilation option in config' has been queued to LTS release 17.11.1 X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 24 Jan 2018 15:41:17 -0000 Hi, FYI, your patch has been queued to LTS release 17.11.1 Note it hasn't been pushed to http://dpdk.org/browse/dpdk-stable yet. It will be pushed if I get no objections before 01/26/18. So please shout if anyone has objections. Thanks. --yliu --- >>From 5359c7fbb5bd2b7dbf53f85ab693b33b71f0fc78 Mon Sep 17 00:00:00 2001 From: Anatoly Burakov Date: Fri, 12 Jan 2018 18:27:29 +0000 Subject: [PATCH] app/procinfo: add compilation option in config [ upstream commit 7425a8fc5a3afc56d083fe21508efce1c6b0e45f ] Unlike every other DPDK application's compilation, proc_info's compilation cannot be turned off on Linux. Fix it by adding a config option to base linuxapp config. Fixes: 22561383ea17 ("app: replace dump_cfg by proc_info") Signed-off-by: Anatoly Burakov --- app/Makefile | 2 +- config/common_base | 5 +++++ config/common_linuxapp | 1 + 3 files changed, 7 insertions(+), 1 deletion(-) diff --git a/app/Makefile b/app/Makefile index 7ea02b0..6398c18 100644 --- a/app/Makefile +++ b/app/Makefile @@ -32,7 +32,7 @@ include $(RTE_SDK)/mk/rte.vars.mk DIRS-$(CONFIG_RTE_TEST_PMD) += test-pmd -DIRS-$(CONFIG_RTE_EXEC_ENV_LINUXAPP) += proc_info +DIRS-$(CONFIG_RTE_PROC_INFO) += proc_info DIRS-$(CONFIG_RTE_LIBRTE_PDUMP) += pdump ifeq ($(CONFIG_RTE_LIBRTE_CRYPTODEV),y) diff --git a/config/common_base b/config/common_base index b8ee8f9..67c2432 100644 --- a/config/common_base +++ b/config/common_base @@ -804,6 +804,11 @@ CONFIG_RTE_APP_TEST=y CONFIG_RTE_APP_TEST_RESOURCE_TAR=n # +# Compile the procinfo application +# +CONFIG_RTE_PROC_INFO=n + +# # Compile the PMD test application # CONFIG_RTE_TEST_PMD=y diff --git a/config/common_linuxapp b/config/common_linuxapp index 74c7d64..15c6961 100644 --- a/config/common_linuxapp +++ b/config/common_linuxapp @@ -50,3 +50,4 @@ CONFIG_RTE_LIBRTE_AVP_PMD=y CONFIG_RTE_LIBRTE_NFP_PMD=y CONFIG_RTE_LIBRTE_POWER=y CONFIG_RTE_VIRTIO_USER=y +CONFIG_RTE_PROC_INFO=y -- 2.7.4