aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorQiujun Huang <[email protected]>2020-04-06 20:04:02 -0700
committerLinus Torvalds <[email protected]>2020-04-07 10:43:38 -0700
commitd8cc323d951e7903b5efffad292116148815dc4e (patch)
tree3f2169da9a02cd8e462613fc47872d33c92c570f
parent5093c5872be3a041917828b2b53e9f981d754768 (diff)
mm/vmalloc: fix a typo in comment
There is a typo in comment, fix it. "exeeds" -> "exceeds" Signed-off-by: Qiujun Huang <[email protected]> Signed-off-by: Andrew Morton <[email protected]> Reviewed-by: Andrew Morton <[email protected]> Link: http://lkml.kernel.org/r/[email protected] Signed-off-by: Linus Torvalds <[email protected]>
-rw-r--r--mm/vmalloc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mm/vmalloc.c b/mm/vmalloc.c
index 6b8eeb0ecee5..399f219544f7 100644
--- a/mm/vmalloc.c
+++ b/mm/vmalloc.c
@@ -3368,7 +3368,7 @@ retry:
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) {