* [PATCH] docs/mm: Physical Memory: Fix grammar
@ 2023-03-31 16:52 Kim Phillips
2023-04-01 2:10 ` Bagas Sanjaya
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Kim Phillips @ 2023-03-31 16:52 UTC (permalink / raw)
To: Jonathan Corbet, Mike Rapoport, linux-doc
Cc: kernel-janitors, linux-kernel, Kim Phillips
it's -> its
referenced to by -> referenced by
Fixes: 5d8c5e430a63 ("docs/mm: Physical Memory: add structure, introduction and nodes description")
Signed-off-by: Kim Phillips <kim.phillips@amd.com>
---
Documentation/mm/physical_memory.rst | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Documentation/mm/physical_memory.rst b/Documentation/mm/physical_memory.rst
index 1bc888d36ea1..df2ed81e3639 100644
--- a/Documentation/mm/physical_memory.rst
+++ b/Documentation/mm/physical_memory.rst
@@ -19,7 +19,7 @@ a bank of memory very suitable for DMA near peripheral devices.
Each bank is called a node and the concept is represented under Linux by a
``struct pglist_data`` even if the architecture is UMA. This structure is
-always referenced to by it's typedef ``pg_data_t``. ``A pg_data_t`` structure
+always referenced by its typedef ``pg_data_t``. A ``pg_data_t`` structure
for a particular node can be referenced by ``NODE_DATA(nid)`` macro where
``nid`` is the ID of that node.
--
2.34.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] docs/mm: Physical Memory: Fix grammar
2023-03-31 16:52 [PATCH] docs/mm: Physical Memory: Fix grammar Kim Phillips
@ 2023-04-01 2:10 ` Bagas Sanjaya
2023-04-01 7:38 ` Mike Rapoport
2023-04-10 22:43 ` Jonathan Corbet
2 siblings, 0 replies; 4+ messages in thread
From: Bagas Sanjaya @ 2023-04-01 2:10 UTC (permalink / raw)
To: Kim Phillips, Jonathan Corbet, Mike Rapoport, linux-doc
Cc: kernel-janitors, linux-kernel
On 3/31/23 23:52, Kim Phillips wrote:
> diff --git a/Documentation/mm/physical_memory.rst b/Documentation/mm/physical_memory.rst
> index 1bc888d36ea1..df2ed81e3639 100644
> --- a/Documentation/mm/physical_memory.rst
> +++ b/Documentation/mm/physical_memory.rst
> @@ -19,7 +19,7 @@ a bank of memory very suitable for DMA near peripheral devices.
>
> Each bank is called a node and the concept is represented under Linux by a
> ``struct pglist_data`` even if the architecture is UMA. This structure is
> -always referenced to by it's typedef ``pg_data_t``. ``A pg_data_t`` structure
> +always referenced by its typedef ``pg_data_t``. A ``pg_data_t`` structure
> for a particular node can be referenced by ``NODE_DATA(nid)`` macro where
> ``nid`` is the ID of that node.
>
LGTM, thanks!
Reviewed-by: Bagas Sanjaya <bagasdotme@gmail.com>
--
An old man doll... just what I always wanted! - Clara
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] docs/mm: Physical Memory: Fix grammar
2023-03-31 16:52 [PATCH] docs/mm: Physical Memory: Fix grammar Kim Phillips
2023-04-01 2:10 ` Bagas Sanjaya
@ 2023-04-01 7:38 ` Mike Rapoport
2023-04-10 22:43 ` Jonathan Corbet
2 siblings, 0 replies; 4+ messages in thread
From: Mike Rapoport @ 2023-04-01 7:38 UTC (permalink / raw)
To: Kim Phillips; +Cc: Jonathan Corbet, linux-doc, kernel-janitors, linux-kernel
On Fri, Mar 31, 2023 at 11:52:54AM -0500, Kim Phillips wrote:
> it's -> its
> referenced to by -> referenced by
>
> Fixes: 5d8c5e430a63 ("docs/mm: Physical Memory: add structure, introduction and nodes description")
> Signed-off-by: Kim Phillips <kim.phillips@amd.com>
Reviewed-by: Mike Rapoport (IBM) <rppt@kernel.org>
> ---
> Documentation/mm/physical_memory.rst | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/Documentation/mm/physical_memory.rst b/Documentation/mm/physical_memory.rst
> index 1bc888d36ea1..df2ed81e3639 100644
> --- a/Documentation/mm/physical_memory.rst
> +++ b/Documentation/mm/physical_memory.rst
> @@ -19,7 +19,7 @@ a bank of memory very suitable for DMA near peripheral devices.
>
> Each bank is called a node and the concept is represented under Linux by a
> ``struct pglist_data`` even if the architecture is UMA. This structure is
> -always referenced to by it's typedef ``pg_data_t``. ``A pg_data_t`` structure
> +always referenced by its typedef ``pg_data_t``. A ``pg_data_t`` structure
> for a particular node can be referenced by ``NODE_DATA(nid)`` macro where
> ``nid`` is the ID of that node.
>
> --
> 2.34.1
>
--
Sincerely yours,
Mike.
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] docs/mm: Physical Memory: Fix grammar
2023-03-31 16:52 [PATCH] docs/mm: Physical Memory: Fix grammar Kim Phillips
2023-04-01 2:10 ` Bagas Sanjaya
2023-04-01 7:38 ` Mike Rapoport
@ 2023-04-10 22:43 ` Jonathan Corbet
2 siblings, 0 replies; 4+ messages in thread
From: Jonathan Corbet @ 2023-04-10 22:43 UTC (permalink / raw)
To: Kim Phillips, Mike Rapoport, linux-doc
Cc: kernel-janitors, linux-kernel, Kim Phillips
Kim Phillips <kim.phillips@amd.com> writes:
> it's -> its
> referenced to by -> referenced by
>
> Fixes: 5d8c5e430a63 ("docs/mm: Physical Memory: add structure, introduction and nodes description")
> Signed-off-by: Kim Phillips <kim.phillips@amd.com>
> ---
> Documentation/mm/physical_memory.rst | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/Documentation/mm/physical_memory.rst b/Documentation/mm/physical_memory.rst
> index 1bc888d36ea1..df2ed81e3639 100644
> --- a/Documentation/mm/physical_memory.rst
> +++ b/Documentation/mm/physical_memory.rst
> @@ -19,7 +19,7 @@ a bank of memory very suitable for DMA near peripheral devices.
>
> Each bank is called a node and the concept is represented under Linux by a
> ``struct pglist_data`` even if the architecture is UMA. This structure is
> -always referenced to by it's typedef ``pg_data_t``. ``A pg_data_t`` structure
> +always referenced by its typedef ``pg_data_t``. A ``pg_data_t`` structure
> for a particular node can be referenced by ``NODE_DATA(nid)`` macro where
> ``nid`` is the ID of that node.
Applied, thanks.
jon
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2023-04-10 22:43 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-03-31 16:52 [PATCH] docs/mm: Physical Memory: Fix grammar Kim Phillips
2023-04-01 2:10 ` Bagas Sanjaya
2023-04-01 7:38 ` Mike Rapoport
2023-04-10 22:43 ` Jonathan Corbet
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).