From: Babu Moger <babu.moger@amd.com>
To: Reinette Chatre <reinette.chatre@intel.com>,
corbet@lwn.net, tony.luck@intel.com, Dave.Martin@arm.com,
james.morse@arm.com, tglx@kernel.org, bp@alien8.de,
ben.horgan@arm.com, fenghuay@nvidia.com
Cc: skhan@linuxfoundation.org, x86@kernel.org, mingo@redhat.com,
dave.hansen@linux.intel.com, hpa@zytor.com,
akpm@linux-foundation.org, rdunlap@infradead.org,
peterz@infradead.org, feng.tang@linux.alibaba.com,
dapeng1.mi@linux.intel.com, elver@google.com,
enelsonmoore@gmail.com, kuba@kernel.org, ebiggers@kernel.org,
lirongqing@baidu.com, seanjc@google.com, nikunj@amd.com,
xin@zytor.com, pawan.kumar.gupta@linux.intel.com,
tiala@microsoft.com, chang.seok.bae@intel.com,
kprateek.nayak@amd.com, prathyushi.nangia@amd.com,
kim.phillips@amd.com, naveen@kernel.org, darwi@linutronix.de,
elena.reshetova@intel.com, linux-doc@vger.kernel.org,
linux-kernel@vger.kernel.org, thomas.lendacky@amd.com,
eranian@google.com, peternewman@google.com,
qinyuntan@linux.alibaba.com
Subject: Re: [RESEND PATCH v4 12/15] fs/resctrl: Hide kmode_cpus[_list] on groups not bound to kernel-mode
Date: Thu, 13 Aug 2026 15:07:00 -0500 [thread overview]
Message-ID: <a2429484-9275-490f-baa3-638e2b8f0bb9@amd.com> (raw)
In-Reply-To: <0126a5e5-48cf-416f-a21b-c231a703c18b@intel.com>
Hi Reinette,
On 8/10/26 22:30, Reinette Chatre wrote:
> Hi Babu,
>
> On 7/7/26 2:50 PM, Babu Moger wrote:
>> kmode_cpus and kmode_cpus_list describe the CPU scope for the rdtgroup that
>> owns the active kernel-mode binding. They are meaningful only for
>> resctrl_kcfg.k_rdtgrp.
>>
>> On groups that do not own the kernel-mode binding, they appear as inactive
>> stubs and can let user space inspect or update state that does not apply to
>> that group.
>>
>> Hide kmode_cpus and kmode_cpus_list on groups that are not bound to
>> kernel-mode. Keep the files hidden when groups are created, show them when
>> rdtgroup_config_kmode() binds the group, and hide them again when the
>> binding is released.
>>
>> Signed-off-by: Babu Moger <babu.moger@amd.com>
>> ---
>> v4: Updated the changelog and code comments.
>>
>> v3: New patch to hide/show "kmode_cpus" and "kmode_cpus_list" when kernel
>> modes binding changes.
>> ---
>> fs/resctrl/rdtgroup.c | 33 +++++++++++++++++++++++++++++++++
>> 1 file changed, 33 insertions(+)
>>
>> diff --git a/fs/resctrl/rdtgroup.c b/fs/resctrl/rdtgroup.c
>> index 413d3ff14546..c537846d9264 100644
>> --- a/fs/resctrl/rdtgroup.c
>> +++ b/fs/resctrl/rdtgroup.c
>> @@ -1127,6 +1127,35 @@ static int resctrl_kernel_mode_show(struct kernfs_open_file *of,
>> return ret;
>> }
>>
>> +/**
>> + * resctrl_kmode_files_set_visible() - Toggle visibility of the per-group
>> + * kernel-mode CPU files under @rdtgrp.
>> + * @rdtgrp: Resctrl group whose "kmode_cpus" / "kmode_cpus_list" files
>> + * should be hidden or shown.
>> + * @visible: %true to expose the files, %false to hide them via
>> + * kernfs_show().
>> + *
>> + * Each file is resolved independently as a sibling under @rdtgrp->kn.
>> + * Failures from kernfs_find_and_get() are deliberately ignored, allowing
>> + * callers to invoke this before activation, during group creation, or when
>> + * the kernel-mode binding is updated.
>> + */
>> +static void resctrl_kmode_files_set_visible(struct rdtgroup *rdtgrp, bool visible)
>> +{
>> + /* Keep in sync with res_common_files[] entries for these files. */
>> + static const char * const files[] = { "kmode_cpus", "kmode_cpus_list" };
>> + struct kernfs_node *kn;
>> + int i;
>> +
>> + for (i = 0; i < ARRAY_SIZE(files); i++) {
>> + kn = kernfs_find_and_get(rdtgrp->kn, files[i]);
>> + if (!kn)
>> + continue;
>> + kernfs_show(kn, visible);
>> + kernfs_put(kn);
>> + }
>> +}
>> +
>> /**
>> * rdtgroup_config_kmode_reset() - Tear down the kernel-mode binding on @rdtgrp
>> * @rdtgrp: Resctrl group whose kernel-mode binding is being released.
>> @@ -1155,6 +1184,7 @@ static void rdtgroup_config_kmode_reset(struct rdtgroup *rdtgrp,
>>
>> out_clear:
>> cpumask_clear(&rdtgrp->kmode_cpu_mask);
>> + resctrl_kmode_files_set_visible(rdtgrp, false);
>> rdtgrp->kmode = false;
>> }
>>
>> @@ -3068,6 +3098,7 @@ static int rdt_get_tree(struct fs_context *fc)
>> if (ret)
>> goto out_closid_exit;
>>
>> + resctrl_kmode_files_set_visible(&rdtgroup_default, false);
>> kernfs_activate(rdtgroup_default.kn);
>>
>> ret = rdtgroup_create_info_dir(rdtgroup_default.kn);
>> @@ -4098,6 +4129,7 @@ static int rdtgroup_mkdir_mon(struct kernfs_node *parent_kn,
>> goto out_unlock;
>> }
>>
>> + resctrl_kmode_files_set_visible(rdtgrp, false);
>> kernfs_activate(rdtgrp->kn);
>>
>> /*
>> @@ -4142,6 +4174,7 @@ static int rdtgroup_mkdir_ctrl_mon(struct kernfs_node *parent_kn,
>> if (ret)
>> goto out_closid_free;
>>
>> + resctrl_kmode_files_set_visible(rdtgrp, false);
>> kernfs_activate(rdtgrp->kn);
>>
>> ret = rdtgroup_init_alloc(rdtgrp);
>
> Sprinkling these resctrl_kmode_files_set_visible() in every path that creates these files
> seem error prone. Could this be simplified with a new, for example, rftype::create_hidden that
> will instruct the file to be created hidden. This would just create the file correctly from the
> beginning and eliminate these calls that go back and "fix things up" for kernel mode use. This may
> also eliminate the need to ignore errors in resctrl_kmode_files_set_visible() making this
> more robust while making it obvious how the file visibility is actually connected to the
> kernel mode since that would be the only points where the file visibility is changed.
>
Already discussed to create the hidden files for all the groups during
the group creation. Then call resctrl_kmode_files_set_visible() based on
visibility requirement when group is added/removed from global kernel mode.
https://lore.kernel.org/lkml/98568620-7e61-4d43-b72c-5866a7d3bca1@intel.com/.
Thanks
Babu
next prev parent reply other threads:[~2026-08-13 20:07 UTC|newest]
Thread overview: 79+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-07-07 21:50 [RESEND PATCH v4 00/15] x86/resctrl: Add kernel-mode (e.g., PLZA) support to the resctrl subsystem Babu Moger
2026-07-07 21:50 ` [RESEND PATCH v4 01/15] x86/resctrl: Support Privilege Level Zero Association (PLZA) Babu Moger
2026-07-07 22:01 ` Borislav Petkov
2026-07-08 14:51 ` Babu Moger
2026-07-08 17:27 ` Borislav Petkov
2026-07-08 16:55 ` Babu Moger
2026-07-08 23:28 ` Borislav Petkov
2026-07-09 0:00 ` Namhyung Kim
2026-07-09 0:12 ` Borislav Petkov
2026-07-10 0:55 ` Namhyung Kim
2026-07-10 1:46 ` Borislav Petkov
2026-08-11 2:51 ` Reinette Chatre
2026-08-11 20:02 ` Babu Moger
2026-07-07 21:50 ` [RESEND PATCH v4 02/15] x86/resctrl: Add PLZA support to command-line options Babu Moger
2026-07-08 17:39 ` Babu Moger
2026-08-11 2:53 ` Reinette Chatre
2026-08-11 20:03 ` Babu Moger
2026-07-07 21:50 ` [RESEND PATCH v4 03/15] x86/resctrl: Add data structures and definitions for PLZA configuration Babu Moger
2026-07-08 20:20 ` Babu Moger
2026-08-11 2:58 ` Reinette Chatre
2026-08-11 21:10 ` Babu Moger
2026-08-11 23:51 ` Reinette Chatre
2026-08-12 14:18 ` Moger, Babu
2026-07-07 21:50 ` [RESEND PATCH v4 04/15] fs/resctrl: Introduce kernel mode (kmode) data structures Babu Moger
2026-07-08 20:56 ` Babu Moger
2026-08-11 3:03 ` Reinette Chatre
2026-08-12 19:58 ` Moger, Babu
2026-08-12 23:28 ` Reinette Chatre
2026-08-13 15:17 ` Babu Moger
2026-08-13 15:55 ` Reinette Chatre
2026-08-13 17:12 ` Babu Moger
2026-08-13 18:18 ` Reinette Chatre
2026-08-13 19:11 ` Babu Moger
2026-08-13 21:12 ` Reinette Chatre
2026-08-13 22:33 ` Moger, Babu
2026-07-07 21:50 ` [RESEND PATCH v4 05/15] x86,fs/resctrl: Introduce architecture hooks to program kernel-mode Babu Moger
2026-07-08 23:04 ` Moger, Babu
2026-08-11 3:14 ` Reinette Chatre
2026-08-12 22:11 ` Moger, Babu
2026-08-12 23:34 ` Reinette Chatre
2026-08-13 15:39 ` Babu Moger
2026-07-07 21:50 ` [RESEND PATCH v4 06/15] fs/resctrl: Introduce resctrl_set_kmode_support() to initialize supported modes Babu Moger
2026-08-11 3:16 ` Reinette Chatre
2026-08-12 22:28 ` Moger, Babu
2026-07-07 21:50 ` [RESEND PATCH v4 07/15] x86/resctrl: Expose the supported PLZA kernel-mode policies during init Babu Moger
2026-07-09 15:15 ` Babu Moger
2026-07-07 21:50 ` [RESEND PATCH v4 08/15] fs/resctrl: Add interface to display supported and active kernel-mode policy Babu Moger
2026-08-11 3:18 ` Reinette Chatre
2026-08-12 22:57 ` Moger, Babu
2026-08-12 23:38 ` Reinette Chatre
2026-08-13 16:04 ` Babu Moger
2026-08-13 18:23 ` Reinette Chatre
2026-07-07 21:50 ` [RESEND PATCH v4 09/15] fs/resctrl: Introduce kmode_cpus/kmode_cpus_list per rdtgroup Babu Moger
2026-08-11 3:20 ` Reinette Chatre
2026-08-13 17:57 ` Babu Moger
2026-08-13 18:19 ` Reinette Chatre
2026-08-13 19:27 ` Babu Moger
2026-08-13 20:49 ` Reinette Chatre
2026-08-13 22:41 ` Moger, Babu
2026-07-07 21:50 ` [RESEND PATCH v4 10/15] fs/resctrl: Reset the kernel-mode binding when an rdtgroup is removed Babu Moger
2026-07-09 18:15 ` Babu Moger
2026-08-11 3:29 ` Reinette Chatre
2026-08-13 19:48 ` Babu Moger
2026-07-07 21:50 ` [RESEND PATCH v4 11/15] fs/resctrl: Program kernel-mode binding when CPU comes online Babu Moger
2026-07-09 20:01 ` Babu Moger
2026-07-07 21:50 ` [RESEND PATCH v4 12/15] fs/resctrl: Hide kmode_cpus[_list] on groups not bound to kernel-mode Babu Moger
2026-08-11 3:30 ` Reinette Chatre
2026-08-13 20:07 ` Babu Moger [this message]
2026-07-07 21:50 ` [RESEND PATCH v4 13/15] fs/resctrl: Add interface to modify kernel-mode via info/kernel_mode Babu Moger
2026-07-09 22:46 ` Moger, Babu
2026-08-11 3:40 ` Reinette Chatre
2026-08-13 20:55 ` Babu Moger
2026-08-13 21:21 ` Reinette Chatre
2026-08-13 22:27 ` Moger, Babu
2026-07-07 21:50 ` [RESEND PATCH v4 14/15] fs/resctrl: Allow user space to write kmode_cpus/kmode_cpus_list Babu Moger
2026-07-09 23:14 ` Moger, Babu
2026-08-11 3:49 ` Reinette Chatre
2026-08-14 15:10 ` Moger, Babu
2026-07-07 21:50 ` [RESEND PATCH v4 15/15] fs/resctrl: Add documentation on kernel_mode with example Babu Moger
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=a2429484-9275-490f-baa3-638e2b8f0bb9@amd.com \
--to=babu.moger@amd.com \
--cc=Dave.Martin@arm.com \
--cc=akpm@linux-foundation.org \
--cc=ben.horgan@arm.com \
--cc=bp@alien8.de \
--cc=chang.seok.bae@intel.com \
--cc=corbet@lwn.net \
--cc=dapeng1.mi@linux.intel.com \
--cc=darwi@linutronix.de \
--cc=dave.hansen@linux.intel.com \
--cc=ebiggers@kernel.org \
--cc=elena.reshetova@intel.com \
--cc=elver@google.com \
--cc=enelsonmoore@gmail.com \
--cc=eranian@google.com \
--cc=feng.tang@linux.alibaba.com \
--cc=fenghuay@nvidia.com \
--cc=hpa@zytor.com \
--cc=james.morse@arm.com \
--cc=kim.phillips@amd.com \
--cc=kprateek.nayak@amd.com \
--cc=kuba@kernel.org \
--cc=linux-doc@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=lirongqing@baidu.com \
--cc=mingo@redhat.com \
--cc=naveen@kernel.org \
--cc=nikunj@amd.com \
--cc=pawan.kumar.gupta@linux.intel.com \
--cc=peternewman@google.com \
--cc=peterz@infradead.org \
--cc=prathyushi.nangia@amd.com \
--cc=qinyuntan@linux.alibaba.com \
--cc=rdunlap@infradead.org \
--cc=reinette.chatre@intel.com \
--cc=seanjc@google.com \
--cc=skhan@linuxfoundation.org \
--cc=tglx@kernel.org \
--cc=thomas.lendacky@amd.com \
--cc=tiala@microsoft.com \
--cc=tony.luck@intel.com \
--cc=x86@kernel.org \
--cc=xin@zytor.com \
/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®