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/20230907022929.91361-12-sj@kernel.org Signed-off-by: SeongJae Park <sj@kernel.org> Cc: Jonathan Corbet <corbet@lwn.net> Cc: Steven Rostedt (Google) <rostedt@goodmis.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
This commit is contained in:
parent
cf0a96bd3a
commit
2d00946bd7
@ -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)
|
||||
|
||||
@ -776,7 +776,7 @@ static void kdamond_reset_aggregated(struct damon_ctx *c)
|
||||
struct damon_region *r;
|
||||
|
||||
damon_for_each_region(r, t) {
|
||||
trace_damon_aggregated(t, ti, r, damon_nr_regions(t));
|
||||
trace_damon_aggregated(ti, r, damon_nr_regions(t));
|
||||
r->last_nr_accesses = r->nr_accesses;
|
||||
r->nr_accesses = 0;
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user