c9e3853c04
24448-x86-pt-irq-leak.patch - Upstream patches from Jan 24261-x86-cpuidle-Westmere-EX.patch 24417-amd-erratum-573.patch 24429-mceinj-tool.patch 24447-x86-TXT-INIT-SIPI-delay.patch ioemu-9868-MSI-X.patch - bnc#732884 - remove private runlevel 4 from init scripts xen.no-default-runlevel-4.patch - bnc#727515 - Fragmented packets hang network boot of HVM guest ipxe-gcc45-warnings.patch ipxe-ipv4-fragment.patch ipxe-enable-nics.patch - fate#310510 - fix xenpaging update xenpaging.autostart.patch, make changes with mem-swap-target permanent update xenpaging.doc.patch, mention issues with live migration - fate#310510 - fix xenpaging add xenpaging.evict_mmap_readonly.patch update xenpaging.error-handling.patch, reduce debug output - bnc#736824 - Microcode patches for AMD's 15h processors panic the system 24189-x86-p2m-pod-locking.patch 24412-x86-AMD-errata-model-shift.patch OBS-URL: https://build.opensuse.org/package/show/Virtualization/xen?expand=0&rev=164
54 lines
2.5 KiB
Diff
54 lines
2.5 KiB
Diff
changeset: 24178:1f2a06dbbb69
|
|
user: Keir Fraser <keir@xen.org>
|
|
date: Tue Nov 22 15:35:26 2011 +0000
|
|
files: xen/common/keyhandler.c
|
|
description:
|
|
debug: Add domain/vcpu pause_count info to 'd' key.
|
|
|
|
Signed-off-by: Keir Fraser <keir@xen.org>
|
|
|
|
|
|
---
|
|
xen/common/keyhandler.c | 12 +++++++-----
|
|
1 file changed, 7 insertions(+), 5 deletions(-)
|
|
|
|
Index: xen-4.1.2-testing/xen/common/keyhandler.c
|
|
===================================================================
|
|
--- xen-4.1.2-testing.orig/xen/common/keyhandler.c
|
|
+++ xen-4.1.2-testing/xen/common/keyhandler.c
|
|
@@ -244,9 +244,10 @@ static void dump_domains(unsigned char k
|
|
unsigned int i;
|
|
printk("General information for domain %u:\n", d->domain_id);
|
|
cpuset_print(tmpstr, sizeof(tmpstr), d->domain_dirty_cpumask);
|
|
- printk(" refcnt=%d dying=%d nr_pages=%d xenheap_pages=%d "
|
|
- "dirty_cpus=%s max_pages=%u\n",
|
|
+ printk(" refcnt=%d dying=%d pause_count=%d\n",
|
|
atomic_read(&d->refcnt), d->is_dying,
|
|
+ atomic_read(&d->pause_count));
|
|
+ printk(" nr_pages=%d xenheap_pages=%d dirty_cpus=%s max_pages=%u\n",
|
|
d->tot_pages, d->xenheap_pages, tmpstr, d->max_pages);
|
|
printk(" handle=%02x%02x%02x%02x-%02x%02x-%02x%02x-"
|
|
"%02x%02x-%02x%02x%02x%02x%02x%02x vm_assist=%08lx\n",
|
|
@@ -270,17 +271,18 @@ static void dump_domains(unsigned char k
|
|
d->domain_id);
|
|
for_each_vcpu ( d, v )
|
|
{
|
|
- printk(" VCPU%d: CPU%d [has=%c] flags=%lx poll=%d "
|
|
+ printk(" VCPU%d: CPU%d [has=%c] poll=%d "
|
|
"upcall_pend = %02x, upcall_mask = %02x ",
|
|
v->vcpu_id, v->processor,
|
|
- v->is_running ? 'T':'F',
|
|
- v->pause_flags, v->poll_evtchn,
|
|
+ v->is_running ? 'T':'F', v->poll_evtchn,
|
|
vcpu_info(v, evtchn_upcall_pending),
|
|
vcpu_info(v, evtchn_upcall_mask));
|
|
cpuset_print(tmpstr, sizeof(tmpstr), v->vcpu_dirty_cpumask);
|
|
printk("dirty_cpus=%s ", tmpstr);
|
|
cpuset_print(tmpstr, sizeof(tmpstr), v->cpu_affinity);
|
|
printk("cpu_affinity=%s\n", tmpstr);
|
|
+ printk(" pause_count=%d pause_flags=%lx\n",
|
|
+ atomic_read(&v->pause_count), v->pause_flags);
|
|
arch_dump_vcpu_info(v);
|
|
periodic_timer_print(tmpstr, sizeof(tmpstr), v->periodic_period);
|
|
printk(" %s\n", tmpstr);
|