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 E633541CB5; Thu, 16 Feb 2023 21:57:21 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 7FD0240FDF; Thu, 16 Feb 2023 21:57:21 +0100 (CET) Received: from sender11-of-o51.zoho.eu (sender11-of-o51.zoho.eu [31.186.226.237]) by mails.dpdk.org (Postfix) with ESMTP id 6EB5040E25 for ; Thu, 16 Feb 2023 21:57:20 +0100 (CET) ARC-Seal: i=1; a=rsa-sha256; t=1676581020; cv=none; d=zohomail.eu; s=zohoarc; b=Y+3/gnaNWu/MZ+o6z2xCTM/+HEG/FY7QCvpLyLCWs0Ufvhhe5uWkDu3FfufGVxpkT9bUzkIDxkHBnnxpbrehhbnW9coJSHCtqOzGzeRlvGffM8FT3mJVhyMW9xYV0D6GbgVAL+spqYirMjt4/vq5j27WuVsM6zajNcsdmmmGfFc= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zohomail.eu; s=zohoarc; t=1676581020; h=Content-Type:Cc:Date:From:In-Reply-To:MIME-Version:Message-ID:References:Subject:To; bh=7SzzFkrxVdrbbYakFikf5mv7NusgEW5w/csSQL4liD0=; b=KT3XHQZXO/BzmbCPBGPbOY4dByEaIog8+mz5u96niojSCkWG9jEsUUk+ttTKxJjIxtfmtgK648IazgYiOXD+lBwkJyoEzi2IEiLdFn4iZyXCTJojsfR9zeEqZrw9SvTosLXUqNXtMKmhHsa2tKw6vPpriW44o6VqX/Ngo6jiT4s= ARC-Authentication-Results: i=1; mx.zohomail.eu; spf=pass smtp.mailfrom=liangma@liangbit.com; dmarc=pass header.from= Received: from C02GF04TMD6V (ec2-54-93-135-31.eu-central-1.compute.amazonaws.com [54.93.135.31]) by mx.zoho.eu with SMTPS id 1676581018398449.97015521607216; Thu, 16 Feb 2023 21:56:58 +0100 (CET) Date: Thu, 16 Feb 2023 20:56:55 +0000 From: Liang Ma To: Tomasz Duszynski Cc: dev@dpdk.org, thomas@monjalon.net, jerinj@marvell.com, mb@smartsharesystems.com, Ruifeng.Wang@arm.com, mattias.ronnblom@ericsson.com, zhoumin@loongson.cn Subject: Re: [PATCH v5 0/4] add support for self monitoring Message-ID: References: <20221213104350.3218167-1-tduszynski@marvell.com> <20230110234642.1188550-1-tduszynski@marvell.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20230110234642.1188550-1-tduszynski@marvell.com> X-ZohoMailClient: External 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 PMU is kind of MSR. Precisely , that's MSR per core. All MSR reading will lead to IPI(Please reference the kernel implementation of MSR driver). The IPI will disturb the DPDK application because the userspace/kernel context switch, which has impact to the tail latency.