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 55CC541BEB; Mon, 6 Feb 2023 12:22:37 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id DC0EE40FAE; Mon, 6 Feb 2023 12:22:36 +0100 (CET) Received: from szxga08-in.huawei.com (szxga08-in.huawei.com [45.249.212.255]) by mails.dpdk.org (Postfix) with ESMTP id 33DBC40A7A for ; Mon, 6 Feb 2023 12:22:35 +0100 (CET) Received: from dggpeml500024.china.huawei.com (unknown [172.30.72.55]) by szxga08-in.huawei.com (SkyGuard) with ESMTP id 4P9P203vVvz16NLJ; Mon, 6 Feb 2023 19:20:24 +0800 (CST) Received: from [10.67.100.224] (10.67.100.224) by dggpeml500024.china.huawei.com (7.185.36.10) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2375.34; Mon, 6 Feb 2023 19:22:33 +0800 Subject: Re: [PATCH v8 1/5] eal: add lcore info in telemetry To: Robin Jarry , CC: =?UTF-8?Q?Morten_Br=c3=b8rup?= , Kevin Laatz References: <20221123102612.1688865-1-rjarry@redhat.com> <20230202134329.539625-1-rjarry@redhat.com> <20230202134329.539625-2-rjarry@redhat.com> <72396994-5403-99f9-20a8-9c785dfb2b89@huawei.com> From: fengchengwen Message-ID: Date: Mon, 6 Feb 2023 19:22:33 +0800 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:68.0) Gecko/20100101 Thunderbird/68.11.0 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset="utf-8" Content-Language: en-US Content-Transfer-Encoding: 8bit X-Originating-IP: [10.67.100.224] X-ClientProxiedBy: dggems703-chm.china.huawei.com (10.3.19.180) To dggpeml500024.china.huawei.com (7.185.36.10) X-CFilter-Loop: Reflected 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 On 2023/2/6 16:22, Robin Jarry wrote: > fengchengwen, Feb 06, 2023 at 04:50: >> > +    return rte_lcore_iterate(lcore_telemetry_info_cb, &info); >> >> lcore_iterate will iterate and find the lcore. >> >> How about add one new API e.g. rte_lcore_cb(xxx) ? > > Hi fengchengwen, > > what would that new API do? Just invoke callback on one specific lcore. In this patch, the lcore_telemetry_info_cb() only valid on specific lcore, but it was implements by rte_lcore_iterate which will iterate all lcores. > > > .