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 F0463C433F5 for ; Thu, 21 Apr 2022 12:41:54 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1385105AbiDUMom (ORCPT ); Thu, 21 Apr 2022 08:44:42 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:45952 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1385111AbiDUMol (ORCPT ); Thu, 21 Apr 2022 08:44:41 -0400 Received: from ams.source.kernel.org (ams.source.kernel.org [145.40.68.75]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 68A7A3193C; Thu, 21 Apr 2022 05:41:51 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ams.source.kernel.org (Postfix) with ESMTPS id 0F1A6B8245D; Thu, 21 Apr 2022 12:41:50 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id D60C7C385A5; Thu, 21 Apr 2022 12:41:46 +0000 (UTC) Date: Thu, 21 Apr 2022 08:41:45 -0400 From: Steven Rostedt To: "Luck, Tony" Cc: "hdegoede@redhat.com" , "markgross@kernel.org" , "tglx@linutronix.de" , "mingo@redhat.com" , "bp@alien8.de" , "dave.hansen@linux.intel.com" , "x86@kernel.org" , "hpa@zytor.com" , "corbet@lwn.net" , "gregkh@linuxfoundation.org" , "andriy.shevchenko@linux.intel.com" , "Joseph, Jithu" , "Raj, Ashok" , "Williams, Dan J" , "linux-kernel@vger.kernel.org" , "linux-doc@vger.kernel.org" , "platform-driver-x86@vger.kernel.org" , "patches@lists.linux.dev" , "Shankar, Ravi V" Subject: Re: [PATCH v3 10/11] trace: platform/x86/intel/ifs: Add trace point to track Intel IFS operations Message-ID: <20220421084145.3b0c3539@gandalf.local.home> In-Reply-To: References: <20220407191347.9681-1-jithu.joseph@intel.com> <20220419163859.2228874-1-tony.luck@intel.com> <20220419163859.2228874-11-tony.luck@intel.com> <20220420193839.6e9d810b@gandalf.local.home> X-Mailer: Claws Mail 3.17.8 (GTK+ 2.24.33; x86_64-pc-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: linux-doc@vger.kernel.org On Thu, 21 Apr 2022 04:26:39 +0000 "Luck, Tony" wrote: > >> +TRACE_EVENT(ifs_status, > >> + > >> + TP_PROTO(union ifs_scan activate, union ifs_status status), > > > > Really, you want to pass the structure in by value, so that we have two > > copies? One to get to this function and then one to write to the ring > > buffer? > > These "structures" are just bitfield helpers for a u64 that is passed into > WRMSR (in the case of activate) and received back from RDMSR in > the case of status. > > So this is really just a pair of u64 arguments, with the compiler handling > the bit field extractions into the ring buffer. I was just wondering if passing by reference would be better, but as you stated, they are just two u64 arguments. > > Here are the definitions: > > union ifs_scan { > u64 data; > struct { > u32 start :8; > u32 stop :8; > u32 rsvd :16; > u32 delay :31; > u32 sigmce :1; > }; > }; > > union ifs_status { > u64 data; > struct { > u32 chunk_num :8; > u32 chunk_stop_index :8; > u32 rsvd1 :16; > u32 error_code :8; > u32 rsvd2 :22; > u32 control_error :1; > u32 signature_error :1; > }; > }; > > Would it be better to do the bit extractions of the start/stop fields first? No, I'm just paranoid about passing structures / unions in by value and not reference. If you are fine with this, then I'm OK too. -- Steve