[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] Re: [Xen-devel] Vanilla Linux and has_foreign_mapping
On 25/4/08 01:18, "Jeremy Fitzhardinge" <jeremy@xxxxxxxx> wrote: > So the issue is that a pte page containing a _PAGE_IO pte must remain > pinned while it contains that mapping? Would shooting down the mapping > allow it to be unpinned, or does that need to be deferred until some > later point (if so, when?)? If you have _PAGE_IO then only unpinning of ptes containing grant-table mappings must not be deferred. 'Ordinary' foreign mappings, of the sort that dom0 can create because it is privileged, do not have this constraint. This is because you can tell they are foreign, and hence avoid page refcounting, simply because the pte contains _PAGE_IO. Without _PAGE_IO we relied on checking whether a machine->pseudophys->machine double lookup took us from the machine address in the pte back to the same machine address. If not, we knew the page was not ours. This doesn't work reliably if the pte page is not pinned because in that case the mapped page can be freed from the foreign domain and be reallocated into the local domain: in which case the M->P->M check could succeed! The _PAGE_IO check is more robust. -- Keir _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxxxxxxxx http://lists.xensource.com/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |