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] [xen-unstable] [IA64] Fix for queueing the MCA error log

To: xen-changelog@xxxxxxxxxxxxxxxxxxx
Subject: [Xen-changelog] [xen-unstable] [IA64] Fix for queueing the MCA error logs
From: Xen patchbot-unstable <patchbot-unstable@xxxxxxxxxxxxxxxxxxx>
Date: Sat, 09 Dec 2006 15:42:30 +0000
Delivery-date: Sat, 09 Dec 2006 07:42:28 -0800
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 066094348f22c27a1aa887b2da96b6d43d81252d
# Parent  be0d68a027fbb0e533b4ec0aa71bc6c1b469a974
[IA64] Fix for queueing the MCA error logs

   This patch fixes bugs of queueing the MCA error logs. It is
necessary to queue the error log, when the MCA polling handler is
called. And it is also needed to queue when cpe interrupt handler is
called.

Signed-off-by: Kazuhiro Suzuki <kaz@xxxxxxxxxxxxxx>
---
 xen/arch/ia64/linux-xen/mca.c |   10 +++++++++-
 1 files changed, 9 insertions(+), 1 deletion(-)

diff -r be0d68a027fb -r 066094348f22 xen/arch/ia64/linux-xen/mca.c
--- a/xen/arch/ia64/linux-xen/mca.c     Mon Nov 20 10:10:28 2006 -0700
+++ b/xen/arch/ia64/linux-xen/mca.c     Mon Nov 20 12:14:40 2006 -0700
@@ -496,9 +496,9 @@ ia64_mca_cpe_int_handler (int cpe_irq, v
        /* Get the CPE error record and log it */
        ia64_mca_log_sal_error_record(SAL_INFO_TYPE_CPE);
 #else
+       ia64_log_queue(SAL_INFO_TYPE_CPE, VIRQ_MCA_CPE);
        /* CPE error does not inform to dom0 but the following codes are 
           reserved for future implementation */
-/*     ia64_log_queue(SAL_INFO_TYPE_CPE, VIRQ_MCA_CPE); */
 /*     send_guest_vcpu_virq(dom0->vcpu[0], VIRQ_MCA_CPE); */
 #endif
 
@@ -1325,6 +1325,10 @@ ia64_mca_cmc_int_caller(int cmc_irq, voi
 
 #ifndef XEN
        ia64_mca_cmc_int_handler(cmc_irq, arg, ptregs);
+#else
+       IA64_MCA_DEBUG("%s: received polling vector = %#x on CPU %d\n",
+                      __FUNCTION__, cmc_irq, smp_processor_id());
+       ia64_log_queue(SAL_INFO_TYPE_CMC, VIRQ_MCA_CMC);
 #endif
 
        for (++cpuid ; cpuid < NR_CPUS && !cpu_online(cpuid) ; cpuid++);
@@ -1409,6 +1413,10 @@ ia64_mca_cpe_int_caller(int cpe_irq, voi
 
 #ifndef XEN
        ia64_mca_cpe_int_handler(cpe_irq, arg, ptregs);
+#else
+       IA64_MCA_DEBUG("%s: received polling vector = %#x on CPU %d\n",
+                      __FUNCTION__, cpe_irq, smp_processor_id());
+       ia64_log_queue(SAL_INFO_TYPE_CPE, VIRQ_MCA_CPE);
 #endif
 
        for (++cpuid ; cpuid < NR_CPUS && !cpu_online(cpuid) ; cpuid++);

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

<Prev in Thread] Current Thread [Next in Thread>
  • [Xen-changelog] [xen-unstable] [IA64] Fix for queueing the MCA error logs, Xen patchbot-unstable <=