From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id A5ACAA0547; Thu, 25 Aug 2022 17:26:12 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 5875F42825; Thu, 25 Aug 2022 17:26:06 +0200 (CEST) Received: from mga17.intel.com (mga17.intel.com [192.55.52.151]) by mails.dpdk.org (Postfix) with ESMTP id 998AE40156 for ; Thu, 25 Aug 2022 17:26:03 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1661441163; x=1692977163; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=hQs11xaA0hi2RnjczFbvd4Ub6I80rBj3udK+iaQ9Qkg=; b=XMt+tJszaNOnRvNYkulXG7uENebu3uMGKVqMFYa6keA4308x5yT11xZy 7Mv2YvZFHWL5CmByqi8CHeFwpBJa4HiDzXDq/f3pafbfAENEEfiugVaS+ Vof2hCZRzL21IRonNFh0N6/6268O5u8hNXDZcG0wlkgeA1zI3tfCs3kFP 5w7fKKilUeyPyycotbc+eUc1+F06XqDAogXsHogZyA8HscinEKXzg7Ox3 D0Dsa6mOWRMk5ACO8Z2BNlTBJBc1H84psyUMDQ5lzLI8/MoXp82KB5tdf /WXSPuIBDcOaBUgRWNLl/l4LBgRT9uTjnYvZELZLuJ54+5LzDnSN6W9av A==; X-IronPort-AV: E=McAfee;i="6500,9779,10450"; a="274660727" X-IronPort-AV: E=Sophos;i="5.93,263,1654585200"; d="scan'208";a="274660727" Received: from orsmga001.jf.intel.com ([10.7.209.18]) by fmsmga107.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 25 Aug 2022 08:26:02 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.93,263,1654585200"; d="scan'208";a="643291066" Received: from silpixa00401122.ir.intel.com ([10.237.213.42]) by orsmga001.jf.intel.com with ESMTP; 25 Aug 2022 08:26:01 -0700 From: Kevin Laatz To: dev@dpdk.org Cc: anatoly.burakov@intel.com Subject: [PATCH v3 2/3] eal: add cpuset lcore telemetry entries Date: Thu, 25 Aug 2022 16:28:51 +0100 Message-Id: <20220825152852.1231849-3-kevin.laatz@intel.com> X-Mailer: git-send-email 2.31.1 In-Reply-To: <20220825152852.1231849-1-kevin.laatz@intel.com> References: <24c49429394294cfbf0d9c506b205029bac77c8b.1657890378.git.anatoly.burakov@intel.com> <20220825152852.1231849-1-kevin.laatz@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org From: Anatoly Burakov Expose per-lcore cpuset information to telemetry. Signed-off-by: Anatoly Burakov --- lib/eal/common/eal_common_lcore_telemetry.c | 47 +++++++++++++++++++++ 1 file changed, 47 insertions(+) diff --git a/lib/eal/common/eal_common_lcore_telemetry.c b/lib/eal/common/eal_common_lcore_telemetry.c index bba0afc26d..09c3beb0f7 100644 --- a/lib/eal/common/eal_common_lcore_telemetry.c +++ b/lib/eal/common/eal_common_lcore_telemetry.c @@ -19,6 +19,8 @@ int __rte_lcore_telemetry_enabled; #ifdef RTE_LCORE_POLL_BUSYNESS +#include "eal_private.h" + struct lcore_telemetry { int poll_busyness; /**< Calculated poll busyness (gets set/returned by the API) */ @@ -254,6 +256,48 @@ lcore_handle_poll_busyness(const char *cmd __rte_unused, return 0; } +static int +lcore_handle_cpuset(const char *cmd __rte_unused, + const char *params __rte_unused, + struct rte_tel_data *d) +{ + char corenum[64]; + int i; + + rte_tel_data_start_dict(d); + + RTE_LCORE_FOREACH(i) { + const struct lcore_config *cfg = &lcore_config[i]; + const rte_cpuset_t *cpuset = &cfg->cpuset; + struct rte_tel_data *ld; + unsigned int cpu; + + if (!rte_lcore_is_enabled(i)) + continue; + + /* create an array of integers */ + ld = rte_tel_data_alloc(); + if (ld == NULL) + return -ENOMEM; + rte_tel_data_start_array(ld, RTE_TEL_INT_VAL); + + /* add cpu ID's from cpuset to the array */ + for (cpu = 0; cpu < CPU_SETSIZE; cpu++) { + if (!CPU_ISSET(cpu, cpuset)) + continue; + rte_tel_data_add_array_int(ld, cpu); + } + + /* add array to the per-lcore container */ + snprintf(corenum, sizeof(corenum), "%d", i); + + /* tell telemetry library to free this array automatically */ + rte_tel_data_add_dict_container(d, corenum, ld, 0); + } + + return 0; +} + RTE_INIT(lcore_init_telemetry) { __rte_lcore_telemetry_enabled = true; @@ -268,6 +312,9 @@ RTE_INIT(lcore_init_telemetry) rte_telemetry_register_cmd("/eal/lcore/poll_busyness_disable", lcore_poll_busyness_disable, "disable lcore poll busyness measurement"); + + rte_telemetry_register_cmd("/eal/lcore/cpuset", lcore_handle_cpuset, + "list physical core affinity for each lcore"); } #else -- 2.31.1