From owner-cvs-src-old@FreeBSD.ORG Mon May 23 21:15:30 2011 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5717C106567D for ; Mon, 23 May 2011 21:15:30 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 460678FC08 for ; Mon, 23 May 2011 21:15:30 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id p4NLFU1x078913 for ; Mon, 23 May 2011 21:15:30 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id p4NLFUvf078912 for cvs-src-old@freebsd.org; Mon, 23 May 2011 21:15:30 GMT (envelope-from pjd@repoman.freebsd.org) Message-Id: <201105232115.p4NLFUvf078912@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to pjd@repoman.freebsd.org using -f From: Pawel Jakub Dawidek Date: Mon, 23 May 2011 21:15:19 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sbin/hastctl hastctl.c src/sbin/hastd control.c hast.h primary.c secondary.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2011 21:15:30 -0000 pjd 2011-05-23 21:15:19 UTC FreeBSD src repository Modified files: sbin/hastctl hastctl.c sbin/hastd control.c hast.h primary.c secondary.c Log: SVN rev 222228 on 2011-05-23 21:15:19Z by pjd Keep statistics on number of BIO_READ, BIO_WRITE, BIO_DELETE and BIO_FLUSH requests as well as number of activemap updates. Number of BIO_WRITEs and activemap updates are especially interesting, because if those two are too close to each other, it means that your workload needs bigger number of dirty extents. Activemap should be updated as rarely as possible. MFC after: 1 week Revision Changes Path 1.14 +11 -0 src/sbin/hastctl/hastctl.c 1.19 +17 -0 src/sbin/hastd/control.c 1.18 +11 -0 src/sbin/hastd/hast.h 1.73 +11 -0 src/sbin/hastd/primary.c 1.41 +14 -0 src/sbin/hastd/secondary.c