]> Zhao Yanbai Git Server - minix.git/commitdiff
Optionalize memory and vm verbose prints
authorBen Gras <ben@minix3.org>
Fri, 21 Oct 2005 19:37:31 +0000 (19:37 +0000)
committerBen Gras <ben@minix3.org>
Fri, 21 Oct 2005 19:37:31 +0000 (19:37 +0000)
servers/pm/alloc.c
servers/pm/main.c

index a40cac2801e426ce845e8d28b42f0dcd0b896563..7f0bdbf1aa11ca30c2482fb8f548755d0a45189d 100644 (file)
@@ -235,8 +235,6 @@ phys_clicks *free;          /* memory size summaries */
   *free = 0;
   for (i=NR_MEMS-1; i>=0; i--) {
        if (chunks[i].size > 0) {
-               printf("mem_init: adding (clicks) 0x%x @ 0x%x\n",
-                       chunks[i].size, chunks[i].base);
                free_mem(chunks[i].base, chunks[i].size);
                *free += chunks[i].size;
 #if ENABLE_SWAP
index b71b33c3f67c86e76846850040d5c01a9136405c..476607f4c7d3140fb0da994ccdb0969f080741e0 100644 (file)
@@ -418,7 +418,9 @@ struct memory mem_chunks[NR_MEMS];
        }
 
        high <<= CLICK_SHIFT;
+#if VERBOSE_VM
        printf("do_x86_vm: found high 0x%x\n", high);
+#endif
 
        /* The number of pages we need is one for the page directory, enough
         * page tables to cover the memory, and one page for alignement.
@@ -427,9 +429,11 @@ struct memory mem_chunks[NR_MEMS];
        bytes= pages*PAGE_SIZE;
        clicks= (bytes + CLICK_SIZE-1) >> CLICK_SHIFT;
 
+#if VERBOSE_VM
        printf("do_x86_vm: need %d pages\n", pages);
        printf("do_x86_vm: need %d bytes\n", bytes);
        printf("do_x86_vm: need %d clicks\n", clicks);
+#endif
 
        for (i= 0; i<NR_MEMS; i++)
        {
@@ -443,7 +447,9 @@ struct memory mem_chunks[NR_MEMS];
        mem_chunks[i].base += clicks;
        mem_chunks[i].size -= clicks;
 
+#if VERBOSE_VM
        printf("do_x86_vm: using 0x%x clicks @ 0x%x\n", clicks, base_click);
+#endif
        r= sys_vm_setbuf(base_click << CLICK_SHIFT, clicks << CLICK_SHIFT,
                high);
        if (r != 0)