Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S965075AbbHKOAk (ORCPT ); Tue, 11 Aug 2015 10:00:40 -0400 Received: from smtprelay0120.hostedemail.com ([216.40.44.120]:34475 "EHLO smtprelay.hostedemail.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S964936AbbHKOAi (ORCPT ); Tue, 11 Aug 2015 10:00:38 -0400 X-Session-Marker: 6A6F6540706572636865732E636F6D X-Spam-Summary: 2,0,0,,d41d8cd98f00b204,joe@perches.com,:::::::::::::::::::,RULES_HIT:41:355:371:372:379:541:599:968:973:988:989:1260:1277:1311:1313:1314:1345:1359:1373:1437:1461:1515:1516:1518:1534:1539:1568:1593:1594:1711:1714:1730:1747:1777:1792:2393:2559:2562:2828:3138:3139:3140:3141:3142:3622:3865:3868:3870:3871:3872:4321:5007:6117:6261:7903:8603:10004:10400:10848:11026:11232:11657:11658:11914:12043:12296:12517:12519:12740:13069:13311:13357:21080,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 X-HE-Tag: pear48_5c713167a062a X-Filterd-Recvd-Size: 1724 Message-ID: <1439301634.3244.2.camel@perches.com> Subject: Re: [PATCH 3/3] staging: lustre: Remove the space before \n From: Joe Perches To: Swee Hua Law Cc: andreas.dilger@intel.com, gregkh@linuxfoundation.org, Julia.Lawall@lip6.fr, hamohammed.sa@gmail.com, asaf.vertz@tandemg.com, viro@zeniv.linux.org.uk, HPDD-discuss@ml01.01.org, devel@driverdev.osuosl.org, linux-kernel@vger.kernel.org Date: Tue, 11 Aug 2015 07:00:34 -0700 In-Reply-To: <1439299951-2012-4-git-send-email-sweehua81@gmail.com> References: <1439299951-2012-1-git-send-email-sweehua81@gmail.com> <1439299951-2012-4-git-send-email-sweehua81@gmail.com> Content-Type: text/plain; charset="ISO-8859-1" X-Mailer: Evolution 3.12.11-0ubuntu3 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: 910 Lines: 20 On Tue, 2015-08-11 at 21:32 +0800, Swee Hua Law wrote: > Remove the extra space character right before \n in the string [] > diff --git a/drivers/staging/lustre/lustre/llite/lloop.c b/drivers/staging/lustre/lustre/llite/lloop.c [] > @@ -308,7 +308,7 @@ static unsigned int loop_get_bio(struct lloop_device *lo, struct bio **req) > rw = first->bi_rw; > bio = &lo->lo_bio; > while (*bio && (*bio)->bi_rw == rw) { > - CDEBUG(D_INFO, "bio sector %llu size %u count %u vcnt%u \n", > + CDEBUG(D_INFO, "bio sector %llu size %u count %u vcnt%u\n", More likely the space is misplaced and it should be: CDEBUG(D_INFO, "bio sector %llu size %u count %u vcnt %u\n" -- 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/