|
@@ -122,6 +122,20 @@ struct mongroup {
|
|
|
u32 rmid;
|
|
|
};
|
|
|
|
|
|
+/**
|
|
|
+ * struct pseudo_lock_region - pseudo-lock region information
|
|
|
+ * @r: RDT resource to which this pseudo-locked region
|
|
|
+ * belongs
|
|
|
+ * @d: RDT domain to which this pseudo-locked region
|
|
|
+ * belongs
|
|
|
+ * @cbm: bitmask of the pseudo-locked region
|
|
|
+ */
|
|
|
+struct pseudo_lock_region {
|
|
|
+ struct rdt_resource *r;
|
|
|
+ struct rdt_domain *d;
|
|
|
+ u32 cbm;
|
|
|
+};
|
|
|
+
|
|
|
/**
|
|
|
* struct rdtgroup - store rdtgroup's data in resctrl file system.
|
|
|
* @kn: kernfs node
|
|
@@ -135,17 +149,19 @@ struct mongroup {
|
|
|
* monitor only or ctrl_mon group
|
|
|
* @mon: mongroup related data
|
|
|
* @mode: mode of resource group
|
|
|
+ * @plr: pseudo-locked region
|
|
|
*/
|
|
|
struct rdtgroup {
|
|
|
- struct kernfs_node *kn;
|
|
|
- struct list_head rdtgroup_list;
|
|
|
- u32 closid;
|
|
|
- struct cpumask cpu_mask;
|
|
|
- int flags;
|
|
|
- atomic_t waitcount;
|
|
|
- enum rdt_group_type type;
|
|
|
- struct mongroup mon;
|
|
|
- enum rdtgrp_mode mode;
|
|
|
+ struct kernfs_node *kn;
|
|
|
+ struct list_head rdtgroup_list;
|
|
|
+ u32 closid;
|
|
|
+ struct cpumask cpu_mask;
|
|
|
+ int flags;
|
|
|
+ atomic_t waitcount;
|
|
|
+ enum rdt_group_type type;
|
|
|
+ struct mongroup mon;
|
|
|
+ enum rdtgrp_mode mode;
|
|
|
+ struct pseudo_lock_region *plr;
|
|
|
};
|
|
|
|
|
|
/* rdtgroup.flags */
|
|
@@ -246,22 +262,24 @@ struct mbm_state {
|
|
|
* @mbps_val: When mba_sc is enabled, this holds the bandwidth in MBps
|
|
|
* @new_ctrl: new ctrl value to be loaded
|
|
|
* @have_new_ctrl: did user provide new_ctrl for this domain
|
|
|
+ * @plr: pseudo-locked region (if any) associated with domain
|
|
|
*/
|
|
|
struct rdt_domain {
|
|
|
- struct list_head list;
|
|
|
- int id;
|
|
|
- struct cpumask cpu_mask;
|
|
|
- unsigned long *rmid_busy_llc;
|
|
|
- struct mbm_state *mbm_total;
|
|
|
- struct mbm_state *mbm_local;
|
|
|
- struct delayed_work mbm_over;
|
|
|
- struct delayed_work cqm_limbo;
|
|
|
- int mbm_work_cpu;
|
|
|
- int cqm_work_cpu;
|
|
|
- u32 *ctrl_val;
|
|
|
- u32 *mbps_val;
|
|
|
- u32 new_ctrl;
|
|
|
- bool have_new_ctrl;
|
|
|
+ struct list_head list;
|
|
|
+ int id;
|
|
|
+ struct cpumask cpu_mask;
|
|
|
+ unsigned long *rmid_busy_llc;
|
|
|
+ struct mbm_state *mbm_total;
|
|
|
+ struct mbm_state *mbm_local;
|
|
|
+ struct delayed_work mbm_over;
|
|
|
+ struct delayed_work cqm_limbo;
|
|
|
+ int mbm_work_cpu;
|
|
|
+ int cqm_work_cpu;
|
|
|
+ u32 *ctrl_val;
|
|
|
+ u32 *mbps_val;
|
|
|
+ u32 new_ctrl;
|
|
|
+ bool have_new_ctrl;
|
|
|
+ struct pseudo_lock_region *plr;
|
|
|
};
|
|
|
|
|
|
/**
|