From mboxrd@z Thu Jan 1 00:00:00 1970 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 C3E72EB64DA for ; Fri, 16 Jun 2023 15:32:55 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1346012AbjFPPcy (ORCPT ); Fri, 16 Jun 2023 11:32:54 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:49072 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231208AbjFPPcw (ORCPT ); Fri, 16 Jun 2023 11:32:52 -0400 Received: from casper.infradead.org (casper.infradead.org [IPv6:2001:8b0:10b:1236::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id D952812B; Fri, 16 Jun 2023 08:32:50 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=casper.20170209; h=In-Reply-To:Content-Type:MIME-Version: References:Message-ID:Subject:Cc:To:From:Date:Sender:Reply-To: Content-Transfer-Encoding:Content-ID:Content-Description; bh=8C7YhXPhh7ijldw00jMSUNhsgYPXxCbnNmJt5aUxlOc=; b=FGe0HEly7Lxm991DNpcRl4iBD1 YimMZxQGg2DHVZB20woYNjjZ2ZQVg8XhsMQTDqCrhihHWy0oQHxrKiB6vQnT+E8elYcDYP5vxifuC /v4iD8bXTAm0sjoT4qmuUqMx2LEe9MOQMob0NSZs8CwyTikJZeKmUsJCN/D/AuJzpEV5Gya41Qvy5 M8r5Ryb87t3JvObZXFLmsJiYRNGMCr97OB3C4taLgNOznfBu0s38SFgO70wYyIUT/+1V7S5Qx1AV0 VQXdNhT12PEy3BplKW0T4nwQOdcx2LZrFZbGeFl954RDkEG57DJUgDiC8N451MeSySg5qs9w6aSqC WoRVTjFA==; Received: from j130084.upc-j.chello.nl ([24.132.130.84] helo=noisy.programming.kicks-ass.net) by casper.infradead.org with esmtpsa (Exim 4.94.2 #2 (Red Hat Linux)) id 1qABR0-0097p0-TR; Fri, 16 Jun 2023 15:32:22 +0000 Received: from hirez.programming.kicks-ass.net (hirez.programming.kicks-ass.net [192.168.1.225]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (Client did not present a certificate) by noisy.programming.kicks-ass.net (Postfix) with ESMTPS id 73BE2300208; Fri, 16 Jun 2023 17:32:21 +0200 (CEST) Received: by hirez.programming.kicks-ass.net (Postfix, from userid 1000) id 5BCBB24519B2F; Fri, 16 Jun 2023 17:32:21 +0200 (CEST) Date: Fri, 16 Jun 2023 17:32:21 +0200 From: Peter Zijlstra To: "Sandipan Das (AMD)" Cc: Breno Leitao , Ingo Molnar , Arnaldo Carvalho de Melo , Mark Rutland , Alexander Shishkin , Jiri Olsa , Namhyung Kim , Ian Rogers , Adrian Hunter , Thomas Gleixner , Borislav Petkov , Dave Hansen , x86@kernel.org, "H. Peter Anvin" , Sandipan Das , leit@fb.com, dcostantino@meta.com, "open list:PERFORMANCE EVENTS SUBSYSTEM" , "open list:PERFORMANCE EVENTS SUBSYSTEM" , ananth.narayan@amd.com, Ravi Bangoria Subject: Re: [PATCH] perf/x86/amd: Do not WARN on every IRQ Message-ID: <20230616153221.GI4253@hirez.programming.kicks-ass.net> References: <20230616115316.3652155-1-leitao@debian.org> <20230616132954.GG4253@hirez.programming.kicks-ass.net> <100041d0-f2fe-331b-13a7-ad09082aeb7d@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <100041d0-f2fe-331b-13a7-ad09082aeb7d@gmail.com> Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Fri, Jun 16, 2023 at 08:13:22PM +0530, Sandipan Das (AMD) wrote: > The reserved bits should never be set. The purpose of the WARN_ON() is to catch such anomalies. > I am working out the details with Breno and will report back with a resolution. Thanks!