From: Ben Gras Date: Thu, 24 Jun 2010 00:32:17 +0000 (+0000) Subject: mfs - revert part of previous commit; should not have been commited X-Git-Tag: v3.1.8~369 X-Git-Url: http://zhaoyanbai.com/repos/named.html?a=commitdiff_plain;h=491efeead99249f376d034d9dd2974e2d76f7098;p=minix.git mfs - revert part of previous commit; should not have been commited --- diff --git a/servers/mfs/Makefile b/servers/mfs/Makefile index 911891fa7..1addd202b 100644 --- a/servers/mfs/Makefile +++ b/servers/mfs/Makefile @@ -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 diff --git a/servers/mfs/cache.c b/servers/mfs/cache.c index eae8f74b5..6e3d522b3 100644 --- a/servers/mfs/cache.c +++ b/servers/mfs/cache.c @@ -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; } }