Received: by 2002:ac0:a5a7:0:0:0:0:0 with SMTP id m36-v6csp1219725imm; Wed, 8 Aug 2018 12:56:33 -0700 (PDT) X-Google-Smtp-Source: AA+uWPyAyGfF1wCnp6DMzXZln65C8qHP03AZppBLI1nIWuKg2MXBrbiX4SIs1liCVcomkIgGDYd8 X-Received: by 2002:a63:220d:: with SMTP id i13-v6mr3899919pgi.212.1533758193197; Wed, 08 Aug 2018 12:56:33 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1533758193; cv=none; d=google.com; s=arc-20160816; b=Dc6XarFH+CMS0TTaGPWyXPnGbfZoOhq0MXfA8ndpGD9wy1CNaPPD6y7CagYI4UDeYU mI9HORXBsGbI251CMrB/Zg+MedUTqg7fbbYhdHyY7997ff37W3VseztAnT90jzZAHwMb lY7TrhA3cdvoQJbXVx9bm80fQVY46SY9v+6TUF5kn1e+klD0ezRwo+0GoIODrx6WaAYD XnQEPD4nMVbXJll9wdtxCeQ9nVlgbuph25L0NwFTiOeYdf+S09UsaAPfqtOVLm7pcn4I sI8XdDNtn65WDtiQyyzTQXZDjuVAKi+UL61w9g7WkQd19qDM788btA2ujcFehX0zLmQR h9fg== 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=6IV9qNF3NFky4cAXCVIrFuoUlIxz2ljo+/k0UFrXU3I=; b=Tb3ApwETuzylef0g9exg1TSDyfCyQmhpyZw42SZO0X9H4t4H5C+laZAIxOGRt32y0T ytrXn/k2eO7dHb7+x8378Z/yoZJ1M8rq4IIHbnNnxgbprGma2JeNK1EUGnjBKha7LZDC ggzRLwmKYhSF8PNa6969FlVRD2TysW4lWlY8vqOD9T0AmYBxWTuMLT5XK2OrjBhYodhR iONn1VSI5wz4KXwdyAjAIkrT2TzBfWnZSLN7YHYfvox79tbMiuaogDk00jRcVf0I/hyQ gaZJqiB8aXpS7apq2l5OqP5BNSpau2RxqTBA5/CzEFipvSq1t3pUgzGhqtKtHCHkv2Ft WqbQ== 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 p21-v6si3823764plq.94.2018.08.08.12.56.06; Wed, 08 Aug 2018 12:56:33 -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 S1730982AbeHHWP5 (ORCPT + 99 others); Wed, 8 Aug 2018 18:15:57 -0400 Received: from fieldses.org ([173.255.197.46]:47032 "EHLO fieldses.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1728359AbeHHWP5 (ORCPT ); Wed, 8 Aug 2018 18:15:57 -0400 Received: by fieldses.org (Postfix, from userid 2815) id 33CE43F4; Wed, 8 Aug 2018 15:54:45 -0400 (EDT) Date: Wed, 8 Aug 2018 15:54:45 -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: <20180808195445.GD23873@fieldses.org> References: <153369219467.12605.13472423449508444601.stgit@noble> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <153369219467.12605.13472423449508444601.stgit@noble> 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 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.... --b. > > Testing shows that lock-acquisitions-per-second is now fairly stable even > as number of contending process goes to 1000. Without this patch, > locks-per-second drops off steeply after a few 10s of processes. > > There is a small cost to this extra complexity. > At 20 processes running a particular test on 72 cores, the lock > acquisitions per second drops from 1.8 million to 1.4 million with > this patch. For 100 processes, this patch still provides 1.4 million > while without this patch there are about 700,000. > > NeilBrown > > --- > > NeilBrown (4): > fs/locks: rename some lists and pointers. > fs/locks: allow a lock request to block other requests. > fs/locks: change all *_conflict() functions to return bool. > fs/locks: create a tree of dependent requests. > > > fs/cifs/file.c | 2 - > fs/locks.c | 142 +++++++++++++++++++++++++-------------- > include/linux/fs.h | 5 + > include/trace/events/filelock.h | 16 ++-- > 4 files changed, 103 insertions(+), 62 deletions(-) > > -- > Signature