From owner-svn-src-head@FreeBSD.ORG Thu Aug 15 20:30:06 2013 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 84652FD6; Thu, 15 Aug 2013 20:30:06 +0000 (UTC) (envelope-from ivoras@gmail.com) Received: from mail-vc0-x22b.google.com (mail-vc0-x22b.google.com [IPv6:2607:f8b0:400c:c03::22b]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 0955827D4; Thu, 15 Aug 2013 20:30:05 +0000 (UTC) Received: by mail-vc0-f171.google.com with SMTP id ij15so863265vcb.30 for ; Thu, 15 Aug 2013 13:30:04 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:from:date:message-id :subject:to:cc:content-type; bh=cH02tUUHi1JGh6eTDeNx9QQq6c/evyhwRuWkxk+PMyA=; b=f4AlFFQu4xRJpPcgC+EIgmhbQmZJPESSygNoANp7mUJ1v3Rz5NouASya9yQYs1Tg62 p+MSxRsaZm97PHBNhmLLu4fnSHls4oSyjkc3cBmULJ5nXcxczJD+LAhNby8jkz/uDxiN L2LYtojQMVb5D0qFwmxLktp3F53VC5J+Xw5VfadY4RUhcP3gFE/zieJhdHg9VQWaDjMI JNF5JUV6qTj0LOINJcT80r2jKeH5rfwOVVyvyHUKM/8WXGDImQIp9g1oqmyOj9jqgkat j342m6uDRxKF5GIcpo/Jyqt8s09NxBasQ8m504ql3g2Bzivn9U3yrrn4uB0p0NWJYdlh GdeQ== X-Received: by 10.220.206.195 with SMTP id fv3mr15985977vcb.15.1376598604659; Thu, 15 Aug 2013 13:30:04 -0700 (PDT) MIME-Version: 1.0 Sender: ivoras@gmail.com Received: by 10.58.229.167 with HTTP; Thu, 15 Aug 2013 13:29:24 -0700 (PDT) In-Reply-To: <201308152019.r7FKJI0H095440@svn.freebsd.org> References: <201308152019.r7FKJI0H095440@svn.freebsd.org> From: Ivan Voras Date: Thu, 15 Aug 2013 22:29:24 +0200 X-Google-Sender-Auth: xLOPVDoKZZwiwfP6uzEL0AN4t7Y Message-ID: Subject: Re: svn commit: r254380 - in head/sys: kern sys To: Colin Percival Content-Type: text/plain; charset=UTF-8 Cc: svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Aug 2013 20:30:06 -0000 On 15 August 2013 22:19, Colin Percival wrote: > For workloads with R parallel reads and W parallel writes, this improves > the time spent from O((R+W)^2) to O(W*(R+W)); i.e., heavy parallel-read > workloads become significantly more scalable. > > No statistically significant change in buildworld time has been measured, > but synthetic tests of parallel 'dd > /dev/null' and 'openssl enc >/dev/null' > with the input file cached yield dramatic (up to 10x) improvement with high > (up to 128 processes) levels of parallelism. That's interesting. Have you tried running the "blogbench" benchmark before & after?