Skip to content

Commit 025d5ac

Browse files
rddunlapIngo Molnar
authored andcommitted
x86/resctrl: Fix kernel-doc warnings
The kernel test robot reported kernel-doc warnings here: monitor.c:34: warning: Cannot understand * @rmid_free_lru A least recently used list of free RMIDs on line 34 - I thought it was a doc line monitor.c:41: warning: Cannot understand * @rmid_limbo_count count of currently unused but (potentially) on line 41 - I thought it was a doc line monitor.c:50: warning: Cannot understand * @rmid_entry - The entry in the limbo and free lists. on line 50 - I thought it was a doc line We don't have a syntax for documenting individual data items via kernel-doc, so remove the "/**" kernel-doc markers and add a hyphen for consistency. Fixes: 6a445ed ("x86/intel_rdt/cqm: Add RDT monitoring initialization") Fixes: 24247ae ("x86/intel_rdt/cqm: Improve limbo list processing") Reported-by: kernel test robot <lkp@intel.com> Signed-off-by: Randy Dunlap <rdunlap@infradead.org> Signed-off-by: Ingo Molnar <mingo@kernel.org> Link: https://lore.kernel.org/r/20231006235132.16227-1-rdunlap@infradead.org
1 parent 62d5e97 commit 025d5ac

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

arch/x86/kernel/cpu/resctrl/monitor.c

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,23 +30,23 @@ struct rmid_entry {
3030
struct list_head list;
3131
};
3232

33-
/**
34-
* @rmid_free_lru A least recently used list of free RMIDs
33+
/*
34+
* @rmid_free_lru - A least recently used list of free RMIDs
3535
* These RMIDs are guaranteed to have an occupancy less than the
3636
* threshold occupancy
3737
*/
3838
static LIST_HEAD(rmid_free_lru);
3939

40-
/**
41-
* @rmid_limbo_count count of currently unused but (potentially)
40+
/*
41+
* @rmid_limbo_count - count of currently unused but (potentially)
4242
* dirty RMIDs.
4343
* This counts RMIDs that no one is currently using but that
4444
* may have a occupancy value > resctrl_rmid_realloc_threshold. User can
4545
* change the threshold occupancy value.
4646
*/
4747
static unsigned int rmid_limbo_count;
4848

49-
/**
49+
/*
5050
* @rmid_entry - The entry in the limbo and free lists.
5151
*/
5252
static struct rmid_entry *rmid_ptrs;

0 commit comments

Comments
 (0)