From owner-freebsd-hackers@FreeBSD.ORG Tue Jul 13 22:58:39 2010 Return-Path: Delivered-To: freebsd-hackers@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A3D451065674 for ; Tue, 13 Jul 2010 22:58:39 +0000 (UTC) (envelope-from jrytoung@gmail.com) Received: from mail-ww0-f50.google.com (mail-ww0-f50.google.com [74.125.82.50]) by mx1.freebsd.org (Postfix) with ESMTP id 3DD328FC13 for ; Tue, 13 Jul 2010 22:58:38 +0000 (UTC) Received: by wwc33 with SMTP id 33so741326wwc.31 for ; Tue, 13 Jul 2010 15:58:38 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:date:message-id :subject:from:to:content-type; bh=1Djqu561jGe0EFiOAezuNDbx34e6FVGL4CWIKyF/w60=; b=tlA53IRwjj/RU7S+7yHDG3vfTkWc5HGN1bcpYbcDEhOr1AFQ8jdObEooz+REJ6xdmN PvTtKVeAGY1nywS6nTO4pDxmlfKQnX+xpLZvubFSE04W7TBOqS7/ZPp4W9Woi1uRB6+/ zvCMSZ15jt/W/HrxsF4KeN2Jl2uIcpZ8vQKRU= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type; b=xwo1eYTSvRz/bWkeZOALKCS676uQyDYeRldmzC4iJ5CHJdtb9ryjfSbPKAazukkN6s ZcCeSDS7hzhdVGJUQ0ZcwSjUZMB4zztlfrYx6tgH20bwRhKb3tXZ0S2cJvDxXdUDBMAN REOlS1QOfNsfeuffATcexXrZWV+FO138LUqeU= MIME-Version: 1.0 Received: by 10.227.156.21 with SMTP id u21mr2217541wbw.56.1279060452370; Tue, 13 Jul 2010 15:34:12 -0700 (PDT) Received: by 10.216.68.4 with HTTP; Tue, 13 Jul 2010 15:34:12 -0700 (PDT) Date: Tue, 13 Jul 2010 15:34:12 -0700 Message-ID: From: Jerry Toung To: freebsd-hackers@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: disk I/O, VFS hirunningspace X-BeenThere: freebsd-hackers@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Technical Discussions relating to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jul 2010 22:58:39 -0000 Hello List, I am on 8.0 RELEASE amd64. My system has 2 RAID arrays connected to 2 separate controllers. My I/O throughput tests jumped by ~100MB/sec on both channels, when I commented out the following piece of code from kern/vfs_bio.c void waitrunningbufspace(void) { /* mtx_lock(&rbreqlock); while (runningbufspace > hirunningspace) { ++runningbufreq; msleep(&runningbufreq, &rbreqlock, PVM, "wdrain", 0); } mtx_unlock(&rbreqlock); */ } so far, I can't observe any side effects of not running it. Am I on a time bomb? Thank you, Jerry