From: qinyuntan <qinyuntan@linux.alibaba.com>
To: Reinette Chatre <reinette.chatre@intel.com>,
Tony Luck <tony.luck@intel.com>
Cc: "H . Peter Anvin" <hpa@zytor.com>,
linux-kernel@vger.kernel.org, x86@kernel.org
Subject: Re: [PATCH V2 1/1] x86/resctrl: Remove unappropriate references to cacheinfo in the resctrl subsystem.
Date: Fri, 30 May 2025 10:03:24 +0800 [thread overview]
Message-ID: <c33047c5-8ef2-44f6-bad9-7e618d62476e@linux.alibaba.com> (raw)
In-Reply-To: <b0b3e665-4c4e-46d3-aae0-37853482938a@intel.com>
Hi Reinette Chatre,
Thank you very much for reviewing my patch and for correcting the commit
log content. With your modifications, the commit log now looks much more
reasonable.
I appreciate your patient guidance. I will resend the third version of
the patch to you shortly.
Best regards,
Qinyun Tan
On 5/30/25 1:37 AM, Reinette Chatre wrote:
> Hi Qinyun Tan,
>
> Thank you very much. I have a few comments about the changelog that
> I think will help explain the issue while aiming to have it follow the
> "tip" rules documented in Documentation/process/maintainer-tip.rst.
>
> On 5/28/25 8:16 PM, Qinyun Tan wrote:
>> In the resctrl subsystem's Sub-NUMA Cluster (SNC) mode, the rdt_mon_domain
>> structure previously relies on the cacheinfo interface to store L3 cache
>
> "previously relies" -> "relies"
>
>> information (e.g., shared_cpu_map) for monitoring. However, this approach
>> introduces risks when CPUs go offline:
>>
>> The ci field in rdt_mon_domain is initialized using the first online CPU
>> of a NUMA node. When this CPU goes offline, its shared_cpu_map is cleared
>> to contain only the offline CPU itself. Subsequently, attempting to read
>> counters via smp_call_on_cpu(offline_cpu) would fail, but returning zero
>> values for "top-level events" without error indication.
>
> Last sentence of above paragraph can be modified slightly to keep it in
> imperative tone:
> Subsequently, attempting to read counters via smp_call_on_cpu(offline_cpu)
> fails (and error ignored), returning zero values for "top-level events"
> without any error indication.
>
>>
>> To resolve these issues:
>
> "To resolve these issues:" can be dropped. There is only one issue and the custom
> is for the solution to follow the problem description.
>
>>
>> 1. Replace direct cacheinfo references in struct rdt_mon_domain and struct
>> rmid_read with the cacheinfo ID (a unique identifier for the L3 cache).
>>
>> 2. The hdr.cpu_mask maintained by resctrl constitutes a subset of
>
> "hdr.cpu_mask" -> "rdt_domain_hdr::cpu_mask"
>
> I do not think "rdt_domain_hdr::cpu_mask" should be defined as a subset of
> shared_cpu_map though ... especially since the problem description highlights how
> shared_cpu_map can contain offline CPUs. How about:
>
> "rdt_domain_hdr::cpu_mask contains the online CPUs associated with that
> domain. When reading ..."
>
>> shared_cpu_map. When reading top-level events, we dynamically select a CPU
>
> drop "we" (no impersonating of code)
>
> Considering the context it may help to be specific here:
> "select a CPU" -> "select a (known to be online) CPU"
>
>> from hdr.cpu_mask and utilize its corresponding shared_cpu_map for resctrl
>
> "hdr.cpu_mask" -> "rdt_domain_hdr::cpu_mask"
>
>> to determine valid CPUs for reading RMID counter via the MSR interface.
>
> You can highlight the motivation for doing this. For example, "Considering
> all CPUs associated with the L3 cache improves the chances of picking a
> housekeeping CPU on which the counter reading work can be queued, avoiding an
> unnecessary IPI."
>
> Above is quite a mix of changes. Below aims to put it all together while also
> adding more modifications as I am seeing the full picture. Please check for accuracy
> and feel free to improve.
>
> In the resctrl subsystem's Sub-NUMA Cluster (SNC) mode, the rdt_mon_domain
> structure representing a NUMA node relies on the cacheinfo interface
> (rdt_mon_domain::ci) to store L3 cache information (e.g., shared_cpu_map)
> for monitoring. The L3 cache information of a SNC NUMA node determines
> which domains are summed for the "top level" L3-scoped events.
>
> rdt_mon_domain::ci is initialized using the first online CPU
> of a NUMA node. When this CPU goes offline, its shared_cpu_map is cleared
> to contain only the offline CPU itself. Subsequently, attempting to read
> counters via smp_call_on_cpu(offline_cpu) fails (and error ignored),
> returning zero values for "top-level events" without any error indication.
>
> Replace the cacheinfo references in struct rdt_mon_domain and struct
> rmid_read with the cacheinfo ID (a unique identifier for the L3 cache).
>
> rdt_domain_hdr::cpu_mask contains the online CPUs associated with that
> domain. When reading "top-level events", select a CPU from
> rdt_domain_hdr::cpu_mask and utilize its L3 shared_cpu_map to determine
> valid CPUs for reading RMID counter via the MSR interface.
> Considering all CPUs associated with the L3 cache improves the chances
> of picking a housekeeping CPU on which the counter reading work can be
> queued, avoiding an unnecessary IPI.
>
>>
>> Fixes: 328ea68874642 ("x86/resctrl: Prepare for new Sub-NUMA Cluster (SNC) monitor files")
>> Signed-off-by: Qinyun Tan <qinyuntan@linux.alibaba.com>
>> ---
>
> With changelog polished:
> | Reviewed-by: Reinette Chatre <reinette.chatre@intel.com>
>
> Reinette
next prev parent reply other threads:[~2025-05-30 2:03 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-05-29 3:16 [PATCH V2 0/1] " Qinyun Tan
2025-05-29 3:16 ` [PATCH V2 1/1] " Qinyun Tan
2025-05-29 17:37 ` Reinette Chatre
2025-05-30 2:03 ` qinyuntan [this message]
2025-05-29 18:14 ` Luck, Tony
2025-05-30 1:42 ` qinyuntan
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=c33047c5-8ef2-44f6-bad9-7e618d62476e@linux.alibaba.com \
--to=qinyuntan@linux.alibaba.com \
--cc=hpa@zytor.com \
--cc=linux-kernel@vger.kernel.org \
--cc=reinette.chatre@intel.com \
--cc=tony.luck@intel.com \
--cc=x86@kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®