1
0
Fork 0
mirror of synced 2025-03-06 20:59:54 +01:00

x86/resctrl: Fix kernel-doc in internal.h

Add description of undocumented parameters. Issues detected by
scripts/kernel-doc.

Signed-off-by: Fabio M. De Francesco <fmdefrancesco@gmail.com>
Signed-off-by: Borislav Petkov <bp@suse.de>
Reviewed-by: Reinette Chatre <reinette.chatre@intel.com>
Link: https://lkml.kernel.org/r/20210618223206.29539-1-fmdefrancesco@gmail.com
This commit is contained in:
Fabio M. De Francesco 2021-06-19 00:32:06 +02:00 committed by Borislav Petkov
parent f9b871c89a
commit fd2afa70ef

View file

@ -70,6 +70,7 @@ DECLARE_STATIC_KEY_FALSE(rdt_mon_enable_key);
* struct mon_evt - Entry in the event list of a resource * struct mon_evt - Entry in the event list of a resource
* @evtid: event id * @evtid: event id
* @name: name of the event * @name: name of the event
* @list: entry in &rdt_resource->evt_list
*/ */
struct mon_evt { struct mon_evt {
u32 evtid; u32 evtid;
@ -78,10 +79,13 @@ struct mon_evt {
}; };
/** /**
* struct mon_data_bits - Monitoring details for each event file * union mon_data_bits - Monitoring details for each event file
* @rid: Resource id associated with the event file. * @priv: Used to store monitoring event data in @u
* as kernfs private data
* @rid: Resource id associated with the event file
* @evtid: Event id associated with the event file * @evtid: Event id associated with the event file
* @domid: The domain to which the event file belongs * @domid: The domain to which the event file belongs
* @u: Name of the bit fields struct
*/ */
union mon_data_bits { union mon_data_bits {
void *priv; void *priv;
@ -119,6 +123,7 @@ enum rdt_group_type {
* @RDT_MODE_PSEUDO_LOCKSETUP: Resource group will be used for Pseudo-Locking * @RDT_MODE_PSEUDO_LOCKSETUP: Resource group will be used for Pseudo-Locking
* @RDT_MODE_PSEUDO_LOCKED: No sharing of this resource group's allocations * @RDT_MODE_PSEUDO_LOCKED: No sharing of this resource group's allocations
* allowed AND the allocations are Cache Pseudo-Locked * allowed AND the allocations are Cache Pseudo-Locked
* @RDT_NUM_MODES: Total number of modes
* *
* The mode of a resource group enables control over the allowed overlap * The mode of a resource group enables control over the allowed overlap
* between allocations associated with different resource groups (classes * between allocations associated with different resource groups (classes
@ -142,7 +147,7 @@ enum rdtgrp_mode {
/** /**
* struct mongroup - store mon group's data in resctrl fs. * struct mongroup - store mon group's data in resctrl fs.
* @mon_data_kn kernlfs node for the mon_data directory * @mon_data_kn: kernfs node for the mon_data directory
* @parent: parent rdtgrp * @parent: parent rdtgrp
* @crdtgrp_list: child rdtgroup node list * @crdtgrp_list: child rdtgroup node list
* @rmid: rmid for this rdtgroup * @rmid: rmid for this rdtgroup
@ -282,11 +287,11 @@ struct rftype {
/** /**
* struct mbm_state - status for each MBM counter in each domain * struct mbm_state - status for each MBM counter in each domain
* @chunks: Total data moved (multiply by rdt_group.mon_scale to get bytes) * @chunks: Total data moved (multiply by rdt_group.mon_scale to get bytes)
* @prev_msr Value of IA32_QM_CTR for this RMID last time we read it * @prev_msr: Value of IA32_QM_CTR for this RMID last time we read it
* @prev_bw_msr:Value of previous IA32_QM_CTR for bandwidth counting * @prev_bw_msr:Value of previous IA32_QM_CTR for bandwidth counting
* @prev_bw The most recent bandwidth in MBps * @prev_bw: The most recent bandwidth in MBps
* @delta_bw Difference between the current and previous bandwidth * @delta_bw: Difference between the current and previous bandwidth
* @delta_comp Indicates whether to compute the delta_bw * @delta_comp: Indicates whether to compute the delta_bw
*/ */
struct mbm_state { struct mbm_state {
u64 chunks; u64 chunks;
@ -456,11 +461,13 @@ struct rdt_parse_data {
* @data_width: Character width of data when displaying * @data_width: Character width of data when displaying
* @domains: All domains for this resource * @domains: All domains for this resource
* @cache: Cache allocation related data * @cache: Cache allocation related data
* @membw: If the component has bandwidth controls, their properties.
* @format_str: Per resource format string to show domain value * @format_str: Per resource format string to show domain value
* @parse_ctrlval: Per resource function pointer to parse control values * @parse_ctrlval: Per resource function pointer to parse control values
* @evt_list: List of monitoring events * @evt_list: List of monitoring events
* @num_rmid: Number of RMIDs available * @num_rmid: Number of RMIDs available
* @mon_scale: cqm counter * mon_scale = occupancy in bytes * @mon_scale: cqm counter * mon_scale = occupancy in bytes
* @mbm_width: Monitor width, to detect and correct for overflow.
* @fflags: flags to choose base and info files * @fflags: flags to choose base and info files
*/ */
struct rdt_resource { struct rdt_resource {