Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1163613AbdDXAIe (ORCPT ); Sun, 23 Apr 2017 20:08:34 -0400 Received: from smtprelay0178.hostedemail.com ([216.40.44.178]:43233 "EHLO smtprelay.hostedemail.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1754240AbdDXAI3 (ORCPT ); Sun, 23 Apr 2017 20:08:29 -0400 X-Session-Marker: 6A6F6540706572636865732E636F6D X-Spam-Summary: 2,0,0,,d41d8cd98f00b204,joe@perches.com,:::::::::,RULES_HIT:41:355:379:541:599: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:2393:2559:2562:2828:3138:3139:3140:3141:3142:3350:3622:3866:3867:3868:3870:4321:5007:10004:10400:10848:11026:11232:11658:11914:12048:12296:12740:12760:12895:13069:13095:13311:13357:13439:14659:14721:21080:21433:30054:30091,0,RBL:none,CacheIP:none,Bayesian:0.5,0.5,0.5,Netcheck:none,DomainCache:0,MSF:not bulk,SPF:,MSBL:0,DNSBL:none,Custom_rules:0:0:0,LFtime:1,LUA_SUMMARY:none X-HE-Tag: can37_48b4cd433095d X-Filterd-Recvd-Size: 1604 Message-ID: <1492992496.30293.47.camel@perches.com> Subject: Re: [PATCH] ore: fix spelling mistake: "Multples" -> "multiples" From: Joe Perches To: Boaz Harrosh , Colin King , Benny Halevy , osd-dev@open-osd.org Cc: linux-kernel@vger.kernel.org Date: Sun, 23 Apr 2017 17:08:16 -0700 In-Reply-To: <95d65006-65a1-a347-3b39-f563b600c2af@electrozaur.com> References: <20170422124823.10107-1-colin.king@canonical.com> <95d65006-65a1-a347-3b39-f563b600c2af@electrozaur.com> Content-Type: text/plain; charset="ISO-8859-1" X-Mailer: Evolution 3.22.6-1ubuntu1 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: 688 Lines: 18 On Sun, 2017-04-23 at 12:37 +0300, Boaz Harrosh wrote: > On 04/22/2017 03:48 PM, Colin King wrote: > > trivial fix to spelling mistake in ORE_ERR message and make word all > > lower case. [] > > diff --git a/fs/exofs/ore.c b/fs/exofs/ore.c [] > > @@ -68,7 +68,7 @@ int ore_verify_layout(unsigned total_comps, struct ore_layout *layout) > > } > > if (0 != (layout->stripe_unit & ~PAGE_MASK)) { > > ORE_ERR("Stripe Unit(0x%llx)" > > - " must be Multples of PAGE_SIZE(0x%lx)\n", > > + " must be multiples of PAGE_SIZE(0x%lx)\n", Perhaps better would be: ORE_ERR("Stripe unit (0x%llx) must be a multiple of PAGE_SIZE (0x%llx)\n", _LLU(layout->stripe_unit), PAGE_SIZE);