linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2] docs/mm: Physical Memory: add example of interleaving nodes
@ 2023-02-12  9:54 Mike Rapoport
  2023-02-12 11:50 ` Matthew Wilcox
  0 siblings, 1 reply; 3+ messages in thread
From: Mike Rapoport @ 2023-02-12  9:54 UTC (permalink / raw)
  To: Jonathan Corbet
  Cc: Andrew Morton, Bagas Sanjaya, David Hildenbrand, Johannes Weiner,
	Lorenzo Stoakes, Matthew Wilcox (Oracle), Mel Gorman,
	Michal Hocko, Mike Rapoport, Vlastimil Babka, linux-doc,
	linux-kernel, linux-mm

From: "Mike Rapoport (IBM)" <rppt@kernel.org>

Add an example of memory layout with interleaving nodes where even memory
banks belong to node 0 and odd memory banks belong to node 1

Suggested-by: Michal Hocko <mhocko@kernel.org>
Signed-off-by: Mike Rapoport (IBM) <rppt@kernel.org>
---

v2:
* Wording update (Bagas)
* Add forgotten Suggested-by

v1: https://lore.kernel.org/all/20230211102207.1267058-1-rppt@kernel.org

 Documentation/mm/physical_memory.rst | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)

diff --git a/Documentation/mm/physical_memory.rst b/Documentation/mm/physical_memory.rst
index 3f3c02aa6e6e..d14b785fd938 100644
--- a/Documentation/mm/physical_memory.rst
+++ b/Documentation/mm/physical_memory.rst
@@ -114,6 +114,25 @@ RAM equally split between two nodes, there will be ``ZONE_DMA32``,
   |  DMA32  |  NORMAL  |  MOVABLE  | |   NORMAL   |   MOVABLE   |
   +---------+----------+-----------+ +------------+-------------+
 
+
+Note, that memory banks may belong to interleaving nodes. In the example
+below an x86 machine has 16Gbytes or RAM in 4 memory banks, even banks
+belong to node 0 and odd banks belong to node 1::
+
+
+  0              4G              8G             12G            16G
+  +-------------+ +-------------+ +-------------+ +-------------+
+  |    node 0   | |    node 1   | |    node 0   | |    node 1   |
+  +-------------+ +-------------+ +-------------+ +-------------+
+
+  0   16M      4G
+  +-----+-------+ +-------------+ +-------------+ +-------------+
+  | DMA | DMA32 | |    NORMAL   | |    NORMAL   | |    NORMAL   |
+  +-----+-------+ +-------------+ +-------------+ +-------------+
+
+In such case node 0 will span from 0 to 12 Gbytes and node 1 will span from
+4 to 16 Gbytes.
+
 .. _nodes:
 
 Nodes

base-commit: e076f253283c3e55a128fa9665c0e6cd8146948d
-- 
2.35.1



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

* Re: [PATCH v2] docs/mm: Physical Memory: add example of interleaving nodes
  2023-02-12  9:54 [PATCH v2] docs/mm: Physical Memory: add example of interleaving nodes Mike Rapoport
@ 2023-02-12 11:50 ` Matthew Wilcox
  2023-02-12 14:47   ` Mike Rapoport
  0 siblings, 1 reply; 3+ messages in thread
From: Matthew Wilcox @ 2023-02-12 11:50 UTC (permalink / raw)
  To: Mike Rapoport
  Cc: Jonathan Corbet, Andrew Morton, Bagas Sanjaya, David Hildenbrand,
	Johannes Weiner, Lorenzo Stoakes, Mel Gorman, Michal Hocko,
	Vlastimil Babka, linux-doc, linux-kernel, linux-mm

On Sun, Feb 12, 2023 at 11:54:45AM +0200, Mike Rapoport wrote:
> +Note, that memory banks may belong to interleaving nodes. In the example
> +below an x86 machine has 16Gbytes or RAM in 4 memory banks, even banks
> +belong to node 0 and odd banks belong to node 1::

s/or RAM/of RAM/

The "Note," is superfluous, you can just write:

Memory banks may belong to interleaved nodes.

And I think we prefer the newer form "GiB" for new documentation.

> +
> +  0              4G              8G             12G            16G
> +  +-------------+ +-------------+ +-------------+ +-------------+
> +  |    node 0   | |    node 1   | |    node 0   | |    node 1   |
> +  +-------------+ +-------------+ +-------------+ +-------------+
> +
> +  0   16M      4G
> +  +-----+-------+ +-------------+ +-------------+ +-------------+
> +  | DMA | DMA32 | |    NORMAL   | |    NORMAL   | |    NORMAL   |
> +  +-----+-------+ +-------------+ +-------------+ +-------------+
> +
> +In such case node 0 will span from 0 to 12 Gbytes and node 1 will span from
> +4 to 16 Gbytes.

s/such/this/ (and I'd use GiB again)


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

* Re: [PATCH v2] docs/mm: Physical Memory: add example of interleaving nodes
  2023-02-12 11:50 ` Matthew Wilcox
@ 2023-02-12 14:47   ` Mike Rapoport
  0 siblings, 0 replies; 3+ messages in thread
From: Mike Rapoport @ 2023-02-12 14:47 UTC (permalink / raw)
  To: Matthew Wilcox
  Cc: Jonathan Corbet, Andrew Morton, Bagas Sanjaya, David Hildenbrand,
	Johannes Weiner, Lorenzo Stoakes, Mel Gorman, Michal Hocko,
	Vlastimil Babka, linux-doc, linux-kernel, linux-mm

On Sun, Feb 12, 2023 at 11:50:08AM +0000, Matthew Wilcox wrote:
> On Sun, Feb 12, 2023 at 11:54:45AM +0200, Mike Rapoport wrote:
> > +Note, that memory banks may belong to interleaving nodes. In the example
> > +below an x86 machine has 16Gbytes or RAM in 4 memory banks, even banks
> > +belong to node 0 and odd banks belong to node 1::
> 
> s/or RAM/of RAM/

Thanks
 
> The "Note," is superfluous, you can just write:
> 
> Memory banks may belong to interleaved nodes.

Ok
 
> And I think we prefer the newer form "GiB" for new documentation.

I've used Gbytes in previous examples, so I'd prefer to keep it consistent
We can swipe s/Gbytes/GiB/g later.
 
> > +
> > +  0              4G              8G             12G            16G
> > +  +-------------+ +-------------+ +-------------+ +-------------+
> > +  |    node 0   | |    node 1   | |    node 0   | |    node 1   |
> > +  +-------------+ +-------------+ +-------------+ +-------------+
> > +
> > +  0   16M      4G
> > +  +-----+-------+ +-------------+ +-------------+ +-------------+
> > +  | DMA | DMA32 | |    NORMAL   | |    NORMAL   | |    NORMAL   |
> > +  +-----+-------+ +-------------+ +-------------+ +-------------+
> > +
> > +In such case node 0 will span from 0 to 12 Gbytes and node 1 will span from
> > +4 to 16 Gbytes.
> 
> s/such/this/ (and I'd use GiB again)

-- 
Sincerely yours,
Mike.


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

end of thread, other threads:[~2023-02-12 14:48 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-02-12  9:54 [PATCH v2] docs/mm: Physical Memory: add example of interleaving nodes Mike Rapoport
2023-02-12 11:50 ` Matthew Wilcox
2023-02-12 14:47   ` Mike Rapoport

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).