[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] Re: [Xen-devel] [PATCH v3 05/15] xen/mem_event: Relax error condition on debug builds
>>> On 01.09.14 at 16:21, <tklengyel@xxxxxxxxxxxxx> wrote: > --- a/xen/common/mem_event.c > +++ b/xen/common/mem_event.c > @@ -278,7 +278,11 @@ void mem_event_put_request(struct domain *d, > if ( current->domain != d ) > { > req->flags |= MEM_EVENT_FLAG_FOREIGN; > - ASSERT( !(req->flags & MEM_EVENT_FLAG_VCPU_PAUSED) ); > +#ifndef NDEBUG > + if ( !(req->flags & MEM_EVENT_FLAG_VCPU_PAUSED) ) > + gdprintk(XENLOG_G_WARNING, "VCPU %"PRIu32" was not paused.\n", > + req->vcpu_id); > +#endif This still doesn't tell us which domain the problem was with. Jan _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx http://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |