From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754561Ab3IIR3M (ORCPT ); Mon, 9 Sep 2013 13:29:12 -0400 Received: from zeniv.linux.org.uk ([195.92.253.2]:53759 "EHLO ZenIV.linux.org.uk" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753829Ab3IIR3L (ORCPT ); Mon, 9 Sep 2013 13:29:11 -0400 Date: Mon, 9 Sep 2013 18:29:05 +0100 From: Al Viro To: Waiman Long Cc: Linus Torvalds , linux-fsdevel@vger.kernel.org, linux-kernel@vger.kernel.org, "Chandramouleeswaran, Aswin" , "Norton, Scott J" , George Spelvin , John Stoffel Subject: Re: [PATCH v4 1/1] dcache: Translating dentry into pathname without taking rename_lock Message-ID: <20130909172905.GN13318@ZenIV.linux.org.uk> References: <1378743493-33546-1-git-send-email-Waiman.Long@hp.com> <1378743493-33546-2-git-send-email-Waiman.Long@hp.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1378743493-33546-2-git-send-email-Waiman.Long@hp.com> User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, Sep 09, 2013 at 12:18:13PM -0400, Waiman Long wrote: > +/** > + * read_seqbegin_or_lock - begin a sequence number check or locking block > + * lock: sequence lock > + * seq : sequence number to be checked > + * > + * First try it once optimistically without taking the lock. If that fails, > + * take the lock. The sequence number is also used as a marker for deciding > + * whether to be a reader (even) or writer (odd). > + * N.B. seq must be initialized to an even number to begin with. > + */ > +static inline void read_seqbegin_or_lock(seqlock_t *lock, int *seq) > +{ > + if (!(*seq & 1)) { /* Even */ > + *seq = read_seqbegin(lock); > + rcu_read_lock(); > + } else /* Odd */ > + write_seqlock(lock); > +} > +static inline int read_seqretry_or_unlock(seqlock_t *lock, int *seq) > +{ > + if (!(*seq & 1)) { /* Even */ > + rcu_read_unlock(); > + if (read_seqretry(lock, *seq)) { > + (*seq)++; /* Take writer lock */ > + return 1; > + } > + } else /* Odd */ > + write_sequnlock(lock); > + return 0; > +} I'm not sure I like mixing rcu_read_lock() into that - d_path() and friends can do that themselves just fine (it needs to be taken when seq is even), and e.g. d_walk() doesn't need it at all. Other than that, I'm OK with this variant.