mirror of
				git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
				synced 2025-09-18 22:14:16 +00:00 
			
		
		
		
	mm/damon: fix order of arguments in damos_before_apply tracepoint
Since the order of the scheme_idx and target_idx arguments in TP_ARGS is
reversed, they are stored in the trace record in reverse.
Link: https://lkml.kernel.org/r/20241115182023.43118-1-sj@kernel.org
Link: https://patch.msgid.link/20241112154828.40307-1-akinobu.mita@gmail.com
Fixes: c603c630b5 ("mm/damon/core: add a tracepoint for damos apply target regions")
Signed-off-by: Akinobu Mita <akinobu.mita@gmail.com>
Signed-off-by: SeongJae Park <sj@kernel.org>
Cc: Masami Hiramatsu <mhiramat@kernel.org>
Cc: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
Cc: Steven Rostedt <rostedt@goodmis.org>
Cc: <stable@vger.kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
			
			
This commit is contained in:
		
							parent
							
								
									5c3793604f
								
							
						
					
					
						commit
						6535b8669c
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		|  | @ -15,7 +15,7 @@ TRACE_EVENT_CONDITION(damos_before_apply, | ||||||
| 		unsigned int target_idx, struct damon_region *r, | 		unsigned int target_idx, struct damon_region *r, | ||||||
| 		unsigned int nr_regions, bool do_trace), | 		unsigned int nr_regions, bool do_trace), | ||||||
| 
 | 
 | ||||||
| 	TP_ARGS(context_idx, target_idx, scheme_idx, r, nr_regions, do_trace), | 	TP_ARGS(context_idx, scheme_idx, target_idx, r, nr_regions, do_trace), | ||||||
| 
 | 
 | ||||||
| 	TP_CONDITION(do_trace), | 	TP_CONDITION(do_trace), | ||||||
| 
 | 
 | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		
		Reference in a new issue
	
	 Akinobu Mita
						Akinobu Mita