aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBhaskar Chowdhury <[email protected]>2021-04-29 22:54:54 -0700
committerLinus Torvalds <[email protected]>2021-04-30 11:20:36 -0700
commit0b5121ef85102edc936b199fb239a1f8cce48018 (patch)
tree00c89369fcda34a89646faf27a3a88aec97a0f4c
parentdc84207d00bef4a5d826e68bc0a310327b464fcf (diff)
mm/kmemleak.c: fix a typo
s/interruptable/interruptible/ Link: https://lkml.kernel.org/r/[email protected] Signed-off-by: Bhaskar Chowdhury <[email protected]> Acked-by: Randy Dunlap <[email protected]> Signed-off-by: Andrew Morton <[email protected]> Signed-off-by: Linus Torvalds <[email protected]>
-rw-r--r--mm/kmemleak.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mm/kmemleak.c b/mm/kmemleak.c
index fe6e3ae8e8c6..92a2d4885808 100644
--- a/mm/kmemleak.c
+++ b/mm/kmemleak.c
@@ -1203,7 +1203,7 @@ static void update_refs(struct kmemleak_object *object)
}
/*
- * Memory scanning is a long process and it needs to be interruptable. This
+ * Memory scanning is a long process and it needs to be interruptible. This
* function checks whether such interrupt condition occurred.
*/
static int scan_should_stop(void)