diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2015-07-07 01:14:59 (GMT) |
---|---|---|
committer | Jiri Kosina <jkosina@suse.com> | 2015-08-07 12:46:24 (GMT) |
commit | e1c05067c323fb92d27418fb3586171bd7ce2e12 (patch) | |
tree | 3b232a199736e0360bb32741c07658dc096a58a6 /mm | |
parent | 6ade97724fb571338a0f82ecaac5bced2f43f042 (diff) | |
download | linux-e1c05067c323fb92d27418fb3586171bd7ce2e12.tar.xz |
treewide: fix typos in comment blocks
Looks like the word "contiguous" is often mistyped.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Signed-off-by: Jiri Kosina <jkosina@suse.com>
Diffstat (limited to 'mm')
-rw-r--r-- | mm/nommu.c | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -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) { |