diff options
| author | SeongJae Park <[email protected]> | 2023-09-07 02:29:29 +0000 |
|---|---|---|
| committer | Andrew Morton <[email protected]> | 2023-10-04 10:32:21 -0700 |
| commit | 2d00946bd7f4e8c17cbd2fce5fd7c3ab58046dff (patch) | |
| tree | 764708748596497cf76a86dd7b342093586877f5 /include/trace | |
| parent | cf0a96bd3ab4d9d8a1c92baf1a822f2ddbca3a34 (diff) | |
mm/damon/core: remove 'struct target *' parameter from damon_aggregated tracepoint
damon_aggregateed tracepoint is receiving 'struct target *', but doesn't
use it. Remove it from the prototype.
Link: https://lkml.kernel.org/r/[email protected]
Signed-off-by: SeongJae Park <[email protected]>
Cc: Jonathan Corbet <[email protected]>
Cc: Steven Rostedt (Google) <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Diffstat (limited to 'include/trace')
| -rw-r--r-- | include/trace/events/damon.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/trace/events/damon.h b/include/trace/events/damon.h index c79f1d4c39af..0b8d13bde17a 100644 --- a/include/trace/events/damon.h +++ b/include/trace/events/damon.h @@ -11,10 +11,10 @@ TRACE_EVENT(damon_aggregated, - TP_PROTO(struct damon_target *t, unsigned int target_id, - struct damon_region *r, unsigned int nr_regions), + TP_PROTO(unsigned int target_id, struct damon_region *r, + unsigned int nr_regions), - TP_ARGS(t, target_id, r, nr_regions), + TP_ARGS(target_id, r, nr_regions), TP_STRUCT__entry( __field(unsigned long, target_id) |