diff mbox series

mm: fix a comment

Message ID 20211008140312.6492-1-zhangyinan2019@email.szu.edu.cn (mailing list archive)
State New
Headers show
Series mm: fix a comment | expand

Commit Message

Yinan Zhang Oct. 8, 2021, 2:03 p.m. UTC
I have noticed that the previous macro is #ifndef CONFIG_SPARSEMEM.
I think the comment of #else should be CONFIG_SPARSEMEM.

Signed-off-by: Yinan Zhang <zhangyinan2019@email.szu.edu.cn>
---
 mm/page_ext.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Vlastimil Babka Oct. 8, 2021, 2:10 p.m. UTC | #1
On 10/8/21 16:03, Yinan Zhang wrote:
> I have noticed that the previous macro is #ifndef CONFIG_SPARSEMEM.
> I think the comment of #else should be CONFIG_SPARSEMEM.

Right.

> Signed-off-by: Yinan Zhang <zhangyinan2019@email.szu.edu.cn>

Acked-by: Vlastimil Babka <vbabka@suse.cz>

> ---
>  mm/page_ext.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/mm/page_ext.c b/mm/page_ext.c
> index dfb91653d..106079e67 100644
> --- a/mm/page_ext.c
> +++ b/mm/page_ext.c
> @@ -201,7 +201,7 @@ void __init page_ext_init_flatmem(void)
>  	panic("Out of memory");
>  }
>  
> -#else /* CONFIG_FLATMEM */
> +#else /* CONFIG_SPARSEMEM */
>  
>  struct page_ext *lookup_page_ext(const struct page *page)
>  {
>
diff mbox series

Patch

diff --git a/mm/page_ext.c b/mm/page_ext.c
index dfb91653d..106079e67 100644
--- a/mm/page_ext.c
+++ b/mm/page_ext.c
@@ -201,7 +201,7 @@  void __init page_ext_init_flatmem(void)
 	panic("Out of memory");
 }
 
-#else /* CONFIG_FLATMEM */
+#else /* CONFIG_SPARSEMEM */
 
 struct page_ext *lookup_page_ext(const struct page *page)
 {