Linux Documentation
 help / color / mirror / Atom feed
* [PATCH mm-new] Documentation/admin-guide/mm: Fix typos in transhuge.rst
@ 2026-05-20  5:17 Leon Hwang
  2026-05-20  5:20 ` Mike Rapoport
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Leon Hwang @ 2026-05-20  5:17 UTC (permalink / raw)
  To: linux-mm
  Cc: Andrew Morton, David Hildenbrand, Lorenzo Stoakes, Zi Yan,
	Baolin Wang, Liam R . Howlett, Nico Pache, Ryan Roberts, Dev Jain,
	Barry Song, Lance Yang, Vlastimil Babka, Mike Rapoport,
	Suren Baghdasaryan, Michal Hocko, Jonathan Corbet, Shuah Khan,
	linux-doc, linux-kernel, Leon Hwang

Fix these two typos:

1. approporiately -> appropriately
2. presure -> pressure

Signed-off-by: Leon Hwang <leon.hwang@linux.dev>
---
 Documentation/admin-guide/mm/transhuge.rst | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Documentation/admin-guide/mm/transhuge.rst b/Documentation/admin-guide/mm/transhuge.rst
index fc0127a36ef6..78a1b341a3b5 100644
--- a/Documentation/admin-guide/mm/transhuge.rst
+++ b/Documentation/admin-guide/mm/transhuge.rst
@@ -57,7 +57,7 @@ prominent because the size of each page isn't as huge as the PMD-sized
 variant and there is less memory to clear in each page fault. Some
 architectures also employ TLB compression mechanisms to squeeze more
 entries in when a set of PTEs are virtually and physically contiguous
-and approporiately aligned. In this case, TLB misses will occur less
+and appropriately aligned. In this case, TLB misses will occur less
 often.
 
 THP can be enabled system wide or restricted to certain tasks or even
@@ -211,7 +211,7 @@ PMD-mappable transparent hugepage::
 	cat /sys/kernel/mm/transparent_hugepage/hpage_pmd_size
 
 All THPs at fault and collapse time will be added to _deferred_list,
-and will therefore be split under memory presure if they are considered
+and will therefore be split under memory pressure if they are considered
 "underused". A THP is underused if the number of zero-filled pages in
 the THP is above max_ptes_none (see below). It is possible to disable
 this behaviour by writing 0 to shrink_underused, and enable it by writing
-- 
2.54.0


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

* Re: [PATCH mm-new] Documentation/admin-guide/mm: Fix typos in transhuge.rst
  2026-05-20  5:17 [PATCH mm-new] Documentation/admin-guide/mm: Fix typos in transhuge.rst Leon Hwang
@ 2026-05-20  5:20 ` Mike Rapoport
  2026-05-20  5:30 ` David Hildenbrand (Arm)
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Mike Rapoport @ 2026-05-20  5:20 UTC (permalink / raw)
  To: Leon Hwang
  Cc: linux-mm, Andrew Morton, David Hildenbrand, Lorenzo Stoakes,
	Zi Yan, Baolin Wang, Liam R . Howlett, Nico Pache, Ryan Roberts,
	Dev Jain, Barry Song, Lance Yang, Vlastimil Babka,
	Suren Baghdasaryan, Michal Hocko, Jonathan Corbet, Shuah Khan,
	linux-doc, linux-kernel

On Wed, May 20, 2026 at 01:17:51PM +0800, Leon Hwang wrote:
> Fix these two typos:
> 
> 1. approporiately -> appropriately
> 2. presure -> pressure
> 
> Signed-off-by: Leon Hwang <leon.hwang@linux.dev>
> ---

Reviewed-by: Mike Rapoport (Microsoft) <rppt@kernel.org>

>  Documentation/admin-guide/mm/transhuge.rst | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)

-- 
Sincerely yours,
Mike.

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

* Re: [PATCH mm-new] Documentation/admin-guide/mm: Fix typos in transhuge.rst
  2026-05-20  5:17 [PATCH mm-new] Documentation/admin-guide/mm: Fix typos in transhuge.rst Leon Hwang
  2026-05-20  5:20 ` Mike Rapoport
@ 2026-05-20  5:30 ` David Hildenbrand (Arm)
  2026-05-20  5:42 ` Lance Yang
  2026-05-21  1:00 ` SeongJae Park
  3 siblings, 0 replies; 5+ messages in thread
From: David Hildenbrand (Arm) @ 2026-05-20  5:30 UTC (permalink / raw)
  To: Leon Hwang, linux-mm
  Cc: Andrew Morton, Lorenzo Stoakes, Zi Yan, Baolin Wang,
	Liam R . Howlett, Nico Pache, Ryan Roberts, Dev Jain, Barry Song,
	Lance Yang, Vlastimil Babka, Mike Rapoport, Suren Baghdasaryan,
	Michal Hocko, Jonathan Corbet, Shuah Khan, linux-doc,
	linux-kernel

On 5/20/26 07:17, Leon Hwang wrote:
> Fix these two typos:
> 
> 1. approporiately -> appropriately
> 2. presure -> pressure
> 
> Signed-off-by: Leon Hwang <leon.hwang@linux.dev>
> ---

Acked-by: David Hildenbrand (Arm) <david@kernel.org>

-- 
Cheers,

David

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

* Re: [PATCH mm-new] Documentation/admin-guide/mm: Fix typos in transhuge.rst
  2026-05-20  5:17 [PATCH mm-new] Documentation/admin-guide/mm: Fix typos in transhuge.rst Leon Hwang
  2026-05-20  5:20 ` Mike Rapoport
  2026-05-20  5:30 ` David Hildenbrand (Arm)
@ 2026-05-20  5:42 ` Lance Yang
  2026-05-21  1:00 ` SeongJae Park
  3 siblings, 0 replies; 5+ messages in thread
From: Lance Yang @ 2026-05-20  5:42 UTC (permalink / raw)
  To: Leon Hwang
  Cc: Andrew Morton, David Hildenbrand, Lorenzo Stoakes, Zi Yan,
	Baolin Wang, Liam R . Howlett, Nico Pache, Ryan Roberts, linux-mm,
	Dev Jain, Barry Song, Vlastimil Babka, Mike Rapoport,
	Suren Baghdasaryan, Michal Hocko, Jonathan Corbet, Shuah Khan,
	linux-doc, linux-kernel



On 2026/5/20 13:17, Leon Hwang wrote:
> Fix these two typos:
> 
> 1. approporiately -> appropriately
> 2. presure -> pressure
> 
> Signed-off-by: Leon Hwang <leon.hwang@linux.dev>
> ---

Thanks.

Reviewed-by: Lance Yang <lance.yang@linux.dev>

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

* Re: [PATCH mm-new] Documentation/admin-guide/mm: Fix typos in transhuge.rst
  2026-05-20  5:17 [PATCH mm-new] Documentation/admin-guide/mm: Fix typos in transhuge.rst Leon Hwang
                   ` (2 preceding siblings ...)
  2026-05-20  5:42 ` Lance Yang
@ 2026-05-21  1:00 ` SeongJae Park
  3 siblings, 0 replies; 5+ messages in thread
From: SeongJae Park @ 2026-05-21  1:00 UTC (permalink / raw)
  To: Leon Hwang
  Cc: SeongJae Park, linux-mm, Andrew Morton, David Hildenbrand,
	Lorenzo Stoakes, Zi Yan, Baolin Wang, Liam R . Howlett,
	Nico Pache, Ryan Roberts, Dev Jain, Barry Song, Lance Yang,
	Vlastimil Babka, Mike Rapoport, Suren Baghdasaryan, Michal Hocko,
	Jonathan Corbet, Shuah Khan, linux-doc, linux-kernel

On Wed, 20 May 2026 13:17:51 +0800 Leon Hwang <leon.hwang@linux.dev> wrote:

> Fix these two typos:
> 
> 1. approporiately -> appropriately
> 2. presure -> pressure
> 
> Signed-off-by: Leon Hwang <leon.hwang@linux.dev>

Reviewed-by: SeongJae Park <sj@kernel.org>


Thanks,
SJ

[...]

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

end of thread, other threads:[~2026-05-21  1:00 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-05-20  5:17 [PATCH mm-new] Documentation/admin-guide/mm: Fix typos in transhuge.rst Leon Hwang
2026-05-20  5:20 ` Mike Rapoport
2026-05-20  5:30 ` David Hildenbrand (Arm)
2026-05-20  5:42 ` Lance Yang
2026-05-21  1:00 ` SeongJae Park

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox