]> www.infradead.org Git - users/jedix/linux-maple.git/commitdiff
mm: fix typos in VMA comments
authorYe Liu <liuye@kylinos.cn>
Thu, 14 Aug 2025 07:37:59 +0000 (15:37 +0800)
committerAndrew Morton <akpm@linux-foundation.org>
Fri, 12 Sep 2025 00:25:00 +0000 (17:25 -0700)
Fix the following typos in VMA-related files:
1. "operationr" -> "operation" in mm/vma.h
2. "initialisaing" -> "initializing" in mm/vma_init.c

Link: https://lkml.kernel.org/r/20250814073800.13617-1-ye.liu@linux.dev
Signed-off-by: Ye Liu <liuye@kylinos.cn>
Reviewed-by: Lorenzo Stoakes <lorenzo.stoakes@oracle.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
mm/vma.h
mm/vma_init.c

index b123a9cdedb0d60667741f62d556f2bab6d8bedd..bcdc261c5b15c850f3f84170aaa9316e06ae68bb 100644 (file)
--- a/mm/vma.h
+++ b/mm/vma.h
@@ -145,7 +145,7 @@ struct vma_merge_struct {
         */
        bool __remove_middle :1;
        /*
-        * Internal flag used during the merge operationr to indicate we will
+        * Internal flag used during the merge operation to indicate we will
         * remove vmg->next.
         */
        bool __remove_next :1;
index 8e53c7943561e7324e7992946b4065dec1149b82..d847c6557261df49e06c845524afd6ad067a951d 100644 (file)
@@ -1,7 +1,7 @@
 // SPDX-License-Identifier: GPL-2.0-or-later
 
 /*
- * Functions for initialisaing, allocating, freeing and duplicating VMAs. Shared
+ * Functions for initializing, allocating, freeing and duplicating VMAs. Shared
  * between CONFIG_MMU and non-CONFIG_MMU kernel configurations.
  */