From cc70cbe297d87feca922b758e6458bc36abd8d80 Mon Sep 17 00:00:00 2001 From: Ingo Weinhold Date: Wed, 2 May 2007 14:09:03 +0000 Subject: [PATCH] Reduced number of unused vnodes the VFS keeps around. We were hitting the maximal number of (emulated) semphores on Linux before. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@20973 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/tools/fs_shell/vfs.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tools/fs_shell/vfs.cpp b/src/tools/fs_shell/vfs.cpp index fea70dba84..7c64a175bd 100644 --- a/src/tools/fs_shell/vfs.cpp +++ b/src/tools/fs_shell/vfs.cpp @@ -48,7 +48,7 @@ namespace FSShell { -const static uint32_t kMaxUnusedVnodes = 8192; +const static uint32_t kMaxUnusedVnodes = 1024; // This is the maximum number of unused vnodes that the system // will keep around (weak limit, if there is enough memory left, // they won't get flushed even when hitting that limit).