[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen-4.0-testing] x86: Quieten the warning about paging domctls called on domains with no vcpus
# HG changeset patch # User Keir Fraser <keir.fraser@xxxxxxxxxx> # Date 1275644983 -3600 # Node ID d68b0e4c378bf45015405aa053e8b07e786c46f7 # Parent d68fdeada377973f5beb0659c0bb09fa3cdfa85a x86: 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 <Tim.Deegan@xxxxxxxxxx> xen-unstable changeset: 21513:99761f54183d xen-unstable date: Fri Jun 04 10:02:51 2010 +0100 --- xen/arch/x86/mm/paging.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff -r d68fdeada377 -r d68b0e4c378b xen/arch/x86/mm/paging.c --- a/xen/arch/x86/mm/paging.c Fri Jun 04 10:49:19 2010 +0100 +++ b/xen/arch/x86/mm/paging.c Fri Jun 04 10:49:43 2010 +0100 @@ -684,8 +684,8 @@ int paging_domctl(struct domain *d, xen_ 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; } _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |