diff mbox series

mm/vmalloc: Fix a typo in comment

Message ID 20200404060136.10838-1-hqjagain@gmail.com (mailing list archive)
State New, archived
Headers show
Series mm/vmalloc: Fix a typo in comment | expand

Commit Message

Qiujun Huang April 4, 2020, 6:01 a.m. UTC
There is a typo in comment, fix it.
"exeeds" -> "exceeds"

Signed-off-by: Qiujun Huang <hqjagain@gmail.com>
---
 mm/vmalloc.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/mm/vmalloc.c b/mm/vmalloc.c
index 1f46c3b86f9f..7d90159e84ba 100644
--- a/mm/vmalloc.c
+++ b/mm/vmalloc.c
@@ -3365,7 +3365,7 @@  struct vm_struct **pcpu_get_vm_areas(const unsigned long *offsets,
 			goto overflow;
 
 		/*
-		 * If required width exeeds current VA block, move
+		 * If required width exceeds current VA block, move
 		 * base downwards and then recheck.
 		 */
 		if (base + end > va->va_end) {