diff mbox series

ksm: fix typo in comment

Message ID 20220521111145.81697-94-Julia.Lawall@inria.fr (mailing list archive)
State New
Headers show
Series ksm: fix typo in comment | expand

Commit Message

Julia Lawall May 21, 2022, 11:11 a.m. UTC
Spelling mistake (triple letters) in comment.
Detected with the help of Coccinelle.

Signed-off-by: Julia Lawall <Julia.Lawall@inria.fr>

---
 mm/ksm.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Muchun Song May 21, 2022, 12:06 p.m. UTC | #1
On Sat, May 21, 2022 at 01:11:44PM +0200, Julia Lawall wrote:
> Spelling mistake (triple letters) in comment.
> Detected with the help of Coccinelle.
> 
> Signed-off-by: Julia Lawall <Julia.Lawall@inria.fr>

Reviewed-by: Muchun Song <songmuchun@bytedance.com>
diff mbox series

Patch

diff --git a/mm/ksm.c b/mm/ksm.c
index 9ee82c9bce94..54f78c9eecae 100644
--- a/mm/ksm.c
+++ b/mm/ksm.c
@@ -1590,7 +1590,7 @@  static struct page *stable_tree_search(struct page *page)
 		 * the rbtree instead as a regular stable_node (in
 		 * order to collapse the stable_node chain if a single
 		 * stable_node dup was found in it). In such case the
-		 * stable_node is overwritten by the calleee to point
+		 * stable_node is overwritten by the callee to point
 		 * to the stable_node_dup that was collapsed in the
 		 * stable rbtree and stable_node will be equal to
 		 * stable_node_dup like if the chain never existed.