Index: /trunk/src/VBox/VMM/VMMR3/PGMPhys.cpp
===================================================================
--- /trunk/src/VBox/VMM/VMMR3/PGMPhys.cpp	(revision 61920)
+++ /trunk/src/VBox/VMM/VMMR3/PGMPhys.cpp	(revision 61921)
@@ -4427,4 +4427,14 @@
         }
 
+        if (rc == VERR_NO_MEMORY)
+        {
+            uint64_t cbHostRamAvail = 0;
+            int rc2 = RTSystemQueryAvailableRam(&cbHostRamAvail);
+            if (RT_SUCCESS(rc2))
+                LogRel(("Host RAM: %RU64MB available\n", cbHostRamAvail));
+            else
+                LogRel(("Cannot determine the amount of available host memory\n"));
+        }
+
         /* Set the FFs and adjust rc. */
         VM_FF_SET(pVM, VM_FF_PGM_NEED_HANDY_PAGES);
