mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: "Luck, Tony" <tony.luck@intel.com>
To: Reinette Chatre <reinette.chatre@intel.com>
Cc: Fenghua Yu <fenghuay@nvidia.com>,
	Maciej Wieczor-Retman <maciej.wieczor-retman@intel.com>,
	Peter Newman <peternewman@google.com>,
	James Morse <james.morse@arm.com>,
	Babu Moger <babu.moger@amd.com>,
	"Drew Fustini" <dfustini@baylibre.com>,
	Dave Martin <Dave.Martin@arm.com>, Chen Yu <yu.c.chen@intel.com>,
	David E Box <david.e.box@intel.com>, <x86@kernel.org>,
	Christoph Hellwig <hch@infradead.org>,
	<linux-kernel@vger.kernel.org>, <patches@lists.linux.dev>
Subject: Re: [PATCH v12 06/25] arm,x86,fs/resctrl: Replace architecture resctrl_arch_{alloc,mon}_capable()
Date: Fri, 25 Sep 2026 15:14:44 -0700	[thread overview]
Message-ID: <arbyVMoQOeCq5F_m@agluck-desk3> (raw)
In-Reply-To: <d0e563ec-65c4-4a00-bd54-61c30d80890f@intel.com>

Hi Reinette,

On Thu, Sep 24, 2026 at 08:22:47AM -0700, Reinette Chatre wrote:
> Hi Tony,
> 
> On 9/16/26 4:13 PM, Tony Luck wrote:
> > All the information to determine whether a system is alloc, or mon,
> > capable is available to the file system. Architecture helpers are not
> 
> nit: "is alloc, or mon, capable" -> "is capable of allocation or monitoring"?
> 
> > needed.
> > 
> > Define generic resctrl_alloc_capable() and resctrl_mon_capable() and
> > replace all architecture versions.
> > 
> > Suggested-by: Reinette Chatre <reinette.chatre@intel.com>
> > Signed-off-by: Tony Luck <tony.luck@intel.com>
> > ---
> 
> Please note that the pending RISC-V enabling [1] is not compatible with this
> change but there is a change planned that will let resctrl_alloc_capable()
> introduced here work on RISC-V also. We need to coordinate these two
> series.

The first few patches in this series have relatively simple cleanups
suggested. Perhaps when I post v13 you could focus on getting these to
the finish line and have Boris consider them for inclusion.

That would get this change into TIP x86/cache and let the RISC-V
folks move forward.

Note there will be one new patch in the initial sequence. The bug
fix for is_closid_match() that you suggested I separate out from
patch 9.

Draft version of new patch below.

> 
> | Reviewed-by: Reinette Chatre <reinette.chatre@intel.com>
> 
> Reinette
> 
> [1] https://lore.kernel.org/lkml/20260917-dfustini-atl-sc-cbqri-dt-v8-2-7964e8d73fe8@kernel.org/

-Tony

commit 986bf1a4e789de917e955fe549bdd71e51dc2e48
Author: Tony Luck <tony.luck@intel.com>
Date:   Thu Sep 24 12:40:41 2026 -0700

    fs/resctrl: Ensure default group reports tasks on monitor-only systems
    
    Sashiko reported[1]:
    
      This is a pre-existing issue, but the resctrl_alloc_capable() check in
      is_closid_match() actively breaks the default group on systems that only
      support monitoring capabilities.
      When a user reads the root /sys/fs/resctrl/tasks file on a system with
      monitoring capabilities but no allocation capabilities, the following call
      chain occurs:
      rdtgroup_tasks_show()
        show_rdt_tasks()
          is_closid_match()
      Since resctrl_alloc_capable() evaluates to false on such systems,
      is_closid_match() unconditionally returns false for all tasks. Furthermore,
      because the default group has type RDTCTRL_GROUP, is_rmid_match() will also
      return false.
      This causes the root tasks file to appear completely empty, hiding all tasks
      on the system that have not been explicitly moved to a monitoring group.
    
    Remove the resctrl_alloc_capable() check from is_closid_match().
    
    Fixes: e6b2fac36fcc ("x86/resctrl: Use is_closid_match() in more places")
    Suggested-by: Reinette Chatre <reinette.chatre@intel.com>
    Signed-off-by: Tony Luck <tony.luck@intel.com>
    Link: https://sashiko.dev/#/patchset/20260831174421.13921-1-tony.luck%40intel.com?part=9 # [1]
    ---
    v13:
            New patch (split from patch 9)

diff --git a/fs/resctrl/rdtgroup.c b/fs/resctrl/rdtgroup.c
index 5dcbb0a964e8..6733ed174f51 100644
--- a/fs/resctrl/rdtgroup.c
+++ b/fs/resctrl/rdtgroup.c
@@ -685,7 +685,7 @@ static int __rdtgroup_move_task(struct task_struct *tsk,
 
 static bool is_closid_match(struct task_struct *t, struct rdtgroup *r)
 {
-	return (resctrl_arch_alloc_capable() && (r->type == RDTCTRL_GROUP) &&
+	return (r->type == RDTCTRL_GROUP &&
 		resctrl_arch_match_closid(t, r->closid));
 }
 

  reply	other threads:[~2026-09-25 22:14 UTC|newest]

Thread overview: 72+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-09-16 23:12 [PATCH v12 00/25] Allow AET to use PMT as loadable module Tony Luck
2026-09-16 23:12 ` [PATCH v12 01/25] x86/cpufeatures: Add missing CQM feature dependency Tony Luck
2026-09-24 15:12   ` Reinette Chatre
2026-09-16 23:12 ` [PATCH v12 02/25] x86/resctrl: Check if monitoring features are supported Tony Luck
2026-09-24 15:13   ` Reinette Chatre
2026-09-16 23:12 ` [PATCH v12 03/25] x86/resctrl: Enumerate monitor features in rdt_get_l3_mon_config() Tony Luck
2026-09-24 15:15   ` Reinette Chatre
2026-09-16 23:12 ` [PATCH v12 04/25] x86/resctrl: Apply Intel MBM quirk from rdt_get_l3_mon_config() Tony Luck
2026-09-21 17:45   ` Babu Moger
2026-09-22 20:46     ` Luck, Tony
2026-09-24 15:23       ` Reinette Chatre
2026-09-24 15:17   ` Reinette Chatre
2026-09-16 23:13 ` [PATCH v12 05/25] x86/resctrl: Delete resctrl_cpu_detect() Tony Luck
2026-09-24 15:21   ` Reinette Chatre
2026-09-16 23:13 ` [PATCH v12 06/25] arm,x86,fs/resctrl: Replace architecture resctrl_arch_{alloc,mon}_capable() Tony Luck
2026-09-24 15:22   ` Reinette Chatre
2026-09-25 22:14     ` Luck, Tony [this message]
2026-09-26  0:11       ` Reinette Chatre
2026-09-16 23:13 ` [PATCH v12 07/25] x86/resctrl: Update special case for Intel Haswell enumeration Tony Luck
2026-09-24 15:27   ` Reinette Chatre
2026-09-16 23:13 ` [PATCH v12 08/25] x86/resctrl: Delete rdt_alloc_capable and rdt_mon_capable Tony Luck
2026-09-24 15:28   ` Reinette Chatre
2026-09-16 23:13 ` [PATCH v12 09/25] fs/resctrl: Remove redundant calls to resctrl_{alloc,mon}_capable() Tony Luck
2026-09-21 17:45   ` Babu Moger
2026-09-22 20:33     ` Luck, Tony
2026-09-24 15:30   ` Reinette Chatre
2026-09-16 23:13 ` [PATCH v12 10/25] x86/resctrl: Honor rdt=perf option to force enable AET perf events Tony Luck
2026-09-24 15:29   ` Reinette Chatre
2026-09-16 23:13 ` [PATCH v12 11/25] fs/resctrl: Add interface to disable a monitor event Tony Luck
2026-09-24 15:31   ` Reinette Chatre
2026-09-16 23:13 ` [PATCH v12 12/25] arm,x86,fs/resctrl: Allocate maximum needed rmid_ptrs[] Tony Luck
2026-09-21 17:45   ` Babu Moger
2026-09-22  0:30     ` Reinette Chatre
2026-09-22 13:09       ` Babu Moger
2026-09-24 15:37   ` Reinette Chatre
2026-09-16 23:13 ` [PATCH v12 13/25] arm,x86,fs/resctrl: Allocate right size for L3 monitor arrays Tony Luck
2026-09-24 20:30   ` Reinette Chatre
2026-09-16 23:13 ` [PATCH v12 14/25] fs/resctrl: Rebuild free RMID list on each mount Tony Luck
2026-09-21 17:45   ` Babu Moger
2026-09-22 20:30     ` Luck, Tony
2026-09-22 22:58       ` Moger, Babu
2026-09-22 23:07         ` Luck, Tony
2026-09-23 13:21           ` Moger, Babu
2026-09-16 23:13 ` [PATCH v12 15/25] x86,fs/resctrl: Handle systems where AET is the only resource Tony Luck
2026-09-24 20:41   ` Reinette Chatre
2026-09-25  0:06     ` Luck, Tony
2026-09-25 14:37       ` Reinette Chatre
2026-09-25 15:50         ` Luck, Tony
2026-09-25 16:39           ` Reinette Chatre
2026-09-25 18:02             ` Luck, Tony
2026-09-16 23:13 ` [PATCH v12 16/25] x86/resctrl: Add PMT registration API for AET enumeration callbacks Tony Luck
2026-09-24 20:43   ` Reinette Chatre
2026-09-16 23:13 ` [PATCH v12 17/25] platform/x86/intel/pmt: Register enumeration functions with resctrl Tony Luck
2026-09-24 20:46   ` Reinette Chatre
2026-09-16 23:13 ` [PATCH v12 18/25] x86/resctrl: Use registered function pointers for AET enumeration Tony Luck
2026-09-24 20:49   ` Reinette Chatre
2026-09-16 23:13 ` [PATCH v12 19/25] arm,x86,fs/resctrl: Enumerate AET on every resctrl mount Tony Luck
2026-09-24 20:53   ` Reinette Chatre
2026-09-16 23:13 ` [PATCH v12 20/25] x86/resctrl: Enforce system RMID limit on AET Tony Luck
2026-09-24 20:55   ` Reinette Chatre
2026-09-16 23:13 ` [PATCH v12 21/25] x86/resctrl: Export interface to report telemetry unbind/remove Tony Luck
2026-09-16 23:13 ` [PATCH v12 22/25] platform/x86/intel/pmt: Inform resctrl when MMIO maps are being removed Tony Luck
2026-09-18 16:29   ` [PATCH 12 22/25 UPDATED] " Tony Luck
2026-09-24 20:55     ` Reinette Chatre
2026-09-16 23:13 ` [PATCH v12 23/25] x86/resctrl: Require 64-bit x86 for resctrl support Tony Luck
2026-09-24 20:57   ` Reinette Chatre
2026-09-16 23:13 ` [PATCH v12 24/25] x86/resctrl: Simplify Kconfig options for resctrl Tony Luck
2026-09-24 20:59   ` Reinette Chatre
2026-09-16 23:13 ` [PATCH v12 25/25] x86,fs/resctrl: Document telemetry mount timing caveat Tony Luck
2026-09-24 21:00   ` Reinette Chatre
2026-09-17 16:32 ` [PATCH v12 00/25] Allow AET to use PMT as loadable module Luck, Tony
2026-09-17 21:23   ` Luck, Tony

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=arbyVMoQOeCq5F_m@agluck-desk3 \
    --to=tony.luck@intel.com \
    --cc=Dave.Martin@arm.com \
    --cc=babu.moger@amd.com \
    --cc=david.e.box@intel.com \
    --cc=dfustini@baylibre.com \
    --cc=fenghuay@nvidia.com \
    --cc=hch@infradead.org \
    --cc=james.morse@arm.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=maciej.wieczor-retman@intel.com \
    --cc=patches@lists.linux.dev \
    --cc=peternewman@google.com \
    --cc=reinette.chatre@intel.com \
    --cc=x86@kernel.org \
    --cc=yu.c.chen@intel.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®