mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 02:30:34 +02:00 
			
		
		
		
	Clean up the MIPS kvm_exit trace event so that the exit reasons are specified in a trace friendly way (via __print_symbolic), and so that the exit reasons that derive straight from Cause.ExcCode values map directly, allowing a single trace_kvm_exit() call to replace a bunch of individual ones. Signed-off-by: James Hogan <james.hogan@imgtec.com> Cc: Paolo Bonzini <pbonzini@redhat.com> Cc: Radim Krčmář <rkrcmar@redhat.com> Cc: Ralf Baechle <ralf@linux-mips.org> Cc: Steven Rostedt <rostedt@goodmis.org> Cc: Ingo Molnar <mingo@redhat.com> Cc: kvm@vger.kernel.org Cc: linux-mips@linux-mips.org Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
		
			
				
	
	
		
			63 lines
		
	
	
	
		
			1.1 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			63 lines
		
	
	
	
		
			1.1 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
/*
 | 
						|
 * 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.
 | 
						|
 *
 | 
						|
 * KVM/MIPS: COP0 access histogram
 | 
						|
 *
 | 
						|
 * Copyright (C) 2012  MIPS Technologies, Inc.  All rights reserved.
 | 
						|
 * Authors: Sanjay Lal <sanjayl@kymasys.com>
 | 
						|
 */
 | 
						|
 | 
						|
#include <linux/kvm_host.h>
 | 
						|
 | 
						|
char *kvm_cop0_str[N_MIPS_COPROC_REGS] = {
 | 
						|
	"Index",
 | 
						|
	"Random",
 | 
						|
	"EntryLo0",
 | 
						|
	"EntryLo1",
 | 
						|
	"Context",
 | 
						|
	"PG Mask",
 | 
						|
	"Wired",
 | 
						|
	"HWREna",
 | 
						|
	"BadVAddr",
 | 
						|
	"Count",
 | 
						|
	"EntryHI",
 | 
						|
	"Compare",
 | 
						|
	"Status",
 | 
						|
	"Cause",
 | 
						|
	"EXC PC",
 | 
						|
	"PRID",
 | 
						|
	"Config",
 | 
						|
	"LLAddr",
 | 
						|
	"Watch Lo",
 | 
						|
	"Watch Hi",
 | 
						|
	"X Context",
 | 
						|
	"Reserved",
 | 
						|
	"Impl Dep",
 | 
						|
	"Debug",
 | 
						|
	"DEPC",
 | 
						|
	"PerfCnt",
 | 
						|
	"ErrCtl",
 | 
						|
	"CacheErr",
 | 
						|
	"TagLo",
 | 
						|
	"TagHi",
 | 
						|
	"ErrorEPC",
 | 
						|
	"DESAVE"
 | 
						|
};
 | 
						|
 | 
						|
void kvm_mips_dump_stats(struct kvm_vcpu *vcpu)
 | 
						|
{
 | 
						|
#ifdef CONFIG_KVM_MIPS_DEBUG_COP0_COUNTERS
 | 
						|
	int i, j;
 | 
						|
 | 
						|
	kvm_info("\nKVM VCPU[%d] COP0 Access Profile:\n", vcpu->vcpu_id);
 | 
						|
	for (i = 0; i < N_MIPS_COPROC_REGS; i++) {
 | 
						|
		for (j = 0; j < N_MIPS_COPROC_SEL; j++) {
 | 
						|
			if (vcpu->arch.cop0->stat[i][j])
 | 
						|
				kvm_info("%s[%d]: %lu\n", kvm_cop0_str[i], j,
 | 
						|
					 vcpu->arch.cop0->stat[i][j]);
 | 
						|
		}
 | 
						|
	}
 | 
						|
#endif
 | 
						|
}
 |