From: Reinette Chatre <reinette.chatre@intel.com>
To: babu.moger@amd.com,
"Maciej Wieczór-Retman" <maciej.wieczor-retman@intel.com>
Cc: Fenghua Yu <fenghua.yu@intel.com>,
Thomas Gleixner <tglx@linutronix.de>,
Ingo Molnar <mingo@redhat.com>, Borislav Petkov <bp@alien8.de>,
Dave Hansen <dave.hansen@linux.intel.com>, <x86@kernel.org>,
"H. Peter Anvin" <hpa@zytor.com>, <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH v2 1/4] x86/resctrl: Enable non-contiguous bits in Intel CAT
Date: Thu, 28 Sep 2023 08:53:54 -0700 [thread overview]
Message-ID: <8a5d1211-8acb-762d-ae36-bf508b082ef4@intel.com> (raw)
In-Reply-To: <13b360ac-4292-5056-6d00-6eb1d4186b11@amd.com>
Hi Babu,
On 9/28/2023 8:08 AM, Moger, Babu wrote:
> On 9/28/23 02:06, Maciej Wieczór-Retman wrote:
>> On 2023-09-27 at 17:34:27 -0500, Moger, Babu wrote:
>>> On 9/22/2023 3:48 AM, Maciej Wieczor-Retman wrote:
...
>>>> diff --git a/arch/x86/kernel/cpu/resctrl/core.c b/arch/x86/kernel/cpu/resctrl/core.c
>>>> index 030d3b409768..c783a873147c 100644
>>>> --- a/arch/x86/kernel/cpu/resctrl/core.c
>>>> +++ b/arch/x86/kernel/cpu/resctrl/core.c
>>>> @@ -152,6 +152,7 @@ static inline void cache_alloc_hsw_probe(void)
>>>> r->cache.cbm_len = 20;
>>>> r->cache.shareable_bits = 0xc0000;
>>>> r->cache.min_cbm_bits = 2;
>>>> + r->cache.arch_has_sparse_bitmaps = false;
>>>
>>> Is this change required?
>>>
>>> This is always set to false in rdt_init_res_defs_intel().
>>
>> The logic behind moving this variable initialization from
>> rdt_init_res_defs_intel() into both cache_alloc_hsw_probe() and
>> rdt_get_cache_alloc_cfg() is that the variable doesn't really have a
>> default value anymore. It used to when the CPUID.0x10.1:ECX[3] and
>> CPUID.0x10.2:ECX[3] bits were reserved.
>>
>> Now for the general case the variable is dependent on CPUID output.
>> And only for Haswell case it needs to be hardcoded to "false", so the
>> assignment makes more sense in Haswell probe rather than in the default
>> section.
>
> Here is the current sequence order with your change.
>
> 1.
> resctrl_late_init -> check_quirks -> __check_quirks_intel ->
> cache_alloc_hsw_probe
> r->cache.arch_has_sparse_bitmaps = false; (new code)
>
> 2. resctrl_late_init -> rdt_init_res_defs -> rdt_init_res_defs_intel
> r->cache.arch_has_sparse_bitmaps = false; (old code)
>
> 3. resctrl_late_init -> get_rdt_resources -> get_rdt_alloc_resources ->
> rdt_get_cache_alloc_cfg
> r->cache.arch_has_sparse_bitmaps = ecx.split.noncont; (new code)
>
> The code in (3) is going to overwrite whatever is set in (1) or (2).
>
> I would say you can just remove initialization in both (1) and (2). That
> makes the code clearer to me. I assume reserved bits in Intel is always 0.
>
I believe Maciej already addressed this in his response to a similar question
from Peter. Please see:
https://lore.kernel.org/lkml/xnjmmsj5pjskbqeynor2ztha5dmkhxa44j764ohtjhtywy7idb@soobjiql4liy/
Reinette
next prev parent reply other threads:[~2023-09-28 15:54 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-09-22 8:47 [PATCH v2 0/4] x86/resctrl: Non-contiguous bitmasks " Maciej Wieczor-Retman
2023-09-22 8:48 ` [PATCH v2 1/4] x86/resctrl: Enable non-contiguous bits " Maciej Wieczor-Retman
2023-09-22 14:14 ` Peter Newman
2023-09-27 9:20 ` Maciej Wieczór-Retman
2023-09-27 10:08 ` Peter Newman
2023-09-27 10:44 ` Maciej Wieczór-Retman
2023-09-27 15:03 ` Tony Luck
2023-09-27 22:34 ` Moger, Babu
2023-09-28 7:06 ` Maciej Wieczór-Retman
2023-09-28 15:08 ` Moger, Babu
2023-09-28 15:53 ` Reinette Chatre [this message]
2023-09-28 16:28 ` Moger, Babu
2023-09-22 8:48 ` [PATCH v2 2/4] x86/resctrl: Add sparse_masks file in info Maciej Wieczor-Retman
2023-09-28 20:47 ` Reinette Chatre
2023-09-29 6:22 ` Maciej Wieczór-Retman
2023-09-22 8:48 ` [PATCH v2 3/4] Documentation/x86: Document resctrl's new sparse_masks Maciej Wieczor-Retman
2023-09-27 22:47 ` Moger, Babu
2023-09-27 22:58 ` Reinette Chatre
2023-09-27 23:02 ` Fenghua Yu
2023-09-28 13:59 ` Moger, Babu
2023-09-22 8:48 ` [PATCH v2 4/4] x86/resctrl: Rename arch_has_sparse_bitmaps Maciej Wieczor-Retman
2023-09-28 20:47 ` Reinette Chatre
2023-09-29 6:20 ` Maciej Wieczór-Retman
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=8a5d1211-8acb-762d-ae36-bf508b082ef4@intel.com \
--to=reinette.chatre@intel.com \
--cc=babu.moger@amd.com \
--cc=bp@alien8.de \
--cc=dave.hansen@linux.intel.com \
--cc=fenghua.yu@intel.com \
--cc=hpa@zytor.com \
--cc=linux-kernel@vger.kernel.org \
--cc=maciej.wieczor-retman@intel.com \
--cc=mingo@redhat.com \
--cc=tglx@linutronix.de \
--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®