debuggers.hg
changeset 9846:77afc93c7cad
[IA64] VTi: vtlb_insert: call panic_domain instead of panic
vtlb_insert: call panic_domain instead of panic if vrr.ps mismatch itir.ps.
Signed-off-by: Tristan Gingold <tristan.gingold@bull.net>
vtlb_insert: call panic_domain instead of panic if vrr.ps mismatch itir.ps.
Signed-off-by: Tristan Gingold <tristan.gingold@bull.net>
author | awilliam@xenbuild.aw |
---|---|
date | Thu Apr 13 14:48:09 2006 -0600 (2006-04-13) |
parents | 99e1c7f276ea |
children | cae4f6e6deab |
files | xen/arch/ia64/vmx/vtlb.c |
line diff
1.1 --- a/xen/arch/ia64/vmx/vtlb.c Thu Apr 13 14:44:39 2006 -0600 1.2 +++ b/xen/arch/ia64/vmx/vtlb.c Thu Apr 13 14:48:09 2006 -0600 1.3 @@ -393,7 +393,8 @@ void vtlb_insert(thash_cb_t *hcb, u64 pt 1.4 vcpu_get_rr(current, va, &vrr.rrval); 1.5 if (vrr.ps != ps) { 1.6 // machine_tlb_insert(hcb->vcpu, entry); 1.7 - panic("not preferred ps with va: 0x%lx\n", va); 1.8 + panic_domain(NULL, "not preferred ps with va: 0x%lx vrr.ps=%d ps=%d\n", 1.9 + va, vrr.ps, ps); 1.10 return; 1.11 } 1.12 hash_table = vsa_thash(hcb->pta, va, vrr.rrval, &tag);