[PATCH] mm/damon: do not break the string for damos_stat tracepoint
From: SeongJae Park
Date: Wed Dec 17 2025 - 18:42:06 EST
The format string for damos_stat tracepoint is broken up to multiple
lines. Strings shouldn't be broken up due to the column limit, though.
Update the string to be put on a single line.
Suggested-by: Steven Rostedt (Google) <rostedt@xxxxxxxxxxx>
Signed-off-by: SeongJae Park <sj@xxxxxxxxxx>
---
include/trace/events/damon.h | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/include/trace/events/damon.h b/include/trace/events/damon.h
index 24fc402ab3c8..bf25ee07cb48 100644
--- a/include/trace/events/damon.h
+++ b/include/trace/events/damon.h
@@ -40,9 +40,7 @@ TRACE_EVENT(damos_stat_after_apply_interval,
__entry->nr_snapshots = stat->nr_snapshots;
),
- TP_printk("ctx_idx=%u scheme_idx=%u nr_tried=%lu sz_tried=%lu "
- "nr_applied=%lu sz_tried=%lu sz_ops_filter_passed=%lu "
- "qt_exceeds=%lu nr_snapshots=%lu",
+ TP_printk("ctx_idx=%u scheme_idx=%u nr_tried=%lu sz_tried=%lu nr_applied=%lu sz_tried=%lu sz_ops_filter_passed=%lu qt_exceeds=%lu nr_snapshots=%lu",
__entry->context_idx, __entry->scheme_idx,
__entry->nr_tried, __entry->sz_tried,
__entry->nr_applied, __entry->sz_applied,
--
2.47.3