From mboxrd@z Thu Jan 1 00:00:00 1970 From: Christoph Hellwig Date: Sat, 2 Jun 2018 18:58:05 +0200 Subject: [Cluster-devel] [PATCH v6 2/9] iomap: Mark newly allocated buffer heads as new In-Reply-To: <20180602095717.31641-3-agruenba@redhat.com> References: <20180602095717.31641-1-agruenba@redhat.com> <20180602095717.31641-3-agruenba@redhat.com> Message-ID: <20180602165805.GA15847@lst.de> List-Id: To: cluster-devel.redhat.com MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit > case IOMAP_MAPPED: > - if (offset >= i_size_read(inode)) > + if ((iomap->flags & IOMAP_F_NEW) || offset >= i_size_read(inode)) Please split the line to stay withing 80 characters. Otherwise looks fine: Reviewed-by: Christoph Hellwig