[RFC PATCH 05/20] x86/intel_rdt: Print more accurate pseudo-locking availability

From: Reinette Chatre
Date: Mon Nov 13 2017 - 19:42:41 EST


A region of cache is considered available for pseudo-locking when:
* Cache area is in use by default COS.
* Cache area is NOT in use by any other (other than default) COS.
* Cache area is not shared with any other entity. Specifically, the
cache area does not appear in "Bitmask of Shareable Resource with Other
executing entities" found in EBX during CAT enumeration.
* Cache area is not currently pseudo-locked.

At this time the first three tests are possible and we update the "avail"
file associated with pseudo-locking to print a more accurate reflection
of pseudo-locking availability.

Signed-off-by: Reinette Chatre <reinette.chatre@xxxxxxxxx>
---
arch/x86/kernel/cpu/intel_rdt_pseudo_lock.c | 62 ++++++++++++++++++++++++++++-
1 file changed, 61 insertions(+), 1 deletion(-)

diff --git a/arch/x86/kernel/cpu/intel_rdt_pseudo_lock.c b/arch/x86/kernel/cpu/intel_rdt_pseudo_lock.c
index ad8b97747024..a787a103c432 100644
--- a/arch/x86/kernel/cpu/intel_rdt_pseudo_lock.c
+++ b/arch/x86/kernel/cpu/intel_rdt_pseudo_lock.c
@@ -26,9 +26,69 @@

static struct kernfs_node *pseudo_lock_kn;

+/**
+ * pseudo_lock_avail_get - return bitmask of cache available for locking
+ * @r: resource to which this cache instance belongs
+ * @d: domain representing the cache instance
+ *
+ * Availability for pseudo-locking is determined as follows:
+ * * Cache area is in use by default COS.
+ * * Cache area is NOT in use by any other (other than default) COS.
+ * * Cache area is not shared with any other entity. Specifically, the
+ * cache area does not appear in "Bitmask of Shareable Resource with Other
+ * executing entities" found in EBX during CAT enumeration.
+ *
+ * Below is also required to determine availability and will be
+ * added in later:
+ * * Cache area is not currently pseudo-locked.
+ *
+ * LOCKING:
+ * rdtgroup_mutex is expected to be held when called
+ *
+ * RETURNS:
+ * Bitmask representing region of cache that can be locked, zero if nothing
+ * available.
+ */
+static u32 pseudo_lock_avail_get(struct rdt_resource *r, struct rdt_domain *d)
+{
+ u32 avail;
+ int i;
+
+ lockdep_assert_held(&rdtgroup_mutex);
+
+ avail = d->ctrl_val[0];
+ for (i = 1; i < r->num_closid; i++) {
+ if (closid_allocated(i))
+ avail &= ~d->ctrl_val[i];
+ }
+ avail &= ~r->cache.shareable_bits;
+
+ return avail;
+}
+
static int pseudo_lock_avail_show(struct seq_file *sf, void *v)
{
- seq_puts(sf, "0\n");
+ struct rdt_resource *r;
+ struct rdt_domain *d;
+ bool sep;
+
+ mutex_lock(&rdtgroup_mutex);
+
+ for_each_alloc_enabled_rdt_resource(r) {
+ sep = false;
+ seq_printf(sf, "%s:", r->name);
+ list_for_each_entry(d, &r->domains, list) {
+ if (sep)
+ seq_puts(sf, ";");
+ seq_printf(sf, "%d=%x", d->id,
+ pseudo_lock_avail_get(r, d));
+ sep = true;
+ }
+ seq_puts(sf, "\n");
+ }
+
+ mutex_unlock(&rdtgroup_mutex);
+
return 0;
}

--
2.13.5