Quieten console warning about incomplete PAE PTE writes
authorKeir Fraser <keir.fraser@citrix.com>
Fri, 4 Jun 2010 09:01:15 +0000 (10:01 +0100)
committerKeir Fraser <keir.fraser@citrix.com>
Fri, 4 Jun 2010 09:01:15 +0000 (10:01 +0100)
Older (<4.6) RHEL kernels clear PAE pagetable entries without taking
care to write the bottom half first, often enough to make it annoying.

Signed-off-by: Tim Deegan <Tim.Deegan@citrix.com>
xen/arch/x86/mm.c

index d042f05d6f4954506a7f1a3dc69200596845374e..f9ab808da44cb23c5ea8339266138eb54c67aeb7 100644 (file)
@@ -4911,8 +4911,8 @@ static int ptwr_emulated_update(
              * zap the PRESENT bit on the assumption that the bottom half will
              * be written immediately after we return to the guest.
              */
-            MEM_LOG("ptwr_emulate: fixing up invalid PAE PTE %"PRIpte,
-                    l1e_get_intpte(nl1e));
+            gdprintk(XENLOG_DEBUG, "ptwr_emulate: fixing up invalid PAE PTE %"
+                     PRIpte"\n", l1e_get_intpte(nl1e));
             l1e_remove_flags(nl1e, _PAGE_PRESENT);
         }
         else