Linux Documentation
 help / color / mirror / Atom feed
* [PATCH] docs: filesystems: proc: fix typos
@ 2026-08-18 21:46 Drif Abdelmalek Mohamed Said
  2026-08-18 22:31 ` Randy Dunlap
  2026-08-31 21:28 ` Jonathan Corbet
  0 siblings, 2 replies; 3+ messages in thread
From: Drif Abdelmalek Mohamed Said @ 2026-08-18 21:46 UTC (permalink / raw)
  To: corbet
  Cc: skhan, rdunlap, linux-doc, linux-kernel, linux-fsdevel,
	Drif Abdelmalek Mohamed Said

Fix five typographical errors in the /proc filesystem documentation.

Signed-off-by: Drif Abdelmalek Mohamed Said <drifabdelmalekmohamedsaid@gmail.com>
---
 Documentation/filesystems/proc.rst | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/Documentation/filesystems/proc.rst b/Documentation/filesystems/proc.rst
index c102b62023cd..78a632fea2bf 100644
--- a/Documentation/filesystems/proc.rst
+++ b/Documentation/filesystems/proc.rst
@@ -440,7 +440,7 @@ ioctl()-based API that gives ability to flexibly and efficiently query and
 filter individual VMAs. This interface is binary and is meant for more
 efficient and easy programmatic use. `struct procmap_query`, defined in
 linux/fs.h UAPI header, serves as an input/output argument to the
-`PROCMAP_QUERY` ioctl() command. See comments in linus/fs.h UAPI header for
+`PROCMAP_QUERY` ioctl() command. See comments in linux/fs.h UAPI header for
 details on query semantics, supported flags, data returned, and general API
 usage information.
 
@@ -576,14 +576,14 @@ encoded manner. The codes are the following:
 
     ==    =============================================================
     rd    readable
-    wr    writeable
+    wr    writable
     ex    executable
     sh    shared
     mr    may read
     mw    may write
     me    may execute
     ms    may share
-    gd    stack segment growns down
+    gd    stack segment grows down
     pf    pure PFN range
     lo    pages are locked in memory
     io    memory mapped I/O area
@@ -719,7 +719,7 @@ size, in KB, that is backing the mapping up.
 
 Note that some kernel configurations do not track the precise number of times
 a page part of a larger allocation (e.g., THP) is mapped. In these
-configurations, "mapmax" might corresponds to the average number of mappings
+configurations, "mapmax" might correspond to the average number of mappings
 per page in such a larger allocation instead.
 
 1.2 Kernel data
@@ -2008,7 +2008,7 @@ For more information on mount propagation see:
 These files provide a method to access a task's comm value. It also allows for
 a task to set its own or one of its thread siblings comm value. The comm value
 is limited in size compared to the cmdline value, so writing anything longer
-then the kernel's TASK_COMM_LEN (currently 16 chars, including the NUL
+than the kernel's TASK_COMM_LEN (currently 16 chars, including the NUL
 terminator) will result in a truncated comm value.
 
 
-- 
2.43.0


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

* Re: [PATCH] docs: filesystems: proc: fix typos
  2026-08-18 21:46 [PATCH] docs: filesystems: proc: fix typos Drif Abdelmalek Mohamed Said
@ 2026-08-18 22:31 ` Randy Dunlap
  2026-08-31 21:28 ` Jonathan Corbet
  1 sibling, 0 replies; 3+ messages in thread
From: Randy Dunlap @ 2026-08-18 22:31 UTC (permalink / raw)
  To: Drif Abdelmalek Mohamed Said, corbet
  Cc: skhan, linux-doc, linux-kernel, linux-fsdevel



On 8/18/26 2:46 PM, Drif Abdelmalek Mohamed Said wrote:
> Fix five typographical errors in the /proc filesystem documentation.
> 
> Signed-off-by: Drif Abdelmalek Mohamed Said <drifabdelmalekmohamedsaid@gmail.com>

Reviewed-by: Randy Dunlap <rdunlap@infradead.org>
Thanks.

> ---
>  Documentation/filesystems/proc.rst | 10 +++++-----
>  1 file changed, 5 insertions(+), 5 deletions(-)
> 
> diff --git a/Documentation/filesystems/proc.rst b/Documentation/filesystems/proc.rst
> index c102b62023cd..78a632fea2bf 100644
> --- a/Documentation/filesystems/proc.rst
> +++ b/Documentation/filesystems/proc.rst
> @@ -440,7 +440,7 @@ ioctl()-based API that gives ability to flexibly and efficiently query and
>  filter individual VMAs. This interface is binary and is meant for more
>  efficient and easy programmatic use. `struct procmap_query`, defined in
>  linux/fs.h UAPI header, serves as an input/output argument to the
> -`PROCMAP_QUERY` ioctl() command. See comments in linus/fs.h UAPI header for
> +`PROCMAP_QUERY` ioctl() command. See comments in linux/fs.h UAPI header for
>  details on query semantics, supported flags, data returned, and general API
>  usage information.
>  
> @@ -576,14 +576,14 @@ encoded manner. The codes are the following:
>  
>      ==    =============================================================
>      rd    readable
> -    wr    writeable
> +    wr    writable
>      ex    executable
>      sh    shared
>      mr    may read
>      mw    may write
>      me    may execute
>      ms    may share
> -    gd    stack segment growns down
> +    gd    stack segment grows down
>      pf    pure PFN range
>      lo    pages are locked in memory
>      io    memory mapped I/O area
> @@ -719,7 +719,7 @@ size, in KB, that is backing the mapping up.
>  
>  Note that some kernel configurations do not track the precise number of times
>  a page part of a larger allocation (e.g., THP) is mapped. In these
> -configurations, "mapmax" might corresponds to the average number of mappings
> +configurations, "mapmax" might correspond to the average number of mappings
>  per page in such a larger allocation instead.
>  
>  1.2 Kernel data
> @@ -2008,7 +2008,7 @@ For more information on mount propagation see:
>  These files provide a method to access a task's comm value. It also allows for
>  a task to set its own or one of its thread siblings comm value. The comm value
>  is limited in size compared to the cmdline value, so writing anything longer
> -then the kernel's TASK_COMM_LEN (currently 16 chars, including the NUL
> +than the kernel's TASK_COMM_LEN (currently 16 chars, including the NUL
>  terminator) will result in a truncated comm value.
>  
>  

-- 
~Randy

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

* Re: [PATCH] docs: filesystems: proc: fix typos
  2026-08-18 21:46 [PATCH] docs: filesystems: proc: fix typos Drif Abdelmalek Mohamed Said
  2026-08-18 22:31 ` Randy Dunlap
@ 2026-08-31 21:28 ` Jonathan Corbet
  1 sibling, 0 replies; 3+ messages in thread
From: Jonathan Corbet @ 2026-08-31 21:28 UTC (permalink / raw)
  To: Drif Abdelmalek Mohamed Said
  Cc: skhan, rdunlap, linux-doc, linux-kernel, linux-fsdevel,
	Drif Abdelmalek Mohamed Said

Drif Abdelmalek Mohamed Said <drifabdelmalekmohamedsaid@gmail.com>
writes:

> Fix five typographical errors in the /proc filesystem documentation.
>
> Signed-off-by: Drif Abdelmalek Mohamed Said <drifabdelmalekmohamedsaid@gmail.com>
> ---
>  Documentation/filesystems/proc.rst | 10 +++++-----
>  1 file changed, 5 insertions(+), 5 deletions(-)

Applied, thanks.

jon

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

end of thread, other threads:[~2026-08-31 21:29 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-08-18 21:46 [PATCH] docs: filesystems: proc: fix typos Drif Abdelmalek Mohamed Said
2026-08-18 22:31 ` Randy Dunlap
2026-08-31 21:28 ` Jonathan Corbet

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