From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wr0-f193.google.com (mail-wr0-f193.google.com [209.85.128.193]) by dpdk.org (Postfix) with ESMTP id 22338A84E for ; Fri, 26 Jan 2018 14:16:48 +0100 (CET) Received: by mail-wr0-f193.google.com with SMTP id f11so514465wre.4 for ; Fri, 26 Jan 2018 05:16:48 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=from:to:cc:subject:date:message-id:in-reply-to:references; bh=YCMdat/yqI/WBCRUgGcoyAuCROg7hbdG9ktaiEf53rs=; b=VKJVYhxXB3QXBBdn8ZdfFPSL/wZQqkdcPUxxJxgViGWbnuylibR6IijT8Zl5WthDix /CRvye/Uu2PvtmuYPTnlEJcpqE2dEvi0rJB136IuVGTLk5nfj/fNvkBBUKop6P2EMd1y CbwVZu7vuTXAWloSq6RMDOk2r/2YVdg+QYa39GgzpI1Fi0auuqPCxzDL7z/X/PrplYwv 32ee1Zh0KzOzR+BT2wWNwwgIDfrs8r5EPPma/1/5qns2yXHstJh7v9ONziwY03v9i/78 GOtloZvIj0NCl8/vXiD3QHEvGwriY/1aPht4b5Cv/ilOGjEOY4u4J0mK06zjMfNkYgyf QoJA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references; bh=YCMdat/yqI/WBCRUgGcoyAuCROg7hbdG9ktaiEf53rs=; b=RxHrtkN8NXIo5QrnF/jaHeKVUN2vIio8DvNY7RB7Cfhv+SIyC6zsBeiDmOpsRON/nL e7qUiOFyI+TcOVyQDwQEI0mGoMhfbieK9hRutwVAKlEgxLMBvfG5nInKoIckQEEmWWFv Ez5nlzjPPDG81wGQF+EsfJvVXF3raZC4GiHauQRfdVqWQKqWFJZypX3x/os9J8tn1OZ5 lAA7hQ9a/kQHfjiIXVi6HdZ9f+zl/uodkkoK9KiN6hx9KYsybuap5yRrAEYcpTIV70un IT4kP30FBnoX+Jm1Oi+oLpQu2R0ohAX5HW9b69eYl8/RHHol5r4k9yGW98cV1+E0Mqi1 rA/A== X-Gm-Message-State: AKwxytdtArlFdGIu62gQgn5a2ZLYAUzU5RbgTLqoQqA2AqEAfdzIXho4 RHymLetEx8NKBFOeQVOE5NEj92agll0= X-Google-Smtp-Source: AH8x224bG2bW2CQyxiAKKNYf4FHvr8YNdp8N1fEQh9RrhwWBOvKqQnskk4VHonppFNSNhyHDLjyekg== X-Received: by 10.223.184.213 with SMTP id c21mr5111563wrg.57.1516972607826; Fri, 26 Jan 2018 05:16:47 -0800 (PST) Received: from localhost ([2a00:23c5:bef3:400:9531:588b:44ae:bec4]) by smtp.gmail.com with ESMTPSA id d195sm4112475wmd.2.2018.01.26.05.16.47 (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Fri, 26 Jan 2018 05:16:47 -0800 (PST) From: luca.boccassi@gmail.com To: Anatoly Burakov Cc: dpdk stable Date: Fri, 26 Jan 2018 13:13:22 +0000 Message-Id: <20180126131332.15346-52-luca.boccassi@gmail.com> X-Mailer: git-send-email 2.14.2 In-Reply-To: <20180126131332.15346-1-luca.boccassi@gmail.com> References: <20180126131332.15346-1-luca.boccassi@gmail.com> Subject: [dpdk-stable] patch 'app/procinfo: add compilation option in config' has been queued to LTS release 16.11.5 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: Fri, 26 Jan 2018 13:16:48 -0000 Hi, FYI, your patch has been queued to LTS release 16.11.5 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/28/18. So please shout if anyone has objections. Thanks. Luca Boccassi --- >>From ad2d1495cb5b85fde3930ebca47782786e1c43f9 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 30ec292ae..62d5d0298 100644 --- a/app/Makefile +++ b/app/Makefile @@ -36,7 +36,7 @@ DIRS-$(CONFIG_RTE_LIBRTE_ACL) += test-acl DIRS-$(CONFIG_RTE_LIBRTE_PIPELINE) += test-pipeline DIRS-$(CONFIG_RTE_TEST_PMD) += test-pmd DIRS-$(CONFIG_RTE_LIBRTE_CMDLINE) += cmdline_test -DIRS-$(CONFIG_RTE_EXEC_ENV_LINUXAPP) += proc_info +DIRS-$(CONFIG_RTE_PROC_INFO) += proc_info DIRS-$(CONFIG_RTE_LIBRTE_PDUMP) += pdump include $(RTE_SDK)/mk/rte.subdir.mk diff --git a/config/common_base b/config/common_base index 4bff83af7..2d4a47fb9 100644 --- a/config/common_base +++ b/config/common_base @@ -583,6 +583,11 @@ CONFIG_RTE_INSECURE_FUNCTION_WARNING=n 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 # diff --git a/config/common_linuxapp b/config/common_linuxapp index 2483dfa51..433949394 100644 --- a/config/common_linuxapp +++ b/config/common_linuxapp @@ -44,3 +44,4 @@ CONFIG_RTE_LIBRTE_PMD_VHOST=y CONFIG_RTE_LIBRTE_PMD_AF_PACKET=y CONFIG_RTE_LIBRTE_POWER=y CONFIG_RTE_VIRTIO_USER=y +CONFIG_RTE_PROC_INFO=y -- 2.14.2