linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
From: Mike Rapoport <rppt@kernel.org>
To: Rong Tao <rtoax@foxmail.com>
Cc: rongtao@cestc.cn, open list <linux-kernel@vger.kernel.org>,
	"open list:MEMBLOCK AND MEMORY MANAGEMENT INITIALIZATION"
	<linux-mm@kvack.org>
Subject: Re: [PATCH] memblock tests: Fix compilation errors.
Date: Thu, 14 Sep 2023 09:12:54 +0300	[thread overview]
Message-ID: <20230914061254.GB3303@kernel.org> (raw)
In-Reply-To: <tencent_6F19BC082167F15DF2A8D8BEFE8EF220F60A@qq.com>

On Mon, Sep 11, 2023 at 10:32:56PM +0800, Rong Tao wrote:
> From: Rong Tao <rongtao@cestc.cn>
> 
> This patch fix the follow errors.
> 
> commit 61167ad5fecd("mm: pass nid to reserve_bootmem_region()") pass nid
> parameter to reserve_bootmem_region(),
> 
>     $ make -C tools/testing/memblock/
>     ...
>     memblock.c: In function ‘memmap_init_reserved_pages’:
>     memblock.c:2111:25: error: too many arguments to function ‘reserve_bootmem_region’
>     2111 |                         reserve_bootmem_region(start, end, nid);
>          |                         ^~~~~~~~~~~~~~~~~~~~~~
>     ../../include/linux/mm.h:32:6: note: declared here
>     32 | void reserve_bootmem_region(phys_addr_t start, phys_addr_t end);
>        |      ^~~~~~~~~~~~~~~~~~~~~~
>     memblock.c:2122:17: error: too many arguments to function ‘reserve_bootmem_region’
>     2122 |                 reserve_bootmem_region(start, end, nid);
>          |                 ^~~~~~~~~~~~~~~~~~~~~~
> 
> commit dcdfdd40fa82("mm: Add support for unaccepted memory") call
> accept_memory() in memblock.c
> 
>     $ make -C tools/testing/memblock/
>     ...
>     cc -fsanitize=address -fsanitize=undefined  main.o memblock.o \
>      lib/slab.o mmzone.o slab.o tests/alloc_nid_api.o \
>      tests/alloc_helpers_api.o tests/alloc_api.o tests/basic_api.o \
>      tests/common.o tests/alloc_exact_nid_api.o   -o main
>     /usr/bin/ld: memblock.o: in function `memblock_alloc_range_nid':
>     memblock.c:(.text+0x7ae4): undefined reference to `accept_memory'
> 
> Signed-off-by: Rong Tao <rongtao@cestc.cn>

Applied, thanks!

> ---
>  tools/include/linux/mm.h          | 2 +-
>  tools/testing/memblock/internal.h | 4 ++++
>  tools/testing/memblock/mmzone.c   | 2 +-
>  3 files changed, 6 insertions(+), 2 deletions(-)
> 
> diff --git a/tools/include/linux/mm.h b/tools/include/linux/mm.h
> index a03d9bba5151..2bc94079d616 100644
> --- a/tools/include/linux/mm.h
> +++ b/tools/include/linux/mm.h
> @@ -29,7 +29,7 @@ static inline void *phys_to_virt(unsigned long address)
>  	return __va(address);
>  }
>  
> -void reserve_bootmem_region(phys_addr_t start, phys_addr_t end);
> +void reserve_bootmem_region(phys_addr_t start, phys_addr_t end, int nid);
>  
>  static inline void totalram_pages_inc(void)
>  {
> diff --git a/tools/testing/memblock/internal.h b/tools/testing/memblock/internal.h
> index fdb7f5db7308..f6c6e5474c3a 100644
> --- a/tools/testing/memblock/internal.h
> +++ b/tools/testing/memblock/internal.h
> @@ -20,4 +20,8 @@ void memblock_free_pages(struct page *page, unsigned long pfn,
>  {
>  }
>  
> +static inline void accept_memory(phys_addr_t start, phys_addr_t end)
> +{
> +}
> +
>  #endif
> diff --git a/tools/testing/memblock/mmzone.c b/tools/testing/memblock/mmzone.c
> index 7b0909e8b759..d3d58851864e 100644
> --- a/tools/testing/memblock/mmzone.c
> +++ b/tools/testing/memblock/mmzone.c
> @@ -11,7 +11,7 @@ struct pglist_data *next_online_pgdat(struct pglist_data *pgdat)
>  	return NULL;
>  }
>  
> -void reserve_bootmem_region(phys_addr_t start, phys_addr_t end)
> +void reserve_bootmem_region(phys_addr_t start, phys_addr_t end, int nid)
>  {
>  }
>  
> -- 
> 2.41.0
> 

-- 
Sincerely yours,
Mike.


      reply	other threads:[~2023-09-14  6:13 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-09-11 14:32 [PATCH] memblock tests: Fix compilation errors Rong Tao
2023-09-14  6:12 ` Mike Rapoport [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20230914061254.GB3303@kernel.org \
    --to=rppt@kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mm@kvack.org \
    --cc=rongtao@cestc.cn \
    --cc=rtoax@foxmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).