|
@@ -194,6 +194,11 @@ RESERVE_BRK(p2m_mid_mfn, PAGE_SIZE * (MAX_DOMAIN_PAGES / (P2M_PER_PAGE * P2M_MID
|
|
|
* boundary violation will require three middle nodes. */
|
|
|
RESERVE_BRK(p2m_mid_identity, PAGE_SIZE * 2 * 3);
|
|
|
|
|
|
+/* When we populate back during bootup, the amount of pages can vary. The
|
|
|
+ * max we have is seen is 395979, but that does not mean it can't be more.
|
|
|
+ * But some machines can have 3GB I/O holes even. So lets reserve enough
|
|
|
+ * for 4GB of I/O and E820 holes. */
|
|
|
+RESERVE_BRK(p2m_populated, PMD_SIZE * 4);
|
|
|
static inline unsigned p2m_top_index(unsigned long pfn)
|
|
|
{
|
|
|
BUG_ON(pfn >= MAX_P2M_PFN);
|