[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] Re: [Xen-devel] [PATCH 02/18] xen: allow global VIRQ handlers to be delegated to other domains
On Thu, 2012-01-12 at 23:35 +0000, Daniel De Graaf wrote: > > +static void clear_global_virq_handlers(struct domain *d) > +{ > + uint32_t virq; > + int put_count = 0; > + > + spin_lock(&global_virq_handlers_lock); > + > + for (virq = 0; virq < NR_VIRQS; virq++) { > + if (global_virq_handlers[virq] == d) { > + global_virq_handlers[virq] = NULL; I don't suppose we should rebind to dom0, should we? Seems like we are pretty hosed if this ever happens in a non-controlled manner anyway... > + put_count++; > + } > + } > + > + spin_unlock(&global_virq_handlers_lock); > + > + while (put_count) { > + put_domain(d); > + put_count--; > + } > +} _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxxxxxxxx http://lists.xensource.com/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |