From owner-freebsd-hackers@FreeBSD.ORG Wed May 26 17:30:56 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 8E17A106567D; Wed, 26 May 2010 17:30:56 +0000 (UTC) (envelope-from seanbru@yahoo-inc.com) Received: from mrout2.yahoo.com (mrout2.yahoo.com [216.145.54.172]) by mx1.freebsd.org (Postfix) with ESMTP id 745458FC0C; Wed, 26 May 2010 17:30:56 +0000 (UTC) Received: from [127.0.0.1] (proxy8.corp.yahoo.com [216.145.48.13]) by mrout2.yahoo.com (8.13.6/8.13.6/y.out) with ESMTP id o4QHTpC5030356; Wed, 26 May 2010 10:29:52 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; s=serpent; d=yahoo-inc.com; c=nofws; q=dns; h=subject:from:to:cc:in-reply-to:references:content-type:date: message-id:mime-version:x-mailer:content-transfer-encoding; b=VZW7EEU+Xa3eCwZnS7DNghfezDGMkusdJDT+QRUZfML1TL+3RFSpHp73ogVyGzoQ From: Sean Bruno To: jhell In-Reply-To: <1274798852.4715.1.camel@localhost.localdomain> References: <1274739973.31299.23.camel@localhost.localdomain> <4BFBD838.40208@dataix.net> <1274798852.4715.1.camel@localhost.localdomain> Content-Type: text/plain; charset="UTF-8" Date: Wed, 26 May 2010 10:29:29 -0700 Message-ID: <1274894969.2481.47.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.28.3 (2.28.3-1.fc12) Content-Transfer-Encoding: 7bit X-Mailman-Approved-At: Wed, 26 May 2010 18:12:40 +0000 Cc: freebsd-hackers , "sbruno@freebsd.org" Subject: Re: Exposing Zone Sleeps 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: Wed, 26 May 2010 17:30:56 -0000 On Tue, 2010-05-25 at 07:47 -0700, Sean Bruno wrote: > > Hi Sean, > > > > Nice work on this. I applied this to stable/8 r208530 and I am in the > > process of compiling the kernel right now. Everything else has built & > > runs as expected "i386". Attached is the adjusted patch which was one > > modification to the line number for uz_sleeps in sys/vm/uma_int.h. > > > > 8 files changed, 106 insertions(+), 7 deletions(-) > > > > For those wishing to apply this patch and test for them self: > > > > cd /usr/src > > patch > cd /usr/src/include > > make obj && make depend && make includes && make install > > cd /usr/src/lib/libmemstat > > make obj && make depend && make includes && make install > > cd /usr/src/usr.bin/vmstat > > make obj && make depend && make install > > cd /usr/src > > make kernel KERNCONF=YOUR_KERN_CONF > > reboot > > > > Can't wait to see some results from this & I will report back with > > either negative results of the build & run or positive results from the > > stats collected. > > > > If there is anything needed feel free to let me know and I will do what > > is possible ASAP. > > > > Thanks again, > > > > - -- > > > > jhell > > Excellent. Please check the output of vmstat -z and the appropriate > sysctl. I changed the display a bit to keep it from wrapping on a > standard terminal. > > Sean > > P.S. My intention it to MFC this to all releases. > I do have a concern related to the removal of an #ifdef DDB in this patch. Any comments? Sean