Re: [PATCH v3] x86/resctrl: Fix kernel-doc in internal.h

From: Reinette Chatre
Date: Fri Jun 18 2021 - 16:37:12 EST


Hi Fabio,

On 6/16/2021 11:43 AM, Fabio M. De Francesco wrote:
@@ -78,10 +79,13 @@ struct mon_evt {
};
/**
- * struct mon_data_bits - Monitoring details for each event file
- * @rid: Resource id associated with the event file.
+ * union mon_data_bits - Monitoring details for each 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
* @domid: The domain to which the event file belongs
+ * @u: Name of the bit fields struct
*/
union mon_data_bits {
void *priv;

This hunk continues to be whitespace broken. You are adding tabs when existing comments use spaces. Please ensure that your changes fit with the current style in this area.

Reinette