From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-0.6 required=3.0 tests=DKIM_INVALID,DKIM_SIGNED, HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id B9135C2BA83 for ; Wed, 12 Feb 2020 07:33:55 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 8A8B721569 for ; Wed, 12 Feb 2020 07:33:55 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=fail reason="signature verification failed" (2048-bit key) header.d=infradead.org header.i=@infradead.org header.b="kGdvi9Zx" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728280AbgBLHdy (ORCPT ); Wed, 12 Feb 2020 02:33:54 -0500 Received: from bombadil.infradead.org ([198.137.202.133]:35036 "EHLO bombadil.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1728216AbgBLHdy (ORCPT ); Wed, 12 Feb 2020 02:33:54 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=bombadil.20170209; h=In-Reply-To:Content-Type:MIME-Version :References:Message-ID:Subject:Cc:To:From:Date:Sender:Reply-To: Content-Transfer-Encoding:Content-ID:Content-Description; bh=INswDW5zsWlhkjkAHTUowJA6lFKXaQvgekj3BIywAjI=; b=kGdvi9ZxnBpte6YNv9i7UByEgc yyC9wvVvMHLdOjLJDre//fu6ES/afmFPFTgLW0tXGlI9G9ZSRFFrxkHuAukMjJ1CElchsUKxhZ76A pLXBRB2JIk5Ms1M4QIA13ajANxOQecK9eOjO8O18G8Mm4yJ1bD19RhO0AuHeBApu8Tq5gF4UC7VrJ pro8fJaqI4yktJwkpVKOnwU+ARuzzxN9D8W+L3ENs6WhCLVqy73QHl2+EJWArkAH9DRzf82G+HUao xAdFPNpl3HNwyUBqxAJtUXXVSuQ4AOynRhCz/vI3ruiWRGC1Sp44UU1XIVvteiazmwrsF8KOQTTWq psGlYJlg==; Received: from hch by bombadil.infradead.org with local (Exim 4.92.3 #3 (Red Hat Linux)) id 1j1mWw-0003sd-Ep; Wed, 12 Feb 2020 07:33:54 +0000 Date: Tue, 11 Feb 2020 23:33:54 -0800 From: Christoph Hellwig To: Bob Peterson Cc: linux-fsdevel@vger.kernel.org, viro@zeniv.linux.org.uk, Andreas Gruenbacher Subject: Re: [PATCH] fs: clean up __block_commit_write Message-ID: <20200212073354.GA7068@infradead.org> References: <1527244171.7695063.1581449058353.JavaMail.zimbra@redhat.com> <1350360444.7695146.1581449194730.JavaMail.zimbra@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1350360444.7695146.1581449194730.JavaMail.zimbra@redhat.com> X-SRS-Rewrite: SMTP reverse-path rewritten from by bombadil.infradead.org. See http://www.infradead.org/rpr.html Sender: linux-fsdevel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-fsdevel@vger.kernel.org > - __block_commit_write(inode, page, start, start+copied); > + __block_commit_write(page, start, start+copied); Please throew in the missing whitespaces around the + here. Otherwise looks fine: Reviewed-by: Christoph Hellwig