summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorSJ Park <sj@kernel.org>2026-06-28 15:08:04 -0700
committerAndrew Morton <akpm@linux-foundation.org>2026-07-01 19:02:55 -0700
commit968a672b99387c75585f5dfa623ac405f3e351e5 (patch)
tree584cc337b7dbc5811ac669ffe0fe77f94cde43e9 /include
parent48a926cb6788afa2a528c2f59cead87f1e3d6e30 (diff)
mm/damon: add a kernel-doc comment for damon_ctx->rnd_state
Fix below kernel document build warning: WARNING: ../include/linux/damon.h:909 struct member 'rnd_state' not described in 'damon_ctx' Link: https://lore.kernel.org/20260628220808.98931-3-sj@kernel.org Fixes: 9012c4e647df ("mm/damon: replace damon_rand() with a per-ctx lockless PRNG") Signed-off-by: SJ Park <sj@kernel.org> Reported-by: Randy Dunlap <rdunlap@infradead.org> Closes: https://lore.kernel.org/4df95955-b255-4e5a-90c4-35db02f3111f@infradead.org Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Diffstat (limited to 'include')
-rw-r--r--include/linux/damon.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/damon.h b/include/linux/damon.h
index fdac40cd55d4..02ac34537df9 100644
--- a/include/linux/damon.h
+++ b/include/linux/damon.h
@@ -849,6 +849,7 @@ struct damon_attrs {
* @pause: Pause kdamond main loop.
* @adaptive_targets: Head of monitoring targets (&damon_target) list.
* @schemes: Head of schemes (&damos) list.
+ * @rnd_state: Per-ctx PRNG state for damon_rand().
*/
struct damon_ctx {
struct damon_attrs attrs;
@@ -906,7 +907,6 @@ struct damon_ctx {
struct list_head adaptive_targets;
struct list_head schemes;
- /* Per-ctx PRNG state for damon_rand(); kdamond is the sole consumer. */
struct rnd_state rnd_state;
};