mirror of
				https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
				synced 2025-10-31 08:26:29 +00:00 
			
		
		
		
	 f72c1a931e
			
		
	
	
		f72c1a931e
		
	
	
	
	
		
			
			Store the kernel and user contexts from the generic layer instead of archs, this gathers some repetitive code. Signed-off-by: Frederic Weisbecker <fweisbec@gmail.com> Acked-by: Paul Mackerras <paulus@samba.org> Tested-by: Will Deacon <will.deacon@arm.com> Cc: Ingo Molnar <mingo@elte.hu> Cc: Peter Zijlstra <a.p.zijlstra@chello.nl> Cc: Arnaldo Carvalho de Melo <acme@redhat.com> Cc: Stephane Eranian <eranian@google.com> Cc: David Miller <davem@davemloft.net> Cc: Paul Mundt <lethal@linux-sh.org> Cc: Borislav Petkov <bp@amd64.org>
		
			
				
	
	
		
			54 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			54 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
|  * Performance event callchain support - SuperH architecture code
 | |
|  *
 | |
|  * Copyright (C) 2009  Paul Mundt
 | |
|  *
 | |
|  * This file is subject to the terms and conditions of the GNU General Public
 | |
|  * License.  See the file "COPYING" in the main directory of this archive
 | |
|  * for more details.
 | |
|  */
 | |
| #include <linux/kernel.h>
 | |
| #include <linux/sched.h>
 | |
| #include <linux/perf_event.h>
 | |
| #include <linux/percpu.h>
 | |
| #include <asm/unwinder.h>
 | |
| #include <asm/ptrace.h>
 | |
| 
 | |
| 
 | |
| static void callchain_warning(void *data, char *msg)
 | |
| {
 | |
| }
 | |
| 
 | |
| static void
 | |
| callchain_warning_symbol(void *data, char *msg, unsigned long symbol)
 | |
| {
 | |
| }
 | |
| 
 | |
| static int callchain_stack(void *data, char *name)
 | |
| {
 | |
| 	return 0;
 | |
| }
 | |
| 
 | |
| static void callchain_address(void *data, unsigned long addr, int reliable)
 | |
| {
 | |
| 	struct perf_callchain_entry *entry = data;
 | |
| 
 | |
| 	if (reliable)
 | |
| 		perf_callchain_store(entry, addr);
 | |
| }
 | |
| 
 | |
| static const struct stacktrace_ops callchain_ops = {
 | |
| 	.warning	= callchain_warning,
 | |
| 	.warning_symbol	= callchain_warning_symbol,
 | |
| 	.stack		= callchain_stack,
 | |
| 	.address	= callchain_address,
 | |
| };
 | |
| 
 | |
| void
 | |
| perf_callchain_kernel(struct perf_callchain_entry *entry, struct pt_regs *regs)
 | |
| {
 | |
| 	perf_callchain_store(entry, regs->pc);
 | |
| 
 | |
| 	unwind_stack(NULL, regs, NULL, &callchain_ops, entry);
 | |
| }
 |