linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/2] mm: clear spelling mistakes
@ 2021-05-17  6:51 Zhen Lei
  2021-05-17  6:51 ` [PATCH 1/2] mm: fix spelling mistakes in header files Zhen Lei
  2021-05-17  6:51 ` [PATCH 2/2] mm: fix spelling mistakes in under directory mm Zhen Lei
  0 siblings, 2 replies; 6+ messages in thread
From: Zhen Lei @ 2021-05-17  6:51 UTC (permalink / raw)
  To: Andrew Morton, Naoya Horiguchi, linux-mm; +Cc: Zhen Lei

The files being checked:
mm/
include/linux/mm*.h, but excluded mmu_notifier.h


Zhen Lei (2):
  mm: fix spelling mistakes in header files
  mm: fix spelling mistakes in under directory mm

 include/linux/mm.h       | 2 +-
 include/linux/mm_types.h | 4 ++--
 include/linux/mmzone.h   | 2 +-
 mm/internal.h            | 2 +-
 mm/memory-failure.c      | 2 +-
 mm/memory_hotplug.c      | 4 ++--
 mm/page_alloc.c          | 2 +-
 mm/swap.c                | 2 +-
 mm/swapfile.c            | 2 +-
 9 files changed, 11 insertions(+), 11 deletions(-)

-- 
2.25.1




^ permalink raw reply	[flat|nested] 6+ messages in thread

* [PATCH 1/2] mm: fix spelling mistakes in header files
  2021-05-17  6:51 [PATCH 0/2] mm: clear spelling mistakes Zhen Lei
@ 2021-05-17  6:51 ` Zhen Lei
  2021-05-18 19:39   ` Souptick Joarder
  2021-05-17  6:51 ` [PATCH 2/2] mm: fix spelling mistakes in under directory mm Zhen Lei
  1 sibling, 1 reply; 6+ messages in thread
From: Zhen Lei @ 2021-05-17  6:51 UTC (permalink / raw)
  To: Andrew Morton, Naoya Horiguchi, linux-mm; +Cc: Zhen Lei

Fix some spelling mistakes in comments:
statments ==> statements
adresses ==> addresses
aggresive ==> aggressive
datas ==> data

Signed-off-by: Zhen Lei <thunder.leizhen@huawei.com>
---
 include/linux/mm.h       | 2 +-
 include/linux/mm_types.h | 4 ++--
 include/linux/mmzone.h   | 2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/include/linux/mm.h b/include/linux/mm.h
index c274f75efcf9..12d13c8708a5 100644
--- a/include/linux/mm.h
+++ b/include/linux/mm.h
@@ -155,7 +155,7 @@ extern int mmap_rnd_compat_bits __read_mostly;
 /* This function must be updated when the size of struct page grows above 80
  * or reduces below 56. The idea that compiler optimizes out switch()
  * statement, and only leaves move/store instructions. Also the compiler can
- * combine write statments if they are both assignments and can be reordered,
+ * combine write statements if they are both assignments and can be reordered,
  * this can result in several of the writes here being dropped.
  */
 #define	mm_zero_struct_page(pp) __mm_zero_struct_page(pp)
diff --git a/include/linux/mm_types.h b/include/linux/mm_types.h
index 5aacc1c10a45..7034f5673d26 100644
--- a/include/linux/mm_types.h
+++ b/include/linux/mm_types.h
@@ -397,7 +397,7 @@ struct mm_struct {
 		unsigned long mmap_base;	/* base of mmap area */
 		unsigned long mmap_legacy_base;	/* base of mmap area in bottom-up allocations */
 #ifdef CONFIG_HAVE_ARCH_COMPAT_MMAP_BASES
-		/* Base adresses for compatible mmap() */
+		/* Base addresses for compatible mmap() */
 		unsigned long mmap_compat_base;
 		unsigned long mmap_compat_legacy_base;
 #endif
@@ -439,7 +439,7 @@ struct mm_struct {
 		 * @has_pinned: Whether this mm has pinned any pages.  This can
 		 * be either replaced in the future by @pinned_vm when it
 		 * becomes stable, or grow into a counter on its own. We're
-		 * aggresive on this bit now - even if the pinned pages were
+		 * aggressive on this bit now - even if the pinned pages were
 		 * unpinned later on, we'll still keep this bit set for the
 		 * lifecycle of this mm just for simplicity.
 		 */
diff --git a/include/linux/mmzone.h b/include/linux/mmzone.h
index 0d53eba1c383..7d7d86220f01 100644
--- a/include/linux/mmzone.h
+++ b/include/linux/mmzone.h
@@ -113,7 +113,7 @@ static inline bool free_area_empty(struct free_area *area, int migratetype)
 struct pglist_data;
 
 /*
- * Add a wild amount of padding here to ensure datas fall into separate
+ * Add a wild amount of padding here to ensure data fall into separate
  * cachelines.  There are very few zone structures in the machine, so space
  * consumption is not a concern here.
  */
-- 
2.25.1




^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [PATCH 2/2] mm: fix spelling mistakes in under directory mm
  2021-05-17  6:51 [PATCH 0/2] mm: clear spelling mistakes Zhen Lei
  2021-05-17  6:51 ` [PATCH 1/2] mm: fix spelling mistakes in header files Zhen Lei
@ 2021-05-17  6:51 ` Zhen Lei
  2021-05-18 19:41   ` Souptick Joarder
  1 sibling, 1 reply; 6+ messages in thread
From: Zhen Lei @ 2021-05-17  6:51 UTC (permalink / raw)
  To: Andrew Morton, Naoya Horiguchi, linux-mm; +Cc: Zhen Lei

Fix some spelling mistakes in comments:
posion ==> poison
higer ==> higher
precisly ==> precisely
wont ==> won't
tha ==> the
endianess ==> endianness

Signed-off-by: Zhen Lei <thunder.leizhen@huawei.com>
---
 mm/internal.h       | 2 +-
 mm/memory-failure.c | 2 +-
 mm/memory_hotplug.c | 4 ++--
 mm/page_alloc.c     | 2 +-
 mm/swap.c           | 2 +-
 mm/swapfile.c       | 2 +-
 6 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/mm/internal.h b/mm/internal.h
index 54bd0dc2c23c..e64e72782978 100644
--- a/mm/internal.h
+++ b/mm/internal.h
@@ -100,7 +100,7 @@ static inline void set_page_refcounted(struct page *page)
  * When kernel touch the user page, the user page may be have been marked
  * poison but still mapped in user space, if without this page, the kernel
  * can guarantee the data integrity and operation success, the kernel is
- * better to check the posion status and avoid touching it, be good not to
+ * better to check the poison status and avoid touching it, be good not to
  * panic, coredump for process fatal signal is a sample case matching this
  * scenario. Or if kernel can't guarantee the data integrity, it's better
  * not to call this function, let kernel touch the poison page and get to
diff --git a/mm/memory-failure.c b/mm/memory-failure.c
index 85ad98c00fd9..8e06c6998fb9 100644
--- a/mm/memory-failure.c
+++ b/mm/memory-failure.c
@@ -1134,7 +1134,7 @@ static bool hwpoison_user_mappings(struct page *p, unsigned long pfn,
 			 * could potentially call huge_pmd_unshare.  Because of
 			 * this, take semaphore in write mode here and set
 			 * TTU_RMAP_LOCKED to indicate we have taken the lock
-			 * at this higer level.
+			 * at this higher level.
 			 */
 			mapping = hugetlb_page_mapping_lock_write(hpage);
 			if (mapping) {
diff --git a/mm/memory_hotplug.c b/mm/memory_hotplug.c
index 70620d0dd923..02f8073a364f 100644
--- a/mm/memory_hotplug.c
+++ b/mm/memory_hotplug.c
@@ -913,7 +913,7 @@ int __ref online_pages(unsigned long pfn, unsigned long nr_pages, struct zone *z
 
 	/*
 	 * {on,off}lining is constrained to full memory sections (or more
-	 * precisly to memory blocks from the user space POV).
+	 * precisely to memory blocks from the user space POV).
 	 * memmap_on_memory is an exception because it reserves initial part
 	 * of the physical memory space for vmemmaps. That space is pageblock
 	 * aligned.
@@ -1703,7 +1703,7 @@ int __ref offline_pages(unsigned long start_pfn, unsigned long nr_pages)
 
 	/*
 	 * {on,off}lining is constrained to full memory sections (or more
-	 * precisly to memory blocks from the user space POV).
+	 * precisely to memory blocks from the user space POV).
 	 * memmap_on_memory is an exception because it reserves initial part
 	 * of the physical memory space for vmemmaps. That space is pageblock
 	 * aligned.
diff --git a/mm/page_alloc.c b/mm/page_alloc.c
index aaa1655cf682..a16f8f3f9e80 100644
--- a/mm/page_alloc.c
+++ b/mm/page_alloc.c
@@ -3103,7 +3103,7 @@ static void __drain_all_pages(struct zone *zone, bool force_all_cpus)
 	int cpu;
 
 	/*
-	 * Allocate in the BSS so we wont require allocation in
+	 * Allocate in the BSS so we won't require allocation in
 	 * direct reclaim path for CONFIG_CPUMASK_OFFSTACK=y
 	 */
 	static cpumask_t cpus_with_pcps;
diff --git a/mm/swap.c b/mm/swap.c
index dfb48cf9c2c9..d35b8d615248 100644
--- a/mm/swap.c
+++ b/mm/swap.c
@@ -554,7 +554,7 @@ static void lru_deactivate_file_fn(struct page *page, struct lruvec *lruvec)
 	} else {
 		/*
 		 * The page's writeback ends up during pagevec
-		 * We moves tha page into tail of inactive.
+		 * We moves the page into tail of inactive.
 		 */
 		add_page_to_lru_list_tail(page, lruvec);
 		__count_vm_events(PGROTATED, nr_pages);
diff --git a/mm/swapfile.c b/mm/swapfile.c
index 149e77454e3c..88a6f01cfb88 100644
--- a/mm/swapfile.c
+++ b/mm/swapfile.c
@@ -2972,7 +2972,7 @@ static unsigned long read_swap_header(struct swap_info_struct *p,
 		return 0;
 	}
 
-	/* swap partition endianess hack... */
+	/* swap partition endianness hack... */
 	if (swab32(swap_header->info.version) == 1) {
 		swab32s(&swap_header->info.version);
 		swab32s(&swap_header->info.last_page);
-- 
2.25.1




^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: [PATCH 1/2] mm: fix spelling mistakes in header files
  2021-05-17  6:51 ` [PATCH 1/2] mm: fix spelling mistakes in header files Zhen Lei
@ 2021-05-18 19:39   ` Souptick Joarder
  0 siblings, 0 replies; 6+ messages in thread
From: Souptick Joarder @ 2021-05-18 19:39 UTC (permalink / raw)
  To: Zhen Lei; +Cc: Andrew Morton, Naoya Horiguchi, linux-mm

On Mon, May 17, 2021 at 12:22 PM Zhen Lei <thunder.leizhen@huawei.com> wrote:
>
> Fix some spelling mistakes in comments:
> statments ==> statements
> adresses ==> addresses
> aggresive ==> aggressive
> datas ==> data
>
> Signed-off-by: Zhen Lei <thunder.leizhen@huawei.com>
Reviewed-by: Souptick Joarder <jrdr.linux@gmail.com>

> ---
>  include/linux/mm.h       | 2 +-
>  include/linux/mm_types.h | 4 ++--
>  include/linux/mmzone.h   | 2 +-
>  3 files changed, 4 insertions(+), 4 deletions(-)
>
> diff --git a/include/linux/mm.h b/include/linux/mm.h
> index c274f75efcf9..12d13c8708a5 100644
> --- a/include/linux/mm.h
> +++ b/include/linux/mm.h
> @@ -155,7 +155,7 @@ extern int mmap_rnd_compat_bits __read_mostly;
>  /* This function must be updated when the size of struct page grows above 80
>   * or reduces below 56. The idea that compiler optimizes out switch()
>   * statement, and only leaves move/store instructions. Also the compiler can
> - * combine write statments if they are both assignments and can be reordered,
> + * combine write statements if they are both assignments and can be reordered,
>   * this can result in several of the writes here being dropped.
>   */
>  #define        mm_zero_struct_page(pp) __mm_zero_struct_page(pp)
> diff --git a/include/linux/mm_types.h b/include/linux/mm_types.h
> index 5aacc1c10a45..7034f5673d26 100644
> --- a/include/linux/mm_types.h
> +++ b/include/linux/mm_types.h
> @@ -397,7 +397,7 @@ struct mm_struct {
>                 unsigned long mmap_base;        /* base of mmap area */
>                 unsigned long mmap_legacy_base; /* base of mmap area in bottom-up allocations */
>  #ifdef CONFIG_HAVE_ARCH_COMPAT_MMAP_BASES
> -               /* Base adresses for compatible mmap() */
> +               /* Base addresses for compatible mmap() */
>                 unsigned long mmap_compat_base;
>                 unsigned long mmap_compat_legacy_base;
>  #endif
> @@ -439,7 +439,7 @@ struct mm_struct {
>                  * @has_pinned: Whether this mm has pinned any pages.  This can
>                  * be either replaced in the future by @pinned_vm when it
>                  * becomes stable, or grow into a counter on its own. We're
> -                * aggresive on this bit now - even if the pinned pages were
> +                * aggressive on this bit now - even if the pinned pages were
>                  * unpinned later on, we'll still keep this bit set for the
>                  * lifecycle of this mm just for simplicity.
>                  */
> diff --git a/include/linux/mmzone.h b/include/linux/mmzone.h
> index 0d53eba1c383..7d7d86220f01 100644
> --- a/include/linux/mmzone.h
> +++ b/include/linux/mmzone.h
> @@ -113,7 +113,7 @@ static inline bool free_area_empty(struct free_area *area, int migratetype)
>  struct pglist_data;
>
>  /*
> - * Add a wild amount of padding here to ensure datas fall into separate
> + * Add a wild amount of padding here to ensure data fall into separate
>   * cachelines.  There are very few zone structures in the machine, so space
>   * consumption is not a concern here.
>   */
> --
> 2.25.1
>
>
>


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH 2/2] mm: fix spelling mistakes in under directory mm
  2021-05-17  6:51 ` [PATCH 2/2] mm: fix spelling mistakes in under directory mm Zhen Lei
@ 2021-05-18 19:41   ` Souptick Joarder
  2021-05-19  1:43     ` Leizhen (ThunderTown)
  0 siblings, 1 reply; 6+ messages in thread
From: Souptick Joarder @ 2021-05-18 19:41 UTC (permalink / raw)
  To: Zhen Lei; +Cc: Andrew Morton, Naoya Horiguchi, linux-mm

On Mon, May 17, 2021 at 12:22 PM Zhen Lei <thunder.leizhen@huawei.com> wrote:
>
> Fix some spelling mistakes in comments:
> posion ==> poison
> higer ==> higher
> precisly ==> precisely
> wont ==> won't
> tha ==> the
> endianess ==> endianness
>
> Signed-off-by: Zhen Lei <thunder.leizhen@huawei.com>

This can be merged with [1/2].
> ---
>  mm/internal.h       | 2 +-
>  mm/memory-failure.c | 2 +-
>  mm/memory_hotplug.c | 4 ++--
>  mm/page_alloc.c     | 2 +-
>  mm/swap.c           | 2 +-
>  mm/swapfile.c       | 2 +-
>  6 files changed, 7 insertions(+), 7 deletions(-)
>
> diff --git a/mm/internal.h b/mm/internal.h
> index 54bd0dc2c23c..e64e72782978 100644
> --- a/mm/internal.h
> +++ b/mm/internal.h
> @@ -100,7 +100,7 @@ static inline void set_page_refcounted(struct page *page)
>   * When kernel touch the user page, the user page may be have been marked
>   * poison but still mapped in user space, if without this page, the kernel
>   * can guarantee the data integrity and operation success, the kernel is
> - * better to check the posion status and avoid touching it, be good not to
> + * better to check the poison status and avoid touching it, be good not to
>   * panic, coredump for process fatal signal is a sample case matching this
>   * scenario. Or if kernel can't guarantee the data integrity, it's better
>   * not to call this function, let kernel touch the poison page and get to
> diff --git a/mm/memory-failure.c b/mm/memory-failure.c
> index 85ad98c00fd9..8e06c6998fb9 100644
> --- a/mm/memory-failure.c
> +++ b/mm/memory-failure.c
> @@ -1134,7 +1134,7 @@ static bool hwpoison_user_mappings(struct page *p, unsigned long pfn,
>                          * could potentially call huge_pmd_unshare.  Because of
>                          * this, take semaphore in write mode here and set
>                          * TTU_RMAP_LOCKED to indicate we have taken the lock
> -                        * at this higer level.
> +                        * at this higher level.
>                          */
>                         mapping = hugetlb_page_mapping_lock_write(hpage);
>                         if (mapping) {
> diff --git a/mm/memory_hotplug.c b/mm/memory_hotplug.c
> index 70620d0dd923..02f8073a364f 100644
> --- a/mm/memory_hotplug.c
> +++ b/mm/memory_hotplug.c
> @@ -913,7 +913,7 @@ int __ref online_pages(unsigned long pfn, unsigned long nr_pages, struct zone *z
>
>         /*
>          * {on,off}lining is constrained to full memory sections (or more
> -        * precisly to memory blocks from the user space POV).
> +        * precisely to memory blocks from the user space POV).
>          * memmap_on_memory is an exception because it reserves initial part
>          * of the physical memory space for vmemmaps. That space is pageblock
>          * aligned.
> @@ -1703,7 +1703,7 @@ int __ref offline_pages(unsigned long start_pfn, unsigned long nr_pages)
>
>         /*
>          * {on,off}lining is constrained to full memory sections (or more
> -        * precisly to memory blocks from the user space POV).
> +        * precisely to memory blocks from the user space POV).
>          * memmap_on_memory is an exception because it reserves initial part
>          * of the physical memory space for vmemmaps. That space is pageblock
>          * aligned.
> diff --git a/mm/page_alloc.c b/mm/page_alloc.c
> index aaa1655cf682..a16f8f3f9e80 100644
> --- a/mm/page_alloc.c
> +++ b/mm/page_alloc.c
> @@ -3103,7 +3103,7 @@ static void __drain_all_pages(struct zone *zone, bool force_all_cpus)
>         int cpu;
>
>         /*
> -        * Allocate in the BSS so we wont require allocation in
> +        * Allocate in the BSS so we won't require allocation in
>          * direct reclaim path for CONFIG_CPUMASK_OFFSTACK=y
>          */
>         static cpumask_t cpus_with_pcps;
> diff --git a/mm/swap.c b/mm/swap.c
> index dfb48cf9c2c9..d35b8d615248 100644
> --- a/mm/swap.c
> +++ b/mm/swap.c
> @@ -554,7 +554,7 @@ static void lru_deactivate_file_fn(struct page *page, struct lruvec *lruvec)
>         } else {
>                 /*
>                  * The page's writeback ends up during pagevec
> -                * We moves tha page into tail of inactive.
> +                * We moves the page into tail of inactive.

*we move the page into tail of inactive*

>                  */
>                 add_page_to_lru_list_tail(page, lruvec);
>                 __count_vm_events(PGROTATED, nr_pages);
> diff --git a/mm/swapfile.c b/mm/swapfile.c
> index 149e77454e3c..88a6f01cfb88 100644
> --- a/mm/swapfile.c
> +++ b/mm/swapfile.c
> @@ -2972,7 +2972,7 @@ static unsigned long read_swap_header(struct swap_info_struct *p,
>                 return 0;
>         }
>
> -       /* swap partition endianess hack... */
> +       /* swap partition endianness hack... */
>         if (swab32(swap_header->info.version) == 1) {
>                 swab32s(&swap_header->info.version);
>                 swab32s(&swap_header->info.last_page);
> --
> 2.25.1
>
>
>


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH 2/2] mm: fix spelling mistakes in under directory mm
  2021-05-18 19:41   ` Souptick Joarder
@ 2021-05-19  1:43     ` Leizhen (ThunderTown)
  0 siblings, 0 replies; 6+ messages in thread
From: Leizhen (ThunderTown) @ 2021-05-19  1:43 UTC (permalink / raw)
  To: Souptick Joarder; +Cc: Andrew Morton, Naoya Horiguchi, linux-mm



On 2021/5/19 3:41, Souptick Joarder wrote:
> On Mon, May 17, 2021 at 12:22 PM Zhen Lei <thunder.leizhen@huawei.com> wrote:
>>
>> Fix some spelling mistakes in comments:
>> posion ==> poison
>> higer ==> higher
>> precisly ==> precisely
>> wont ==> won't
>> tha ==> the
>> endianess ==> endianness
>>
>> Signed-off-by: Zhen Lei <thunder.leizhen@huawei.com>
> 
> This can be merged with [1/2].

OK, I will send V2.

>> ---
>>  mm/internal.h       | 2 +-
>>  mm/memory-failure.c | 2 +-
>>  mm/memory_hotplug.c | 4 ++--
>>  mm/page_alloc.c     | 2 +-
>>  mm/swap.c           | 2 +-
>>  mm/swapfile.c       | 2 +-
>>  6 files changed, 7 insertions(+), 7 deletions(-)
>>
>> diff --git a/mm/internal.h b/mm/internal.h
>> index 54bd0dc2c23c..e64e72782978 100644
>> --- a/mm/internal.h
>> +++ b/mm/internal.h
>> @@ -100,7 +100,7 @@ static inline void set_page_refcounted(struct page *page)
>>   * When kernel touch the user page, the user page may be have been marked
>>   * poison but still mapped in user space, if without this page, the kernel
>>   * can guarantee the data integrity and operation success, the kernel is
>> - * better to check the posion status and avoid touching it, be good not to
>> + * better to check the poison status and avoid touching it, be good not to
>>   * panic, coredump for process fatal signal is a sample case matching this
>>   * scenario. Or if kernel can't guarantee the data integrity, it's better
>>   * not to call this function, let kernel touch the poison page and get to
>> diff --git a/mm/memory-failure.c b/mm/memory-failure.c
>> index 85ad98c00fd9..8e06c6998fb9 100644
>> --- a/mm/memory-failure.c
>> +++ b/mm/memory-failure.c
>> @@ -1134,7 +1134,7 @@ static bool hwpoison_user_mappings(struct page *p, unsigned long pfn,
>>                          * could potentially call huge_pmd_unshare.  Because of
>>                          * this, take semaphore in write mode here and set
>>                          * TTU_RMAP_LOCKED to indicate we have taken the lock
>> -                        * at this higer level.
>> +                        * at this higher level.
>>                          */
>>                         mapping = hugetlb_page_mapping_lock_write(hpage);
>>                         if (mapping) {
>> diff --git a/mm/memory_hotplug.c b/mm/memory_hotplug.c
>> index 70620d0dd923..02f8073a364f 100644
>> --- a/mm/memory_hotplug.c
>> +++ b/mm/memory_hotplug.c
>> @@ -913,7 +913,7 @@ int __ref online_pages(unsigned long pfn, unsigned long nr_pages, struct zone *z
>>
>>         /*
>>          * {on,off}lining is constrained to full memory sections (or more
>> -        * precisly to memory blocks from the user space POV).
>> +        * precisely to memory blocks from the user space POV).
>>          * memmap_on_memory is an exception because it reserves initial part
>>          * of the physical memory space for vmemmaps. That space is pageblock
>>          * aligned.
>> @@ -1703,7 +1703,7 @@ int __ref offline_pages(unsigned long start_pfn, unsigned long nr_pages)
>>
>>         /*
>>          * {on,off}lining is constrained to full memory sections (or more
>> -        * precisly to memory blocks from the user space POV).
>> +        * precisely to memory blocks from the user space POV).
>>          * memmap_on_memory is an exception because it reserves initial part
>>          * of the physical memory space for vmemmaps. That space is pageblock
>>          * aligned.
>> diff --git a/mm/page_alloc.c b/mm/page_alloc.c
>> index aaa1655cf682..a16f8f3f9e80 100644
>> --- a/mm/page_alloc.c
>> +++ b/mm/page_alloc.c
>> @@ -3103,7 +3103,7 @@ static void __drain_all_pages(struct zone *zone, bool force_all_cpus)
>>         int cpu;
>>
>>         /*
>> -        * Allocate in the BSS so we wont require allocation in
>> +        * Allocate in the BSS so we won't require allocation in
>>          * direct reclaim path for CONFIG_CPUMASK_OFFSTACK=y
>>          */
>>         static cpumask_t cpus_with_pcps;
>> diff --git a/mm/swap.c b/mm/swap.c
>> index dfb48cf9c2c9..d35b8d615248 100644
>> --- a/mm/swap.c
>> +++ b/mm/swap.c
>> @@ -554,7 +554,7 @@ static void lru_deactivate_file_fn(struct page *page, struct lruvec *lruvec)
>>         } else {
>>                 /*
>>                  * The page's writeback ends up during pagevec
>> -                * We moves tha page into tail of inactive.
>> +                * We moves the page into tail of inactive.
> 
> *we move the page into tail of inactive*

Good eye!

> 
>>                  */
>>                 add_page_to_lru_list_tail(page, lruvec);
>>                 __count_vm_events(PGROTATED, nr_pages);
>> diff --git a/mm/swapfile.c b/mm/swapfile.c
>> index 149e77454e3c..88a6f01cfb88 100644
>> --- a/mm/swapfile.c
>> +++ b/mm/swapfile.c
>> @@ -2972,7 +2972,7 @@ static unsigned long read_swap_header(struct swap_info_struct *p,
>>                 return 0;
>>         }
>>
>> -       /* swap partition endianess hack... */
>> +       /* swap partition endianness hack... */
>>         if (swab32(swap_header->info.version) == 1) {
>>                 swab32s(&swap_header->info.version);
>>                 swab32s(&swap_header->info.last_page);
>> --
>> 2.25.1
>>
>>
>>
> 
> .
> 



^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2021-05-19  1:43 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-05-17  6:51 [PATCH 0/2] mm: clear spelling mistakes Zhen Lei
2021-05-17  6:51 ` [PATCH 1/2] mm: fix spelling mistakes in header files Zhen Lei
2021-05-18 19:39   ` Souptick Joarder
2021-05-17  6:51 ` [PATCH 2/2] mm: fix spelling mistakes in under directory mm Zhen Lei
2021-05-18 19:41   ` Souptick Joarder
2021-05-19  1:43     ` Leizhen (ThunderTown)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).