[PATCH] docs/mm: Physical memory: Remove zone_t

I Hsin Cheng posted 1 patch 11 months ago
Documentation/mm/physical_memory.rst | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
[PATCH] docs/mm: Physical memory: Remove zone_t
Posted by I Hsin Cheng 11 months ago
"zone_t" doesn't exist in current code base anymore, remove the
description of it.

Signed-off-by: I Hsin Cheng <richard120310@gmail.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 531e73b00..71fd4a6ac 100644
--- a/Documentation/mm/physical_memory.rst
+++ b/Documentation/mm/physical_memory.rst
@@ -33,7 +33,7 @@ The entire physical address space is partitioned into one or more blocks
 called zones which represent ranges within memory. These ranges are usually
 determined by architectural constraints for accessing the physical memory.
 The memory range within a node that corresponds to a particular zone is
-described by a ``struct zone``, typedeffed to ``zone_t``. Each zone has
+described by a ``struct zone``. Each zone has
 one of the types described below.
 
 * ``ZONE_DMA`` and ``ZONE_DMA32`` historically represented memory suitable for
-- 
2.43.0
Re: [PATCH] docs/mm: Physical memory: Remove zone_t
Posted by Jonathan Corbet 11 months ago
I Hsin Cheng <richard120310@gmail.com> writes:

> "zone_t" doesn't exist in current code base anymore, remove the
> description of it.
>
> Signed-off-by: I Hsin Cheng <richard120310@gmail.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 531e73b00..71fd4a6ac 100644
> --- a/Documentation/mm/physical_memory.rst
> +++ b/Documentation/mm/physical_memory.rst
> @@ -33,7 +33,7 @@ The entire physical address space is partitioned into one or more blocks
>  called zones which represent ranges within memory. These ranges are usually
>  determined by architectural constraints for accessing the physical memory.
>  The memory range within a node that corresponds to a particular zone is
> -described by a ``struct zone``, typedeffed to ``zone_t``. Each zone has
> +described by a ``struct zone``. Each zone has
>  one of the types described below.

Makes sense; applied, thanks.

jon
Re: [PATCH] docs/mm: Physical memory: Remove zone_t
Posted by Randy Dunlap 11 months ago

On 1/14/25 11:03 PM, I Hsin Cheng wrote:
> "zone_t" doesn't exist in current code base anymore, remove the
> description of it.
> 
> Signed-off-by: I Hsin Cheng <richard120310@gmail.com>

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

Thanks.

> ---
>  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 531e73b00..71fd4a6ac 100644
> --- a/Documentation/mm/physical_memory.rst
> +++ b/Documentation/mm/physical_memory.rst
> @@ -33,7 +33,7 @@ The entire physical address space is partitioned into one or more blocks
>  called zones which represent ranges within memory. These ranges are usually
>  determined by architectural constraints for accessing the physical memory.
>  The memory range within a node that corresponds to a particular zone is
> -described by a ``struct zone``, typedeffed to ``zone_t``. Each zone has
> +described by a ``struct zone``. Each zone has
>  one of the types described below.
>  
>  * ``ZONE_DMA`` and ``ZONE_DMA32`` historically represented memory suitable for

-- 
~Randy