All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] mm: __do_fault: fix pte_alloc_one spelling
@ 2020-09-14 11:58 Mike Rapoport
  2020-09-16 13:11 ` Wei Yang
  2020-09-28 14:48 ` Mike Rapoport
  0 siblings, 2 replies; 4+ messages in thread
From: Mike Rapoport @ 2020-09-14 11:58 UTC (permalink / raw)
  To: Andrew Morton; +Cc: linux-mm, linux-kernel, Mike Rapoport

From: Mike Rapoport <rppt@linux.ibm.com>

Fix spelling of pte_alloc_one() in a comment in __do_fault().

Signed-off-by: Mike Rapoport <rppt@linux.ibm.com>
---
 mm/memory.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/mm/memory.c b/mm/memory.c
index 469af373ae76..d582ac79cb7d 100644
--- a/mm/memory.c
+++ b/mm/memory.c
@@ -3433,7 +3433,7 @@ static vm_fault_t __do_fault(struct vm_fault *vmf)
 	 *				unlock_page(A)
 	 * lock_page(B)
 	 *				lock_page(B)
-	 * pte_alloc_pne
+	 * pte_alloc_one
 	 *   shrink_page_list
 	 *     wait_on_page_writeback(A)
 	 *				SetPageWriteback(B)
-- 
2.25.4


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

* Re: [PATCH] mm: __do_fault: fix pte_alloc_one spelling
  2020-09-14 11:58 [PATCH] mm: __do_fault: fix pte_alloc_one spelling Mike Rapoport
@ 2020-09-16 13:11 ` Wei Yang
  2020-09-28 14:48 ` Mike Rapoport
  1 sibling, 0 replies; 4+ messages in thread
From: Wei Yang @ 2020-09-16 13:11 UTC (permalink / raw)
  To: Mike Rapoport; +Cc: Andrew Morton, linux-mm, linux-kernel, Mike Rapoport

On Mon, Sep 14, 2020 at 02:58:33PM +0300, Mike Rapoport wrote:
>From: Mike Rapoport <rppt@linux.ibm.com>
>
>Fix spelling of pte_alloc_one() in a comment in __do_fault().
>
>Signed-off-by: Mike Rapoport <rppt@linux.ibm.com>

Reviewed-by: Wei Yang <richard.weiyang@linux.alibaba.com>

>---
> mm/memory.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
>diff --git a/mm/memory.c b/mm/memory.c
>index 469af373ae76..d582ac79cb7d 100644
>--- a/mm/memory.c
>+++ b/mm/memory.c
>@@ -3433,7 +3433,7 @@ static vm_fault_t __do_fault(struct vm_fault *vmf)
> 	 *				unlock_page(A)
> 	 * lock_page(B)
> 	 *				lock_page(B)
>-	 * pte_alloc_pne
>+	 * pte_alloc_one
> 	 *   shrink_page_list
> 	 *     wait_on_page_writeback(A)
> 	 *				SetPageWriteback(B)
>-- 
>2.25.4

-- 
Wei Yang
Help you, Help me


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

* Re: [PATCH] mm: __do_fault: fix pte_alloc_one spelling
  2020-09-14 11:58 [PATCH] mm: __do_fault: fix pte_alloc_one spelling Mike Rapoport
  2020-09-16 13:11 ` Wei Yang
@ 2020-09-28 14:48 ` Mike Rapoport
  2020-09-28 23:37   ` Andrew Morton
  1 sibling, 1 reply; 4+ messages in thread
From: Mike Rapoport @ 2020-09-28 14:48 UTC (permalink / raw)
  To: Andrew Morton; +Cc: linux-mm, linux-kernel, Mike Rapoport

ping?

>On Mon, Sep 14, 2020 at 02:58:33PM +0300, Mike Rapoport wrote:
> From: Mike Rapoport <rppt@linux.ibm.com>
> 
> Fix spelling of pte_alloc_one() in a comment in __do_fault().
> 
> Signed-off-by: Mike Rapoport <rppt@linux.ibm.com>
> ---
>  mm/memory.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/mm/memory.c b/mm/memory.c
> index 469af373ae76..d582ac79cb7d 100644
> --- a/mm/memory.c
> +++ b/mm/memory.c
> @@ -3433,7 +3433,7 @@ static vm_fault_t __do_fault(struct vm_fault *vmf)
>  	 *				unlock_page(A)
>  	 * lock_page(B)
>  	 *				lock_page(B)
> -	 * pte_alloc_pne
> +	 * pte_alloc_one
>  	 *   shrink_page_list
>  	 *     wait_on_page_writeback(A)
>  	 *				SetPageWriteback(B)
> -- 
> 2.25.4
> 
> 

-- 
Sincerely yours,
Mike.

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

* Re: [PATCH] mm: __do_fault: fix pte_alloc_one spelling
  2020-09-28 14:48 ` Mike Rapoport
@ 2020-09-28 23:37   ` Andrew Morton
  0 siblings, 0 replies; 4+ messages in thread
From: Andrew Morton @ 2020-09-28 23:37 UTC (permalink / raw)
  To: Mike Rapoport; +Cc: linux-mm, linux-kernel, Mike Rapoport

On Mon, 28 Sep 2020 17:48:36 +0300 Mike Rapoport <rppt@kernel.org> wrote:

> ping?

August 18, from Yanfei Xu:

https://www.ozlabs.org/~akpm/mmotm/broken-out/mm-memory-fix-typo-in-__do_fault-comment.patch


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

end of thread, other threads:[~2020-09-28 23:37 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-09-14 11:58 [PATCH] mm: __do_fault: fix pte_alloc_one spelling Mike Rapoport
2020-09-16 13:11 ` Wei Yang
2020-09-28 14:48 ` Mike Rapoport
2020-09-28 23:37   ` Andrew Morton

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.