|
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-ia64-devel] Re: Any hint about a weird behavior about scheduler?
On 25 Jan 2006, at 03:36, Tian, Kevin wrote:
I haven't seen this on x86. My gut feeling is that perhaps you are executing softirq work Linux style rather than Xen style. That is: Linux is happy to execute softirq work at the tail of a hardirq, as long as it is the outermost hardirq context. In contrast, Xen expects softirqs only to be executed in the outermost Xen activation. So, for example, Xen does not check for softirq reentrancy in do_softirq, because that is never expected to happen. But even if you did add a reentrancy check you would risk deadlock (since you may interrupt e.g., hypercall context while it has a lock held, and that lock may be shared with code that is executed in softirq context). Removing do_softirq() from irq_exit() will probably fix this problem for you, and generally improve correctness. -- Keir _______________________________________________ Xen-ia64-devel mailing list Xen-ia64-devel@xxxxxxxxxxxxxxxxxxx http://lists.xensource.com/xen-ia64-devel
|
![]() |
Lists.xenproject.org is hosted with RackSpace, monitoring our |