# HG changeset patch # User Tim Deegan # Date 1275473738 -3600 # Node ID f070bf3a3d163d46139795b1e4685ad69b46fce2 # Parent b12236c2562965120e0209109a724dfac96a3d2d Quieten the warning about paging domctls called on domains with no vcpus. Xapi tends to trigger this a lot by looking up the shadow memory allocation of domains that aren't quite built yet. Signed-off-by: Tim Deegan diff -r b12236c25629 -r f070bf3a3d16 xen/arch/x86/mm/paging.c --- a/xen/arch/x86/mm/paging.c Wed Jun 02 11:15:31 2010 +0100 +++ b/xen/arch/x86/mm/paging.c Wed Jun 02 11:15:38 2010 +0100 @@ -684,8 +684,8 @@ if ( unlikely(d->vcpu == NULL) || unlikely(d->vcpu[0] == NULL) ) { - PAGING_ERROR("Paging op on a domain (%u) with no vcpus\n", - d->domain_id); + gdprintk(XENLOG_DEBUG, "Paging op on a domain (%u) with no vcpus\n", + d->domain_id); return -EINVAL; }