From patchwork Wed Nov 23 10:26:10 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Robin Jarry X-Patchwork-Id: 120113 X-Patchwork-Delegate: thomas@monjalon.net Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id DB56EA09E5; Wed, 23 Nov 2022 11:26:41 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id CE22442DA2; Wed, 23 Nov 2022 11:26:37 +0100 (CET) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.129.124]) by mails.dpdk.org (Postfix) with ESMTP id A06E240E5A for ; Wed, 23 Nov 2022 11:26:35 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1669199194; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=gfmwBOS/hkU1jXCUkOjd0ZFRD1RuOvlr+WXuRHWBP6o=; b=FoisCwUAZRXEbB6AIcHXaCsN6EzLQVTaE7r0RmdSBZrbN4mcZGWc+iPA0kkn1gAsDkbOw+ M6SdL1d5kNGkLOEKghSwrOTlhKtqeICSiuAHQJlpB2EuhlzRq34dFAkSMNZ8/EnHO9/i0b 067KW1fbT+jjRQlqqfJJ2JRoAtDQdrY= Received: from mimecast-mx02.redhat.com (mimecast-mx02.redhat.com [66.187.233.88]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-567-9wUDFpSBOEujJqsI2nXp2Q-1; Wed, 23 Nov 2022 05:26:32 -0500 X-MC-Unique: 9wUDFpSBOEujJqsI2nXp2Q-1 Received: from smtp.corp.redhat.com (int-mx01.intmail.prod.int.rdu2.redhat.com [10.11.54.1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id 7834B8027EC; Wed, 23 Nov 2022 10:26:31 +0000 (UTC) Received: from paul.home (unknown [10.39.208.15]) by smtp.corp.redhat.com (Postfix) with ESMTP id C56BF40C2086; Wed, 23 Nov 2022 10:26:29 +0000 (UTC) From: Robin Jarry To: dev@dpdk.org Cc: Bruce Richardson , Jerin Jacob , Kevin Laatz , Konstantin Ananyev , =?utf-8?q?Mattias_R?= =?utf-8?q?=C3=B6nnblom?= , =?utf-8?q?Morten_Br=C3=B8?= =?utf-8?q?rup?= , Robin Jarry Subject: [RFC PATCH 2/4] eal: allow applications to report their cpu utilization Date: Wed, 23 Nov 2022 11:26:10 +0100 Message-Id: <20221123102612.1688865-3-rjarry@redhat.com> In-Reply-To: <20221123102612.1688865-1-rjarry@redhat.com> References: <20221123102612.1688865-1-rjarry@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 3.1 on 10.11.54.1 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com 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 Allow applications to register a callback that will be invoked in rte_lcore_dump() and when requesting lcore info in the telemetry API. The callback is expected to return a number between 0 and 100 representing the percentage of busy cycles spent over a fixed period of time. The period of time is configured when registering the callback. Cc: Bruce Richardson Cc: Jerin Jacob Cc: Kevin Laatz Cc: Konstantin Ananyev Cc: Mattias Rönnblom Cc: Morten Brørup Signed-off-by: Robin Jarry --- lib/eal/common/eal_common_lcore.c | 37 ++++++++++++++++++++++++++++--- lib/eal/include/rte_lcore.h | 30 +++++++++++++++++++++++++ lib/eal/version.map | 1 + 3 files changed, 65 insertions(+), 3 deletions(-) diff --git a/lib/eal/common/eal_common_lcore.c b/lib/eal/common/eal_common_lcore.c index 31e3965dc5ad..9a85fd8854df 100644 --- a/lib/eal/common/eal_common_lcore.c +++ b/lib/eal/common/eal_common_lcore.c @@ -420,14 +420,36 @@ rte_lcore_iterate(rte_lcore_iterate_cb cb, void *arg) return ret; } +static rte_lcore_busy_percent_cb lcore_busy_cb; +static unsigned int lcore_busy_period; + +void +rte_lcore_register_busy_percent_cb(rte_lcore_busy_percent_cb cb, unsigned int period) +{ + lcore_busy_cb = cb; + lcore_busy_period = period; +} + +static int +lcore_busy_percent(unsigned int lcore_id) +{ + int percent = -1; + if (lcore_busy_cb) + percent = lcore_busy_cb(lcore_id); + if (percent > 100) + percent = 100; + return percent; +} + static int lcore_dump_cb(unsigned int lcore_id, void *arg) { struct rte_config *cfg = rte_eal_get_configuration(); char cpuset[RTE_CPU_AFFINITY_STR_LEN]; + char busy_str[16]; const char *role; FILE *f = arg; - int ret; + int ret, busy; switch (cfg->lcore_role[lcore_id]) { case ROLE_RTE: @@ -446,9 +468,16 @@ lcore_dump_cb(unsigned int lcore_id, void *arg) ret = eal_thread_dump_affinity(&lcore_config[lcore_id].cpuset, cpuset, sizeof(cpuset)); - fprintf(f, "lcore %u, socket %u, role %s, cpuset %s%s\n", lcore_id, + busy = lcore_busy_percent(lcore_id); + if (busy < 0) { + snprintf(busy_str, sizeof(busy_str), "%s", "N/A"); + } else { + snprintf(busy_str, sizeof(busy_str), "%d%% last %d sec", + busy, lcore_busy_period); + } + fprintf(f, "lcore %u, socket %u, role %s, cpuset %s%s, busy %s\n", lcore_id, rte_lcore_to_socket_id(lcore_id), role, cpuset, - ret == 0 ? "" : "..."); + ret == 0 ? "" : "...", busy_str); return 0; } @@ -517,6 +546,8 @@ lcore_telemetry_info_cb(unsigned int lcore_id, void *arg) rte_tel_data_add_dict_int(info->d, "socket", rte_lcore_to_socket_id(lcore_id)); rte_tel_data_add_dict_string(info->d, "role", role); rte_tel_data_add_dict_string(info->d, "cpuset", cpuset); + rte_tel_data_add_dict_int(info->d, "busy_percent", lcore_busy_percent(lcore_id)); + rte_tel_data_add_dict_int(info->d, "busy_period", lcore_busy_period); return 0; } diff --git a/lib/eal/include/rte_lcore.h b/lib/eal/include/rte_lcore.h index 6938c3fd7b81..b1223eaa12bf 100644 --- a/lib/eal/include/rte_lcore.h +++ b/lib/eal/include/rte_lcore.h @@ -328,6 +328,36 @@ typedef int (*rte_lcore_iterate_cb)(unsigned int lcore_id, void *arg); int rte_lcore_iterate(rte_lcore_iterate_cb cb, void *arg); +/** + * Callback to allow applications to report CPU utilization. + * + * @param lcore_id + * The lcore to consider. + * @return + * - A number between 0 and 100 representing the percentage of busy cycles + * over the last period for the given lcore_id. + * - -1 if the information is not available or if any error occurred. + */ +typedef int (*rte_lcore_busy_percent_cb)(unsigned int lcore_id); + +/** + * Register a callback from an application to be called in rte_lcore_dump() + * and the /eal/lcore/info telemetry endpoint handler. + * + * Applications are expected to return a number between 0 and 100 representing + * the percentage of busy cycles over the last period for the provided lcore_id. + * The implementation details for computing such a ratio is specific to each + * application. + * + * @param cb + * The callback function. + * @param period + * The period in seconds over which the percentage of busy cycles will be + * reported by the application. + */ +__rte_experimental +void rte_lcore_register_busy_percent_cb(rte_lcore_busy_percent_cb cb, unsigned int period); + /** * List all lcores. * diff --git a/lib/eal/version.map b/lib/eal/version.map index 7ad12a7dc985..138537ee5835 100644 --- a/lib/eal/version.map +++ b/lib/eal/version.map @@ -440,6 +440,7 @@ EXPERIMENTAL { rte_thread_detach; rte_thread_equal; rte_thread_join; + rte_lcore_register_busy_percent_cb; }; INTERNAL {