Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751600AbaKGEXH (ORCPT ); Thu, 6 Nov 2014 23:23:07 -0500 Received: from ppsw-50.csi.cam.ac.uk ([131.111.8.150]:57315 "EHLO ppsw-50.csi.cam.ac.uk" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751225AbaKGEXE convert rfc822-to-8bit (ORCPT ); Thu, 6 Nov 2014 23:23:04 -0500 X-Cam-AntiVirus: found ScamNailer.Phish.viro_AT_zeniv.linux.org.uk X-Cam-ScannerInfo: http://www.cam.ac.uk/cs/email/scanner/ Subject: Re: [PATCH v5 7/7] add a flag for per-operation O_DSYNC semantics Mime-Version: 1.0 (Mac OS X Mail 8.0 \(1990.1\)) Content-Type: text/plain; charset=us-ascii From: Anton Altaparmakov In-Reply-To: Date: Fri, 7 Nov 2014 06:22:48 +0200 Cc: Milosz Tanski , linux-kernel@vger.kernel.org, Christoph Hellwig , Christoph Hellwig , linux-fsdevel@vger.kernel.org, linux-aio@kvack.org, Mel Gorman , Volker Lendecke , Tejun Heo , "Theodore Ts'o" , Al Viro , linux-api@vger.kernel.org, Michael Kerrisk , linux-arch@vger.kernel.org, ceph-devel@vger.kernel.org, fuse-devel@lists.sourceforge.net, linux-nfs@vger.kernel.org, ocfs2-devel@oss.oracle.com, linux-mm@kvack.org Content-Transfer-Encoding: 8BIT Message-Id: References: To: Jeff Moyer X-Mailer: Apple Mail (2.1990.1) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi Jeff, > On 7 Nov 2014, at 01:46, Jeff Moyer wrote: > > Milosz Tanski writes: > >> - if (type == READ && (flags & RWF_NONBLOCK)) >> - return -EAGAIN; >> + if (type == READ) { >> + if (flags & RWF_NONBLOCK) >> + return -EAGAIN; >> + } else { >> + if (flags & RWF_DSYNC) >> + return -EINVAL; >> + } > > Minor nit, but I'd rather read something that looks like this: > > if (type == READ && (flags & RWF_NONBLOCK)) > return -EAGAIN; > else if (type == WRITE && (flags & RWF_DSYNC)) > return -EINVAL; But your version is less logically efficient for the case where "type == READ" is true and "flags & RWF_NONBLOCK" is false because your version then has to do the "if (type == WRITE" check before discovering it does not need to take that branch either, whilst the original version does not have to do such a test at all. Best regards, Anton > I won't lose sleep over it, though. > > Reviewed-by: Jeff Moyer -- Anton Altaparmakov (replace at with @) University of Cambridge Information Services, Roger Needham Building 7 JJ Thomson Avenue, Cambridge, CB3 0RB, UK -- 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/