[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] Re: [Xen-devel] Re: [RFC PATCH 0/4] (Take 2): transcendent memory ("tmem") for Linux
On 07/08/09 16:57, Anthony Liguori wrote: > Why does tmem require a special store? > > A VMM can trap write operations pages can be stored on disk > transparently by the VMM if necessary. I guess that's the bit I'm > missing. tmem doesn't store anything to disk. It's more about making sure that free host memory can be quickly and efficiently be handed out to guests as they need it; to increase "memory liquidity" as it were. Guests need to explicitly ask to use tmem, rather than having the host/hypervisor try to intuit what to do based on access patterns and hints; typically they'll use tmem as the first line storage for memory which they were about to swap out anyway. There's no point in making tmem swappable, because the guest is perfectly capable of swapping its own memory. The copying interface avoids a lot of the delicate corners of the CMM code, in which subtle races can lurk in fairly hard-to-test-for ways. >> The copy may be expensive on an older machine, but on newer >> machines copying a page is relatively inexpensive. > > I don't think that's a true statement at all :-) If you had a > workload where data never came into the CPU cache (zero-copy) and now > you introduce a copy, even with new system, you're going to see a > significant performance hit. If the copy helps avoid physical disk IO, then it is cheap at the price. A guest generally wouldn't push a page into tmem unless it was about to evict it anyway, so it has already determined the page is cold/unwanted, and the copy isn't a great cost. Hot/busy pages shouldn't be anywhere near tmem; if they are, it suggests you've cut your domain's memory too aggressively. J _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxxxxxxxx http://lists.xensource.com/xen-devel
|
![]() |
Lists.xenproject.org is hosted with RackSpace, monitoring our |