X-Git-Url: http://v3vee.org/palacios/gitweb/gitweb.cgi?p=palacios.git;a=blobdiff_plain;f=palacios%2Fsrc%2Fgeekos%2Fvmm_stubs.c;h=47e8886aa2a66fbc9c416ce5bbe4eb576d6133c5;hp=28f1126170a0fcd360bb2ee8c0af941703eb5a89;hb=1831ffe56d9eeb2bde9b5584227dcaf958dad70d;hpb=624a05de781c51ed5d34a6db2583f884918a9594 diff --git a/palacios/src/geekos/vmm_stubs.c b/palacios/src/geekos/vmm_stubs.c index 28f1126..47e8886 100644 --- a/palacios/src/geekos/vmm_stubs.c +++ b/palacios/src/geekos/vmm_stubs.c @@ -7,7 +7,7 @@ void * Identity(void *addr) { return addr; }; void * Allocate_VMM_Pages(int num_pages) { void * start_page = Alloc_Page(); - //SerialPrint("Allocating Page: %x (%d of %d)\n",start_page, 1, num_pages); + //SerialPrint("Starting by Allocating Page: %x (%d of %d)\n",start_page, 1, num_pages); int i = 1; while (i < num_pages) { @@ -21,7 +21,7 @@ void * Allocate_VMM_Pages(int num_pages) { i--; } start_page = Alloc_Page(); - //SerialPrint("Allocating Page: %x (%d of %d)\n",start_page, 1, num_pages); + //SerialPrint("Starting over by Allocating Page: %x (%d of %d)\n",start_page, 1, num_pages); i = 1; continue; }