Received: by 2002:ac0:a5a7:0:0:0:0:0 with SMTP id m36-v6csp1233133imm; Wed, 8 Aug 2018 13:10:35 -0700 (PDT) X-Google-Smtp-Source: AA+uWPzE0EG9KTzxeQ9h7Fgtn1lUJFDBIl+has68uTTamqHcu8H4RRdM6C4KEMghMr13vN6NjK6z X-Received: by 2002:a63:d54e:: with SMTP id v14-v6mr3910798pgi.264.1533759035602; Wed, 08 Aug 2018 13:10:35 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1533759035; cv=none; d=google.com; s=arc-20160816; b=O3q8TK7bfGLzg0WOhEc+AKfTbFLNJK7m0F5IP8uIQaAAiMLKxrnrKOOM4sz4xYq93s Rk90hwYkIDTzus85DUfrPONpLQZtA5ZvU6ZdxtSzHwUZ8NqnIhs4jVeT5c5+F8A8+V0o M8LQbCKiwxU6ErjlJbGgVMQDUtRm4rp7aJYEvrvuDO96x8M3Y+8+5JhcoFaS3C+zhlkR zcwTmUKdDJpDl6F9FxCNhMvwBXEZ+/9NiVihgPvBPQJ0ZSANV7hAbaOGaQL2xnMR5hyT g6LfyFsSwyS4ebwNkHAa5ghdgSjtnbpiTUVPvMcULixeMkiUq/IMX79GyZu2bs+cFVje gXmw== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:user-agent:in-reply-to :content-disposition:mime-version:references:message-id:subject:cc :to:from:date:arc-authentication-results; bh=H5i0TJuowVDXGBgQk5ZqJb94fY8VRjzcS53Ux+VdDgg=; b=VdkY+XspwSNYAQQsBk9vwykA0mFtbUqiuEkPDKxELW9g+m7WLv8C25PdYkuQQD8EQ/ GD1ClDeUVcMz9igABffHGP28pJK+sytJByix/eKJ0cff9qKHlSJxEUL3Rft37gE+bpn5 frwsiHeVCUpGGZ/nGdNnlmBbPKx6YDyLns8UpHr+LzbH6MUt1EoXHuX2cEDaCCLd/ppm s4YOXc1JlDLlr6T1yRoRblxYiUYmRkCG8L6XQp8Xv7/T477aLa1RjnlGkGtZUXO9uaI2 /09h8oOnPw+z2I3SCzW0RjdusWxrvDrr6FWAWDs+Jgr2KDm8+hjJineXOmjwYE0mRHBL kcLw== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id m32-v6si5068341pgl.622.2018.08.08.13.10.00; Wed, 08 Aug 2018 13:10:35 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1730961AbeHHWa1 (ORCPT + 99 others); Wed, 8 Aug 2018 18:30:27 -0400 Received: from fieldses.org ([173.255.197.46]:47106 "EHLO fieldses.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1729661AbeHHWa1 (ORCPT ); Wed, 8 Aug 2018 18:30:27 -0400 Received: by fieldses.org (Postfix, from userid 2815) id 7AA083F4; Wed, 8 Aug 2018 16:09:12 -0400 (EDT) Date: Wed, 8 Aug 2018 16:09:12 -0400 From: "J. Bruce Fields" To: NeilBrown Cc: Jeff Layton , Alexander Viro , linux-fsdevel@vger.kernel.org, linux-kernel@vger.kernel.org, Martin Wilck Subject: Re: [PATCH 0/4] locks: avoid thundering-herd wake-ups Message-ID: <20180808200912.GE23873@fieldses.org> References: <153369219467.12605.13472423449508444601.stgit@noble> <20180808195445.GD23873@fieldses.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20180808195445.GD23873@fieldses.org> User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, Aug 08, 2018 at 03:54:45PM -0400, J. Bruce Fields wrote: > On Wed, Aug 08, 2018 at 11:51:07AM +1000, NeilBrown wrote: > > If you have a many-core machine, and have many threads all wanting to > > briefly lock a give file (udev is known to do this), you can get quite > > poor performance. > > > > When one thread releases a lock, it wakes up all other threads that > > are waiting (classic thundering-herd) - one will get the lock and the > > others go to sleep. > > When you have few cores, this is not very noticeable: by the time the > > 4th or 5th thread gets enough CPU time to try to claim the lock, the > > earlier threads have claimed it, done what was needed, and released. > > With 50+ cores, the contention can easily be measured. > > > > This patchset creates a tree of pending lock request in which siblings > > don't conflict and each lock request does conflict with its parent. > > When a lock is released, only requests which don't conflict with each > > other a woken. > > Are you sure you aren't depending on the (incorrect) assumption that "X > blocks Y" is a transitive relation? > > OK I should be able to answer that question myself, my patience for > code-reading is at a real low this afternoon.... In other words, is there the possibility of a tree of, say, exclusive locks with (offset, length) like: (0, 2) waiting on (1, 2) waiting on (2, 2) waiting on (0, 4) and when waking (0, 4) you could wake up (2, 2) but not (0, 2), leaving a process waiting without there being an actual conflict. --b.