Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 3401FC636CD for ; Mon, 6 Feb 2023 01:28:46 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229573AbjBFB2p (ORCPT ); Sun, 5 Feb 2023 20:28:45 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:36008 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229458AbjBFB2n (ORCPT ); Sun, 5 Feb 2023 20:28:43 -0500 Received: from szxga03-in.huawei.com (szxga03-in.huawei.com [45.249.212.189]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id AE6761ABF2; Sun, 5 Feb 2023 17:28:41 -0800 (PST) Received: from kwepemm600003.china.huawei.com (unknown [172.30.72.54]) by szxga03-in.huawei.com (SkyGuard) with ESMTP id 4P97nw5v2QzkXr6; Mon, 6 Feb 2023 09:24:04 +0800 (CST) Received: from [10.67.111.205] (10.67.111.205) by kwepemm600003.china.huawei.com (7.193.23.202) 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 09:28:38 +0800 Subject: Re: [PATCH] perf/core: Fix account interrupt throttle From: Yang Jihong To: , , , , , , , , References: <20230112033811.58924-1-yangjihong1@huawei.com> <93075101-43c8-b88e-8630-bce9e9a5f706@huawei.com> Message-ID: <345704aa-46c5-5509-830d-8382d7b9c48d@huawei.com> Date: Mon, 6 Feb 2023 09:28:38 +0800 User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko/20100101 Thunderbird/78.6.1 MIME-Version: 1.0 In-Reply-To: <93075101-43c8-b88e-8630-bce9e9a5f706@huawei.com> Content-Type: text/plain; charset="utf-8"; format=flowed Content-Language: en-US Content-Transfer-Encoding: 8bit X-Originating-IP: [10.67.111.205] X-ClientProxiedBy: dggems703-chm.china.huawei.com (10.3.19.180) To kwepemm600003.china.huawei.com (7.193.23.202) X-CFilter-Loop: Reflected Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hello, Ping again, please take time to review, thanks. Thanks, Yang On 2023/1/28 9:28, Yang Jihong wrote: > Hello, > > PING > > Thanks, > Yang > > On 2023/1/12 11:38, Yang Jihong wrote: >> In literal sense of "max_samples_per_tick", if hwc->interrupts == >> max_samples_per_tick, it should not be throttled, therefore, the judgment >> condition should be changed to "hwc->interrupts > max_samples_per_tick". >> >> In fact, this may cause the hardlockup to fail, The minimum value of >> max_samples_per_tick may be 1, in this case, the return value of >> __perf_event_account_interrupt function is 1. >> As a result, nmi_watchdog gets throttled, which would stop PMU (Use x86 >> architecture as an example, see x86_pmu_handle_irq). >> >> Signed-off-by: Yang Jihong >> --- >>   kernel/events/core.c | 2 +- >>   1 file changed, 1 insertion(+), 1 deletion(-) >> >> diff --git a/kernel/events/core.c b/kernel/events/core.c >> index d56328e5080e..ced98e028d86 100644 >> --- a/kernel/events/core.c >> +++ b/kernel/events/core.c >> @@ -9414,7 +9414,7 @@ __perf_event_account_interrupt(struct perf_event >> *event, int throttle) >>       } else { >>           hwc->interrupts++; >>           if (unlikely(throttle >> -                 && hwc->interrupts >= max_samples_per_tick)) { >> +                 && hwc->interrupts > max_samples_per_tick)) { >>               __this_cpu_inc(perf_throttled_count); >>               tick_dep_set_cpu(smp_processor_id(), >> TICK_DEP_BIT_PERF_EVENTS); >>               hwc->interrupts = MAX_INTERRUPTS; >> > > .