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);
|