From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757901AbdJKSuj (ORCPT ); Wed, 11 Oct 2017 14:50:39 -0400 Received: from mx1.redhat.com ([209.132.183.28]:49842 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1757857AbdJKSug (ORCPT ); Wed, 11 Oct 2017 14:50:36 -0400 DMARC-Filter: OpenDMARC Filter v1.3.2 mx1.redhat.com 4BACE8047F Authentication-Results: ext-mx04.extmail.prod.ext.phx2.redhat.com; dmarc=none (p=none dis=none) header.from=redhat.com Authentication-Results: ext-mx04.extmail.prod.ext.phx2.redhat.com; spf=fail smtp.mailfrom=longman@redhat.com Subject: Re: [PATCH v6 00/11] locking/rwsem: Rework rwsem-xadd & enable new rwsem features To: Peter Zijlstra Cc: Ingo Molnar , linux-kernel@vger.kernel.org, x86@kernel.org, linux-alpha@vger.kernel.org, linux-ia64@vger.kernel.org, linux-s390@vger.kernel.org, linux-arch@vger.kernel.org, Davidlohr Bueso , Dave Chinner References: <1507744922-15196-1-git-send-email-longman@redhat.com> <20171011184840.3uomgj3hxxzernfd@hirez.programming.kicks-ass.net> From: Waiman Long Organization: Red Hat Message-ID: Date: Wed, 11 Oct 2017 14:50:34 -0400 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.2.0 MIME-Version: 1.0 In-Reply-To: <20171011184840.3uomgj3hxxzernfd@hirez.programming.kicks-ass.net> Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit Content-Language: en-US X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.28]); Wed, 11 Oct 2017 18:50:36 +0000 (UTC) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 10/11/2017 02:48 PM, Peter Zijlstra wrote: > On Wed, Oct 11, 2017 at 02:01:51PM -0400, Waiman Long wrote: >> # of Patches Reader Writer >> Applied Locking Rate Locking Rate >> ------------ ------------ ------------ >> 0 5,155/ 5,155/ 5,155 5,154/248,852/346,281 >> 7 5,696/ 5,697/ 5,698 113,500/215,826/320,872 >> 8 4,827/ 5,047/ 5,215 4,826/176,797/284,069 >> 9 211,276/ 509,712/1,134,007 4,894/221,839/246,818 >> 11 884,513/1,043,989/1,252,533 9,604/ 11,105/ 25,225 >> >> It can be seen that rwsem changes from writer-preferring to >> reader-preferring. > A bit radically so, you almost starve the writers there. Yes, almost, but the lock handoff code will make sure that it won't actually get starved. That is why I added aggressive reader lock stealing after the lock handoff code. Cheers, Longman