|
|
|
|
|
|
|
|
|
|
xen-devel
Re: [Xen-devel] DEBUG output starving network requests
> Keir has told me that this is harmless. I don't know if there is any
> way around it, but while this is going on I'm not able to talk to the
> machine over the network.
An easy fix for now will be to modify xen/common/memory.c. Wherever
dom0_get_page() is used, you'll notice that it's only in the fallback
path after failing on a call to get_page(). You can get rid of the
domain-builder errors by replacing code like:
if ( !get_page() && ((domain != 0) || !dom0_get_page()) )
with:
if ( !dom0_get_page() )
I'll fix the interface at some point so that the caller indicates
explicitly which domain it is executing page-table updates for.
-- Keir
-------------------------------------------------------
SF.Net is sponsored by: Speed Start Your Linux Apps Now.
Build and deploy apps & Web services for Linux with
a free DVD software kit from IBM. Click Now!
http://ads.osdn.com/?ad_id=1356&alloc_id=3438&op=click
_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxxxx
https://lists.sourceforge.net/lists/listinfo/xen-devel
|
|
|
|
|