* [PATCH v2] mm: nommu: fix typos in comment blocks
@ 2015-07-06 4:01 Masahiro Yamada
2015-07-06 14:37 ` Paul Gortmaker
2015-07-06 19:25 ` Paul Gortmaker
0 siblings, 2 replies; 5+ messages in thread
From: Masahiro Yamada @ 2015-07-06 4:01 UTC (permalink / raw)
To: linux-mm
Cc: Masahiro Yamada, Davidlohr Bueso, Paul Gortmaker, linux-kernel,
Joonsoo Kim, Christoph Hellwig, Leon Romanovsky,
Kirill A. Shutemov, Andrea Arcangeli, Peter Zijlstra (Intel),
Andrew Morton
continguos -> contiguous
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
---
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
--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org. For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>
^ permalink raw reply [flat|nested] 5+ messages in thread* Re: [PATCH v2] mm: nommu: fix typos in comment blocks
2015-07-06 4:01 [PATCH v2] mm: nommu: fix typos in comment blocks Masahiro Yamada
@ 2015-07-06 14:37 ` Paul Gortmaker
2015-07-06 15:19 ` Masahiro Yamada
2015-07-06 19:25 ` Paul Gortmaker
1 sibling, 1 reply; 5+ messages in thread
From: Paul Gortmaker @ 2015-07-06 14:37 UTC (permalink / raw)
To: Masahiro Yamada
Cc: linux-mm, Davidlohr Bueso, linux-kernel, Joonsoo Kim,
Christoph Hellwig, Leon Romanovsky, Kirill A. Shutemov,
Andrea Arcangeli, Peter Zijlstra (Intel),
Andrew Morton
[[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 <yamada.masahiro@socionext.com>
Perhaps in the future, it might not be a bad idea to feed such changes
like this in via the trivial tree? From MAINTAINERS:
TRIVIAL PATCHES
M: Jiri Kosina <trivial@kernel.org>
T: git
git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
S: Maintained
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
>
--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org. For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>
^ permalink raw reply [flat|nested] 5+ messages in thread* Re: [PATCH v2] mm: nommu: fix typos in comment blocks
2015-07-06 14:37 ` Paul Gortmaker
@ 2015-07-06 15:19 ` Masahiro Yamada
0 siblings, 0 replies; 5+ messages in thread
From: Masahiro Yamada @ 2015-07-06 15:19 UTC (permalink / raw)
To: Paul Gortmaker
Cc: linux-mm, Davidlohr Bueso, Linux Kernel Mailing List,
Joonsoo Kim, Christoph Hellwig, Leon Romanovsky,
Kirill A. Shutemov, Andrea Arcangeli, Peter Zijlstra (Intel),
Andrew Morton
Hi Paul,
2015-07-06 23:37 GMT+09:00 Paul Gortmaker <paul.gortmaker@windriver.com>:
> [[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 <yamada.masahiro@socionext.com>
>
> Perhaps in the future, it might not be a bad idea to feed such changes
> like this in via the trivial tree? From MAINTAINERS:
>
> TRIVIAL PATCHES
> M: Jiri Kosina <trivial@kernel.org>
> T: git
> git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
> S: Maintained
Uh, I did not know such a tree exist.
I found more typos in other sub-systems, so
I'd like to retract this patch,
and then re-send it to trivial.git along with other typo fixes.
Thanks,
--
Best Regards
Masahiro Yamada
--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org. For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH v2] mm: nommu: fix typos in comment blocks
2015-07-06 4:01 [PATCH v2] mm: nommu: fix typos in comment blocks Masahiro Yamada
2015-07-06 14:37 ` Paul Gortmaker
@ 2015-07-06 19:25 ` Paul Gortmaker
2015-07-07 1:22 ` Masahiro Yamada
1 sibling, 1 reply; 5+ messages in thread
From: Paul Gortmaker @ 2015-07-06 19:25 UTC (permalink / raw)
To: Masahiro Yamada
Cc: linux-mm, Davidlohr Bueso, linux-kernel, Joonsoo Kim,
Christoph Hellwig, Leon Romanovsky, Kirill A. Shutemov,
Andrea Arcangeli, Peter Zijlstra (Intel),
Andrew Morton
[[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 <yamada.masahiro@socionext.com>
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
>
--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org. For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>
^ permalink raw reply [flat|nested] 5+ messages in thread* Re: [PATCH v2] mm: nommu: fix typos in comment blocks
2015-07-06 19:25 ` Paul Gortmaker
@ 2015-07-07 1:22 ` Masahiro Yamada
0 siblings, 0 replies; 5+ messages in thread
From: Masahiro Yamada @ 2015-07-07 1:22 UTC (permalink / raw)
To: Paul Gortmaker
Cc: linux-mm, Davidlohr Bueso, Linux Kernel Mailing List,
Joonsoo Kim, Christoph Hellwig, Leon Romanovsky,
Kirill A. Shutemov, Andrea Arcangeli, Peter Zijlstra (Intel),
Andrew Morton
Hi Paul
2015-07-07 4:25 GMT+09:00 Paul Gortmaker <paul.gortmaker@windriver.com>:
> [[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 <yamada.masahiro@socionext.com>
>
> 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.
I found more misspelled "contiguous" in other files,
so this patch has been replaced with the following:
https://lkml.org/lkml/2015/7/6/954
The new one has been sent to Jiri Kosina.
--
Best Regards
Masahiro Yamada
--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org. For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2015-07-07 1:23 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-07-06 4:01 [PATCH v2] mm: nommu: fix typos in comment blocks Masahiro Yamada
2015-07-06 14:37 ` Paul Gortmaker
2015-07-06 15:19 ` Masahiro Yamada
2015-07-06 19:25 ` Paul Gortmaker
2015-07-07 1:22 ` Masahiro Yamada
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox