xen-devel.lists.xenproject.org archive mirror
 help / color / mirror / Atom feed
* mark pages in p2m_ram_paging_out state read-only
@ 2011-11-14 16:53 Olaf Hering
  2011-11-24 11:38 ` Tim Deegan
  0 siblings, 1 reply; 7+ messages in thread
From: Olaf Hering @ 2011-11-14 16:53 UTC (permalink / raw)
  To: xen-devel


I was wondering why ept_p2m_type_to_flags() removes all permissions from
a gfn in state p2m_ram_paging_out. If the guest happens to read or
execute from that page while the pager writes that gfn to disk, wouldnt
it be enough to remove the write bit to prevent writes from the guest?
If the page is read-only the guest could continue to make progress until
the gfn is really evicted and the p2mt changes to p2m_ram_paged.

I havent actually tried the patch below, but is there any reason it
would break the guest?


diff -r ed809663f829 xen/arch/x86/mm/p2m-ept.c
--- a/xen/arch/x86/mm/p2m-ept.c
+++ b/xen/arch/x86/mm/p2m-ept.c
@@ -75,7 +75,6 @@ static void ept_p2m_type_to_flags(ept_en
         case p2m_invalid:
         case p2m_mmio_dm:
         case p2m_populate_on_demand:
-        case p2m_ram_paging_out:
         case p2m_ram_paged:
         case p2m_ram_paging_in:
         case p2m_ram_paging_in_start:
@@ -92,6 +91,7 @@ static void ept_p2m_type_to_flags(ept_en
             break;
         case p2m_ram_logdirty:
         case p2m_ram_ro:
+        case p2m_ram_paging_out:
         case p2m_ram_shared:
             entry->r = entry->x = 1;
             entry->w = 0;

^ permalink raw reply	[flat|nested] 7+ messages in thread
[parent not found: <mailman.1616.1322135934.12970.xen-devel@lists.xensource.com>]

end of thread, other threads:[~2011-11-24 18:41 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-11-14 16:53 mark pages in p2m_ram_paging_out state read-only Olaf Hering
2011-11-24 11:38 ` Tim Deegan
     [not found] <mailman.1616.1322135934.12970.xen-devel@lists.xensource.com>
2011-11-24 17:09 ` Andres Lagar-Cavilla
2011-11-24 17:22   ` Tim Deegan
2011-11-24 18:24     ` Olaf Hering
2011-11-24 18:40       ` Olaf Hering
2011-11-24 18:41       ` Andres Lagar-Cavilla

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).