Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752696AbbFDS33 (ORCPT ); Thu, 4 Jun 2015 14:29:29 -0400 Received: from aserp1040.oracle.com ([141.146.126.69]:24227 "EHLO aserp1040.oracle.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751672AbbFDS32 (ORCPT ); Thu, 4 Jun 2015 14:29:28 -0400 Message-ID: <557098FD.8090208@oracle.com> Date: Thu, 04 Jun 2015 13:29:17 -0500 From: Dave Kleikamp User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.7.0 MIME-Version: 1.0 To: Colin King , jfs-discussion@lists.sourceforge.net CC: linux-kernel@vger.kernel.org Subject: Re: [PATCH] jfs: fix indentation on if statement References: <1433437023-3252-1-git-send-email-colin.king@canonical.com> In-Reply-To: <1433437023-3252-1-git-send-email-colin.king@canonical.com> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit X-Source-IP: aserv0021.oracle.com [141.146.126.233] Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1304 Lines: 39 On 06/04/2015 11:57 AM, Colin King wrote: > From: Colin Ian King > > The if statement and closing brace are indented by 1 > extra space, so remove this extra spacing. Cosmetic > change only. Thanks. Pushed to jfs-next. > > Signed-off-by: Colin Ian King > --- > fs/jfs/inode.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/fs/jfs/inode.c b/fs/jfs/inode.c > index 070dc4b..28d69fa 100644 > --- a/fs/jfs/inode.c > +++ b/fs/jfs/inode.c > @@ -133,11 +133,11 @@ int jfs_write_inode(struct inode *inode, struct writeback_control *wbc) > * It has been committed since the last change, but was still > * on the dirty inode list. > */ > - if (!test_cflag(COMMIT_Dirty, inode)) { > + if (!test_cflag(COMMIT_Dirty, inode)) { > /* Make sure committed changes hit the disk */ > jfs_flush_journal(JFS_SBI(inode->i_sb)->log, wait); > return 0; > - } > + } > > if (jfs_commit_inode(inode, wait)) { > jfs_err("jfs_write_inode: jfs_commit_inode failed!"); > -- 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/