Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S261231AbVDZBel (ORCPT ); Mon, 25 Apr 2005 21:34:41 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S261236AbVDZBel (ORCPT ); Mon, 25 Apr 2005 21:34:41 -0400 Received: from smtp.istop.com ([66.11.167.126]:9648 "EHLO smtp.istop.com") by vger.kernel.org with ESMTP id S261231AbVDZBej (ORCPT ); Mon, 25 Apr 2005 21:34:39 -0400 From: Daniel Phillips To: Nikita Danilov Subject: Re: [PATCH 1b/7] dlm: core locking Date: Mon, 25 Apr 2005 21:34:48 -0400 User-Agent: KMail/1.7 Cc: David Teigland , akpm@osdl.org, Linux Kernel Mailing List References: <20050425165826.GB11938@redhat.com> <200504251644.21566.phillips@istop.com> <17005.28381.102652.36606@gargle.gargle.HOWL> In-Reply-To: <17005.28381.102652.36606@gargle.gargle.HOWL> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200504252134.49168.phillips@istop.com> Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1175 Lines: 38 On Monday 25 April 2005 18:27, Nikita Danilov wrote: > > > > + > > > > +static int is_remote(struct dlm_rsb *r) > > > > +{ > > > > + DLM_ASSERT(r->res_nodeid >= 0, dlm_print_rsb(r);); > > > > + return r->res_nodeid ? TRUE : FALSE; > > > > +} > > > > > > This can be simply > > > > > > return r->res_nodeid; > > > > Not quite the same. Perhaps you meant: > > > > return !!r->res_nodeid; > > Strictly speaking yes (assuming TRUE is defined as 1), but name > is_remote() implies usages like > > if (is_remote(r)) { > do_something(); > } > > in such contexts !! is not necessary. Any objection to making it inline and let the compiler delete the redundant code? The princple is: it's better to spell out "!!" when that's intended, rather than build in a nasty surprise for later. The inline code will be smaller than a function call anyway. Regards, Daniel - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/