Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752005AbcKGCrq (ORCPT ); Sun, 6 Nov 2016 21:47:46 -0500 Received: from smtprelay0184.hostedemail.com ([216.40.44.184]:42689 "EHLO smtprelay.hostedemail.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1751633AbcKGCrq (ORCPT ); Sun, 6 Nov 2016 21:47:46 -0500 X-Session-Marker: 6A6F6540706572636865732E636F6D X-Spam-Summary: 2,0,0,,d41d8cd98f00b204,joe@perches.com,:::::::::::::::,RULES_HIT:41:355:379:541:599:800:960:973:988:989:1260:1277:1311:1313:1314:1345:1359:1373:1437:1515:1516:1518:1534:1539:1593:1594:1711:1714:1730:1747:1777:1792:2194:2199:2393:2559:2562:2828:3138:3139:3140:3141:3142:3350:3622:3867:3870:3872:4321:4605:5007:10004:10400:10848:11026:11232:11657:11658:11914:12043:12296:12740:12760:13069:13311:13357:13439:14181:14659:14721:21080:30054:30064:30091,0,RBL:none,CacheIP:none,Bayesian:0.5,0.5,0.5,Netcheck:none,DomainCache:0,MSF:not bulk,SPF:fn,MSBL:0,DNSBL:none,Custom_rules:0:0:0,LFtime:1,LUA_SUMMARY:none X-HE-Tag: meal13_7d85aa8508e3e X-Filterd-Recvd-Size: 1645 Message-ID: <1478486861.13362.2.camel@perches.com> Subject: Re: [PATCH] staging: lustre: o2iblnd: replace space indentation with tabs From: Joe Perches To: James Simmons , Nicholas Hanley Cc: oleg.drokin@intel.com, andreas.dilger@intel.com, gregkh@linuxfoundation.org, lustre-devel@lists.lustre.org, devel@driverdev.osuosl.org, linux-kernel@vger.kernel.org Date: Sun, 06 Nov 2016 18:47:41 -0800 In-Reply-To: References: <20161105000256.11714-1-nicholasjhanley@gmail.com> Content-Type: text/plain; charset="ISO-8859-1" X-Mailer: Evolution 3.22.1-0ubuntu2 Mime-Version: 1.0 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 625 Lines: 14 On Mon, 2016-11-07 at 02:02 +0000, James Simmons wrote: > > This patch fixes all CODE_INDENT checkpatch errors in o2iblnd. > Reviewed-by: James Simmons [] > > diff --git a/drivers/staging/lustre/lnet/klnds/o2iblnd/o2iblnd.c b/drivers/staging/lustre/lnet/klnds/o2iblnd/o2iblnd.c [] > > @@ -1637,7 +1637,7 @@ int kiblnd_fmr_pool_map(struct kib_fmr_poolset *fps, struct kib_tx *tx, > > { > > __u64 *pages = tx->tx_pages; > > bool is_rx = (rd != tx->tx_rd); > > - bool tx_pages_mapped = 0; > > + bool tx_pages_mapped = 0; It's generally better to use bool assignments to true/false not 1/0.