WARNING - OLD ARCHIVES

This is an archived copy of the Xen.org mailing list, which we have preserved to ensure that existing links to archives are not broken. The live archive, which contains the latest emails, can be found at http://lists.xen.org/
   
 
 
Xen 
 
Home Products Support Community News
 
   
 

xen-changelog

[Xen-changelog] [IA64] VTi: vtlb_insert: call panic_domain instead of pa

To: xen-changelog@xxxxxxxxxxxxxxxxxxx
Subject: [Xen-changelog] [IA64] VTi: vtlb_insert: call panic_domain instead of panic
From: Xen patchbot -unstable <patchbot-unstable@xxxxxxxxxxxxxxxxxxx>
Date: Thu, 27 Apr 2006 10:32:40 +0000
Delivery-date: Thu, 27 Apr 2006 03:39:51 -0700
Envelope-to: www-data@xxxxxxxxxxxxxxxxxx
List-help: <mailto:xen-changelog-request@lists.xensource.com?subject=help>
List-id: BK change log <xen-changelog.lists.xensource.com>
List-post: <mailto:xen-changelog@lists.xensource.com>
List-subscribe: <http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-changelog>, <mailto:xen-changelog-request@lists.xensource.com?subject=subscribe>
List-unsubscribe: <http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-changelog>, <mailto:xen-changelog-request@lists.xensource.com?subject=unsubscribe>
Reply-to: xen-devel@xxxxxxxxxxxxxxxxxxx
Sender: xen-changelog-bounces@xxxxxxxxxxxxxxxxxxx
# HG changeset patch
# User awilliam@xxxxxxxxxxx
# Node ID 77afc93c7cad5764cabae008f90ecb93916ac7c3
# Parent  99e1c7f276ea1a6d0fd50aded815a504a63a31d7
[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@xxxxxxxx>

diff -r 99e1c7f276ea -r 77afc93c7cad xen/arch/ia64/vmx/vtlb.c
--- a/xen/arch/ia64/vmx/vtlb.c  Thu Apr 13 14:44:39 2006 -0600
+++ b/xen/arch/ia64/vmx/vtlb.c  Thu Apr 13 14:48:09 2006 -0600
@@ -393,7 +393,8 @@ void vtlb_insert(thash_cb_t *hcb, u64 pt
     vcpu_get_rr(current, va, &vrr.rrval);
     if (vrr.ps != ps) {
 //        machine_tlb_insert(hcb->vcpu, entry);
-       panic("not preferred ps with va: 0x%lx\n", va);
+       panic_domain(NULL, "not preferred ps with va: 0x%lx vrr.ps=%d ps=%d\n",
+                    va, vrr.ps, ps);
        return;
     }
     hash_table = vsa_thash(hcb->pta, va, vrr.rrval, &tag);

_______________________________________________
Xen-changelog mailing list
Xen-changelog@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-changelog

<Prev in Thread] Current Thread [Next in Thread>
  • [Xen-changelog] [IA64] VTi: vtlb_insert: call panic_domain instead of panic, Xen patchbot -unstable <=