diff options
author | Andreas Ziegler <andreas.ziegler@fau.de> | 2016-03-15 17:55:33 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2016-03-15 19:55:16 -0400 |
commit | 07061aab2f750bbf61337b922aa8a245b5da85e1 (patch) | |
tree | 2ee8c3d0b0505e8ee874afe2a539cfae5d1a51d8 | |
parent | ea6eabb05b26bd3d6f60b29b77a03bc61479fc0f (diff) |
mm: fix two typos in comments for to_vmem_altmap()
Commit 4b94ffdc4163 ("x86, mm: introduce vmem_altmap to augment
vmemmap_populate()"), introduced the to_vmem_altmap() function.
The comments in this function contain two typos (one misspelling of the
Kconfig option CONFIG_SPARSEMEM_VMEMMAP, and one missing letter 'n'),
let's fix them up.
Signed-off-by: Andreas Ziegler <andreas.ziegler@fau.de>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r-- | kernel/memremap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/memremap.c b/kernel/memremap.c index fb9b88787ebc..584febd13e2e 100644 --- a/kernel/memremap.c +++ b/kernel/memremap.c | |||
@@ -391,7 +391,7 @@ struct vmem_altmap *to_vmem_altmap(unsigned long memmap_start) | |||
391 | /* | 391 | /* |
392 | * 'memmap_start' is the virtual address for the first "struct | 392 | * 'memmap_start' is the virtual address for the first "struct |
393 | * page" in this range of the vmemmap array. In the case of | 393 | * page" in this range of the vmemmap array. In the case of |
394 | * CONFIG_SPARSE_VMEMMAP a page_to_pfn conversion is simple | 394 | * CONFIG_SPARSEMEM_VMEMMAP a page_to_pfn conversion is simple |
395 | * pointer arithmetic, so we can perform this to_vmem_altmap() | 395 | * pointer arithmetic, so we can perform this to_vmem_altmap() |
396 | * conversion without concern for the initialization state of | 396 | * conversion without concern for the initialization state of |
397 | * the struct page fields. | 397 | * the struct page fields. |
@@ -400,7 +400,7 @@ struct vmem_altmap *to_vmem_altmap(unsigned long memmap_start) | |||
400 | struct dev_pagemap *pgmap; | 400 | struct dev_pagemap *pgmap; |
401 | 401 | ||
402 | /* | 402 | /* |
403 | * Uncoditionally retrieve a dev_pagemap associated with the | 403 | * Unconditionally retrieve a dev_pagemap associated with the |
404 | * given physical address, this is only for use in the | 404 | * given physical address, this is only for use in the |
405 | * arch_{add|remove}_memory() for setting up and tearing down | 405 | * arch_{add|remove}_memory() for setting up and tearing down |
406 | * the memmap. | 406 | * the memmap. |