From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754756AbbGFT0R (ORCPT ); Mon, 6 Jul 2015 15:26:17 -0400 Received: from mail1.windriver.com ([147.11.146.13]:42445 "EHLO mail1.windriver.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752130AbbGFT0P (ORCPT ); Mon, 6 Jul 2015 15:26:15 -0400 Date: Mon, 6 Jul 2015 15:25:26 -0400 From: Paul Gortmaker To: Masahiro Yamada CC: , Davidlohr Bueso , , Joonsoo Kim , Christoph Hellwig , Leon Romanovsky , "Kirill A. Shutemov" , Andrea Arcangeli , "Peter Zijlstra (Intel)" , Andrew Morton Subject: Re: [PATCH v2] mm: nommu: fix typos in comment blocks Message-ID: <20150706192525.GA16724@windriver.com> References: <1436155277-21769-1-git-send-email-yamada.masahiro@socionext.com> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Disposition: inline In-Reply-To: <1436155277-21769-1-git-send-email-yamada.masahiro@socionext.com> User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org [[PATCH v2] mm: nommu: fix typos in comment blocks] On 06/07/2015 (Mon 13:01) Masahiro Yamada wrote: > continguos -> contiguous > > Signed-off-by: Masahiro Yamada I'd suggested this go via the trivial tree, but instead I see it is in my inbox now, and still in everyone else's inbox, and yet not Cc'd to the trivial tree, which leaves me confused... Paul. -- > --- > > Changes in v2: > - Remove '.' from the end of the subject > > mm/nommu.c | 10 +++++----- > 1 file changed, 5 insertions(+), 5 deletions(-) > > diff --git a/mm/nommu.c b/mm/nommu.c > index 58ea364..0b34f40 100644 > --- a/mm/nommu.c > +++ b/mm/nommu.c > @@ -324,12 +324,12 @@ long vwrite(char *buf, char *addr, unsigned long count) > } > > /* > - * vmalloc - allocate virtually continguos memory > + * vmalloc - allocate virtually contiguous memory > * > * @size: allocation size > * > * Allocate enough pages to cover @size from the page level > - * allocator and map them into continguos kernel virtual space. > + * allocator and map them into contiguous kernel virtual space. > * > * For tight control over page level allocator and protection flags > * use __vmalloc() instead. > @@ -341,12 +341,12 @@ void *vmalloc(unsigned long size) > EXPORT_SYMBOL(vmalloc); > > /* > - * vzalloc - allocate virtually continguos memory with zero fill > + * vzalloc - allocate virtually contiguous memory with zero fill > * > * @size: allocation size > * > * Allocate enough pages to cover @size from the page level > - * allocator and map them into continguos kernel virtual space. > + * allocator and map them into contiguous kernel virtual space. > * The memory allocated is set to zero. > * > * For tight control over page level allocator and protection flags > @@ -420,7 +420,7 @@ void *vmalloc_exec(unsigned long size) > * @size: allocation size > * > * Allocate enough 32bit PA addressable pages to cover @size from the > - * page level allocator and map them into continguos kernel virtual space. > + * page level allocator and map them into contiguous kernel virtual space. > */ > void *vmalloc_32(unsigned long size) > { > -- > 1.9.1 >