Received: by 2002:ad5:474a:0:0:0:0:0 with SMTP id i10csp260326imu; Thu, 8 Nov 2018 19:13:38 -0800 (PST) X-Google-Smtp-Source: AJdET5eBmBAMuM7EXMJu8EaoiYezTwNHJ60BbGbYlVK+RHt8ZII7/e9CBpYBReP7o6G/yzBDU2du X-Received: by 2002:a63:4243:: with SMTP id p64-v6mr6111412pga.127.1541733218725; Thu, 08 Nov 2018 19:13:38 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1541733218; cv=none; d=google.com; s=arc-20160816; b=AtSbS63BEsjXeGaTqwlVtGWB41uUsmWZRC95pqEznYuMXa7WpnP8EpYaTp1kwSagan qP+z+Sf9izD1H3UBxg6+2T4uj8f+qEu3mdQJp79Bzzr3mrn/53Z4X63QXqq4ln+76FTK y7TKyxjDLTQtN77MFoYIzPglhHckkXDeKMdbB1R99TIBZoYwPta0+5yCC5nIFyQGv3im rsNidiF/rM/7IWvU2wn+jBymIMkf5XR0Il0LVHL1jjFAS1cRR3LJ5AspuNYhivfi4Pek wbMnHE81sDbAf3jdFmgbMkAGmsNhF7VAoa51yAM7W4QHx4fwztBXcZdN2KtOfsFH5qqr +RPQ== 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; bh=oznhRDPwG8wlI6bwyfUWMokGW0j0JBJnBlA8ooc+rH0=; b=LLSizmI70Se72fU7tSDrFPx+89iV51y0kDclvZ4hw0KHAb4kXjzAabkVidBXQQ7IlI DBRLcd2kj55aD2KudDVSYf8W52Y87D1s79Gx+qJtrXfl8z6RbrdLwJA2murfniHLh9Bd JFeXNLoll+mxCH1tWzC1zrJty6u4hmd7sHfoCUmGUfLgYGlVZZFSjjBTXgs3X7VMMaFA 2iP9qyGvLYKVShh1kCfjilEjgqyKEtiffQbJowdkwIqIBq9rVG7abrag3vzX6RNPFPo2 MaEI5FdSqcsPaoCQmQ2GIo/QWLshRwuizV1P+1OLUJF1P9gV+mk/c9EEm+eXdER6w+uL dFtQ== 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 r36-v6si4880602pgl.257.2018.11.08.19.13.23; Thu, 08 Nov 2018 19:13:38 -0800 (PST) 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 S1727655AbeKIMuO (ORCPT + 99 others); Fri, 9 Nov 2018 07:50:14 -0500 Received: from fieldses.org ([173.255.197.46]:39504 "EHLO fieldses.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727238AbeKIMuO (ORCPT ); Fri, 9 Nov 2018 07:50:14 -0500 Received: by fieldses.org (Postfix, from userid 2815) id 93ED21E29; Thu, 8 Nov 2018 22:11:38 -0500 (EST) Date: Thu, 8 Nov 2018 22:11:38 -0500 From: "J. Bruce Fields" To: NeilBrown Cc: Jeff Layton , Alexander Viro , Martin Wilck , linux-fsdevel@vger.kernel.org, Frank Filz , linux-kernel@vger.kernel.org Subject: Re: [PATCH 01/12] fs/locks: rename some lists and pointers. Message-ID: <20181109031138.GB8831@fieldses.org> References: <154138128401.31651.1381177427603557514.stgit@noble> <154138144767.31651.11225349164396042986.stgit@noble> <20181108202659.GD6090@fieldses.org> <87muqjw0of.fsf@notabene.neil.brown.name> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <87muqjw0of.fsf@notabene.neil.brown.name> 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 Fri, Nov 09, 2018 at 11:32:16AM +1100, NeilBrown wrote: > On Thu, Nov 08 2018, J. Bruce Fields wrote: > > > On Mon, Nov 05, 2018 at 12:30:47PM +1100, NeilBrown wrote: > >> struct file lock contains an 'fl_next' pointer which > >> is used to point to the lock that this request is blocked > >> waiting for. So rename it to fl_blocker. > >> > >> The fl_blocked list_head in an active lock is the head of a list of > >> blocked requests. In a request it is a node in that list. > >> These are two distinct uses, so replace with two list_heads > >> with different names. > >> fl_blocked is the head of a list of blocked requests > >> fl_block is a node on that list. > > > > Reading these, I have a lot of trouble keeping fl_blocked, fl_block, and > > fl_blocker straight. Is it just me? > > "Naming is hard" - but that is no excuse. > I suspect it isn't just you. > > I particularly like "fl_blocker". > > error = wait_event_interruptible(fl->fl_wait, !fl->fl_blocker); > > reads well to me - wait until this lock has a no blocker - i.e. until > nothing blocks it. > > fl_blocked could be fl_blockees (the things that I block), but I doubt > that is an improvement. Maybe. The plural might help me remember that it's the head of a list? > > I guess they form a tree, so fl_children, fl_siblings, and fl_parent > > might be easier for me to keep straight. > > This requires one to know a priori that the tree records which locks > block which requests, which is obvious to us now, but might not be so > obvious in 5 years time when we look at this code again. > > An I have never really liked the "siblings" naming. 'struct dentry' uses > "d_child", which is possibly ever more confusing. > I would like it to be obvious that this is a list-member, not a > list-head. Rusty once posted patches to allow the list head to be a > different type to the members, but that fell on deaf ears. > So > fl_blocked_member > might be an improvement - this is a member of the fl_blocked list. > It would be easier to search for than fl_block - which needs > fl_block[^a-z] to avoid false positives. Yeah, maybe, if it's not too long. > I'd be quite happy to change fl_block is any two people can agree on a > better name. I'm less inclined to change the others without a really > good proposal. > > Hmmm. what is the inverse of "Block"? If I block you then you .... I > know, you are a usurper. > So > fl_blocker points to the "parent" > fl_usurpers is a list of "children" > fl_usurpers_member is my linkage in that list. > or not. "Usurper" isn't doing it for me. Yeah, I've got no clever scheme. --b.