kernel/arch/x86/boot/compressed/ident_map_64.c
.. .. @@ -67,6 +67,14 @@ 67 67 return NULL; 68 68 } 69 69 70 + /* Consumed more tables than expected? */71 + if (pages->pgt_buf_offset == BOOT_PGT_SIZE_WARN) {72 + debug_putstr("pgt_buf running low in " __FILE__ "\n");73 + debug_putstr("Need to raise BOOT_PGT_SIZE?\n");74 + debug_putaddr(pages->pgt_buf_offset);75 + debug_putaddr(pages->pgt_buf_size);76 + }77 +70 78 entry = pages->pgt_buf + pages->pgt_buf_offset; 71 79 pages->pgt_buf_offset += PAGE_SIZE; 72 80