]> Zhao Yanbai Git Server - minix.git/commitdiff
mfs - revert part of previous commit; should not have been commited
authorBen Gras <ben@minix3.org>
Thu, 24 Jun 2010 00:32:17 +0000 (00:32 +0000)
committerBen Gras <ben@minix3.org>
Thu, 24 Jun 2010 00:32:17 +0000 (00:32 +0000)
servers/mfs/Makefile
servers/mfs/cache.c

index 911891fa7d51bfd9ccd903bf1f346370140e84a9..1addd202bb3a70ac86f1b59c8667e07d2618a004 100644 (file)
@@ -13,7 +13,7 @@ MAN=
 BINDIR?= /sbin
 INSTALLFLAGS+= -S 128k
 
-DEFAULT_NR_BUFS= 102400
+DEFAULT_NR_BUFS= 1024
 CPPFLAGS+= -DDEFAULT_NR_BUFS=${DEFAULT_NR_BUFS}
 
 .include <minix.prog.mk>
index eae8f74b5316533663a15cccd186eae0dc6f327a..6e3d522b3833b38528181030f9eb6cc4674e4350 100644 (file)
@@ -63,10 +63,8 @@ PUBLIC struct buf *get_block(
   if(vmcache_avail < 0) {
        /* Test once for the availability of the vm yield block feature. */
        if(vm_forgetblock(VM_BLOCKID_NONE) == ENOSYS) {
-               printf("mfs: no cache\n");
                vmcache_avail = 0;
        } else {
-               printf("mfs: cache\n");
                vmcache_avail = 1;
        }
   }