public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2] fs/resctrl: fix domid loss precision issue
@ 2024-03-12  7:53 Rex Nie
  2024-03-14 15:25 ` 32bit resctrl? (was Re: [PATCH v2] fs/resctrl: fix domid loss precision issue) Reinette Chatre
  0 siblings, 1 reply; 14+ messages in thread
From: Rex Nie @ 2024-03-12  7:53 UTC (permalink / raw)
  To: james.morse
  Cc: fenghua.yu, reinette.chatre, ilpo.jarvinen, linux-kernel, Rex Nie

Below statement from mkdir_mondata_subdir function will loss precision,
because it assigns int to 14 bits bitfield.
	priv.u.domid = d->id;

On some platforms(e.g.,x86), the max cache_id is the amount of L3 caches,
so it is not in the range of 0x3fff. But some platforms use higher
cache_id, e.g., arm uses cache_id as locator for cache MSC. This will
cause below issue if cache_id > 0x3fff likes:
/sys/fs/resctrl/mon_groups/p1/mon_data/mon_L3_1048564 # cat llc_occupancy
cat: read error: No such file or directory

This is the call trace when cat llc_occupancy:
rdtgroup_mondata_show()
	domid = md.u.domid
	d = resctrl_arch_find_domain(r, domid)

d is null here because of lossing precision

Signed-off-by: Rex Nie <rex.nie@jaguarmicro.com>
---
 fs/resctrl/internal.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fs/resctrl/internal.h b/fs/resctrl/internal.h
index 7a6f46b4edd0..096317610949 100644
--- a/fs/resctrl/internal.h
+++ b/fs/resctrl/internal.h
@@ -94,7 +94,7 @@ union mon_data_bits {
 	struct {
 		unsigned int rid		: 10;
 		enum resctrl_event_id evtid	: 8;
-		unsigned int domid		: 14;
+		u32				domid;
 	} u;
 };
 
-- 
2.34.1


^ permalink raw reply related	[flat|nested] 14+ messages in thread

end of thread, other threads:[~2024-03-18 18:27 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-03-12  7:53 [PATCH v2] fs/resctrl: fix domid loss precision issue Rex Nie
2024-03-14 15:25 ` 32bit resctrl? (was Re: [PATCH v2] fs/resctrl: fix domid loss precision issue) Reinette Chatre
2024-03-15  0:04   ` Peter Newman
2024-03-15  0:51     ` Reinette Chatre
2024-03-15  1:21       ` 答复: " Rex Nie
2024-03-15  0:56     ` Rex Nie
2024-03-15 16:17   ` Moger, Babu
2024-03-15 16:56     ` Peter Newman
2024-03-15 18:00       ` James Morse
2024-03-15 22:42         ` Reinette Chatre
2024-03-18 18:27           ` James Morse
2024-03-15 23:32   ` Thomas Gleixner
2024-03-16  0:08     ` Luck, Tony
2024-03-16  0:20     ` Reinette Chatre

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox