linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] [v2] alloc_tag: hide execmem_vmap() on !MMU
@ 2024-10-28 15:03 Arnd Bergmann
  2024-10-28 18:53 ` Suren Baghdasaryan
  0 siblings, 1 reply; 3+ messages in thread
From: Arnd Bergmann @ 2024-10-28 15:03 UTC (permalink / raw)
  To: Andrew Morton, Pasha Tatashin, Suren Baghdasaryan
  Cc: Arnd Bergmann, Mike Rapoport, Luis Chamberlain, Song Liu,
	Masami Hiramatsu (Google),
	linux-mm, linux-kernel

From: Arnd Bergmann <arnd@arndb.de>

The newly added function fails to link on nommu kernels, but is also
not needed there:

ld.lld-20: error: undefined symbol: __get_vm_area_node
>>> referenced by execmem.c
>>>               mm/execmem.o:(execmem_vmap) in archive vmlinux.a
>>> referenced by execmem.c
>>>               mm/execmem.o:(execmem_vmap) in archive vmlinux.a

Move it into the #ifdef block along with execmem_vmalloc().

Fixes: 57bc3834fb6f ("alloc_tag: populate memory for module tags as needed")
Acked-by: Mike Rapoport (Microsoft) <rppt@kernel.org>
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
---
 mm/execmem.c | 32 ++++++++++++++++----------------
 1 file changed, 16 insertions(+), 16 deletions(-)

diff --git a/mm/execmem.c b/mm/execmem.c
index 5c0f9f2d6f83..317b6a8d35be 100644
--- a/mm/execmem.c
+++ b/mm/execmem.c
@@ -64,6 +64,22 @@ static void *execmem_vmalloc(struct execmem_range *range, size_t size,
 
 	return p;
 }
+
+struct vm_struct *execmem_vmap(size_t size)
+{
+	struct execmem_range *range = &execmem_info->ranges[EXECMEM_MODULE_DATA];
+	struct vm_struct *area;
+
+	area = __get_vm_area_node(size, range->alignment, PAGE_SHIFT, VM_ALLOC,
+				  range->start, range->end, NUMA_NO_NODE,
+				  GFP_KERNEL, __builtin_return_address(0));
+	if (!area && range->fallback_start)
+		area = __get_vm_area_node(size, range->alignment, PAGE_SHIFT, VM_ALLOC,
+					  range->fallback_start, range->fallback_end,
+					  NUMA_NO_NODE, GFP_KERNEL, __builtin_return_address(0));
+
+	return area;
+}
 #else
 static void *execmem_vmalloc(struct execmem_range *range, size_t size,
 			     pgprot_t pgprot, unsigned long vm_flags)
@@ -368,22 +384,6 @@ void execmem_free(void *ptr)
 		vfree(ptr);
 }
 
-struct vm_struct *execmem_vmap(size_t size)
-{
-	struct execmem_range *range = &execmem_info->ranges[EXECMEM_MODULE_DATA];
-	struct vm_struct *area;
-
-	area = __get_vm_area_node(size, range->alignment, PAGE_SHIFT, VM_ALLOC,
-				  range->start, range->end, NUMA_NO_NODE,
-				  GFP_KERNEL, __builtin_return_address(0));
-	if (!area && range->fallback_start)
-		area = __get_vm_area_node(size, range->alignment, PAGE_SHIFT, VM_ALLOC,
-					  range->fallback_start, range->fallback_end,
-					  NUMA_NO_NODE, GFP_KERNEL, __builtin_return_address(0));
-
-	return area;
-}
-
 void *execmem_update_copy(void *dst, const void *src, size_t size)
 {
 	return text_poke_copy(dst, src, size);
-- 
2.39.5



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

* Re: [PATCH] [v2] alloc_tag: hide execmem_vmap() on !MMU
  2024-10-28 15:03 [PATCH] [v2] alloc_tag: hide execmem_vmap() on !MMU Arnd Bergmann
@ 2024-10-28 18:53 ` Suren Baghdasaryan
  2024-10-28 20:31   ` Suren Baghdasaryan
  0 siblings, 1 reply; 3+ messages in thread
From: Suren Baghdasaryan @ 2024-10-28 18:53 UTC (permalink / raw)
  To: Arnd Bergmann
  Cc: Andrew Morton, Pasha Tatashin, Arnd Bergmann, Mike Rapoport,
	Luis Chamberlain, Song Liu, Masami Hiramatsu (Google),
	linux-mm, linux-kernel

On Mon, Oct 28, 2024 at 8:04 AM Arnd Bergmann <arnd@kernel.org> wrote:
>
> From: Arnd Bergmann <arnd@arndb.de>
>
> The newly added function fails to link on nommu kernels, but is also
> not needed there:
>
> ld.lld-20: error: undefined symbol: __get_vm_area_node
> >>> referenced by execmem.c
> >>>               mm/execmem.o:(execmem_vmap) in archive vmlinux.a
> >>> referenced by execmem.c
> >>>               mm/execmem.o:(execmem_vmap) in archive vmlinux.a
>
> Move it into the #ifdef block along with execmem_vmalloc().
>
> Fixes: 57bc3834fb6f ("alloc_tag: populate memory for module tags as needed")
> Acked-by: Mike Rapoport (Microsoft) <rppt@kernel.org>
> Signed-off-by: Arnd Bergmann <arnd@arndb.de>

Sorry, replied to your older version. Copying here:

Thanks for the fix but execmem_vmap() is used if
CONFIG_MEM_ALLOC_PROFILING=y. Please give me an hour to post a fix
dealing with that.

> ---
>  mm/execmem.c | 32 ++++++++++++++++----------------
>  1 file changed, 16 insertions(+), 16 deletions(-)
>
> diff --git a/mm/execmem.c b/mm/execmem.c
> index 5c0f9f2d6f83..317b6a8d35be 100644
> --- a/mm/execmem.c
> +++ b/mm/execmem.c
> @@ -64,6 +64,22 @@ static void *execmem_vmalloc(struct execmem_range *range, size_t size,
>
>         return p;
>  }
> +
> +struct vm_struct *execmem_vmap(size_t size)
> +{
> +       struct execmem_range *range = &execmem_info->ranges[EXECMEM_MODULE_DATA];
> +       struct vm_struct *area;
> +
> +       area = __get_vm_area_node(size, range->alignment, PAGE_SHIFT, VM_ALLOC,
> +                                 range->start, range->end, NUMA_NO_NODE,
> +                                 GFP_KERNEL, __builtin_return_address(0));
> +       if (!area && range->fallback_start)
> +               area = __get_vm_area_node(size, range->alignment, PAGE_SHIFT, VM_ALLOC,
> +                                         range->fallback_start, range->fallback_end,
> +                                         NUMA_NO_NODE, GFP_KERNEL, __builtin_return_address(0));
> +
> +       return area;
> +}
>  #else
>  static void *execmem_vmalloc(struct execmem_range *range, size_t size,
>                              pgprot_t pgprot, unsigned long vm_flags)
> @@ -368,22 +384,6 @@ void execmem_free(void *ptr)
>                 vfree(ptr);
>  }
>
> -struct vm_struct *execmem_vmap(size_t size)
> -{
> -       struct execmem_range *range = &execmem_info->ranges[EXECMEM_MODULE_DATA];
> -       struct vm_struct *area;
> -
> -       area = __get_vm_area_node(size, range->alignment, PAGE_SHIFT, VM_ALLOC,
> -                                 range->start, range->end, NUMA_NO_NODE,
> -                                 GFP_KERNEL, __builtin_return_address(0));
> -       if (!area && range->fallback_start)
> -               area = __get_vm_area_node(size, range->alignment, PAGE_SHIFT, VM_ALLOC,
> -                                         range->fallback_start, range->fallback_end,
> -                                         NUMA_NO_NODE, GFP_KERNEL, __builtin_return_address(0));
> -
> -       return area;
> -}
> -
>  void *execmem_update_copy(void *dst, const void *src, size_t size)
>  {
>         return text_poke_copy(dst, src, size);
> --
> 2.39.5
>


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

* Re: [PATCH] [v2] alloc_tag: hide execmem_vmap() on !MMU
  2024-10-28 18:53 ` Suren Baghdasaryan
@ 2024-10-28 20:31   ` Suren Baghdasaryan
  0 siblings, 0 replies; 3+ messages in thread
From: Suren Baghdasaryan @ 2024-10-28 20:31 UTC (permalink / raw)
  To: Arnd Bergmann
  Cc: Andrew Morton, Pasha Tatashin, Arnd Bergmann, Mike Rapoport,
	Luis Chamberlain, Song Liu, Masami Hiramatsu (Google),
	linux-mm, linux-kernel

On Mon, Oct 28, 2024 at 11:53 AM Suren Baghdasaryan <surenb@google.com> wrote:
>
> On Mon, Oct 28, 2024 at 8:04 AM Arnd Bergmann <arnd@kernel.org> wrote:
> >
> > From: Arnd Bergmann <arnd@arndb.de>
> >
> > The newly added function fails to link on nommu kernels, but is also
> > not needed there:
> >
> > ld.lld-20: error: undefined symbol: __get_vm_area_node
> > >>> referenced by execmem.c
> > >>>               mm/execmem.o:(execmem_vmap) in archive vmlinux.a
> > >>> referenced by execmem.c
> > >>>               mm/execmem.o:(execmem_vmap) in archive vmlinux.a
> >
> > Move it into the #ifdef block along with execmem_vmalloc().
> >
> > Fixes: 57bc3834fb6f ("alloc_tag: populate memory for module tags as needed")
> > Acked-by: Mike Rapoport (Microsoft) <rppt@kernel.org>
> > Signed-off-by: Arnd Bergmann <arnd@arndb.de>
>
> Sorry, replied to your older version. Copying here:
>
> Thanks for the fix but execmem_vmap() is used if
> CONFIG_MEM_ALLOC_PROFILING=y. Please give me an hour to post a fix
> dealing with that.

The fix that will work with CONFIG_MEM_ALLOC_PROFILING is posted at
https://lore.kernel.org/all/20241028202935.1047017-1-surenb@google.com/

>
> > ---
> >  mm/execmem.c | 32 ++++++++++++++++----------------
> >  1 file changed, 16 insertions(+), 16 deletions(-)
> >
> > diff --git a/mm/execmem.c b/mm/execmem.c
> > index 5c0f9f2d6f83..317b6a8d35be 100644
> > --- a/mm/execmem.c
> > +++ b/mm/execmem.c
> > @@ -64,6 +64,22 @@ static void *execmem_vmalloc(struct execmem_range *range, size_t size,
> >
> >         return p;
> >  }
> > +
> > +struct vm_struct *execmem_vmap(size_t size)
> > +{
> > +       struct execmem_range *range = &execmem_info->ranges[EXECMEM_MODULE_DATA];
> > +       struct vm_struct *area;
> > +
> > +       area = __get_vm_area_node(size, range->alignment, PAGE_SHIFT, VM_ALLOC,
> > +                                 range->start, range->end, NUMA_NO_NODE,
> > +                                 GFP_KERNEL, __builtin_return_address(0));
> > +       if (!area && range->fallback_start)
> > +               area = __get_vm_area_node(size, range->alignment, PAGE_SHIFT, VM_ALLOC,
> > +                                         range->fallback_start, range->fallback_end,
> > +                                         NUMA_NO_NODE, GFP_KERNEL, __builtin_return_address(0));
> > +
> > +       return area;
> > +}
> >  #else
> >  static void *execmem_vmalloc(struct execmem_range *range, size_t size,
> >                              pgprot_t pgprot, unsigned long vm_flags)
> > @@ -368,22 +384,6 @@ void execmem_free(void *ptr)
> >                 vfree(ptr);
> >  }
> >
> > -struct vm_struct *execmem_vmap(size_t size)
> > -{
> > -       struct execmem_range *range = &execmem_info->ranges[EXECMEM_MODULE_DATA];
> > -       struct vm_struct *area;
> > -
> > -       area = __get_vm_area_node(size, range->alignment, PAGE_SHIFT, VM_ALLOC,
> > -                                 range->start, range->end, NUMA_NO_NODE,
> > -                                 GFP_KERNEL, __builtin_return_address(0));
> > -       if (!area && range->fallback_start)
> > -               area = __get_vm_area_node(size, range->alignment, PAGE_SHIFT, VM_ALLOC,
> > -                                         range->fallback_start, range->fallback_end,
> > -                                         NUMA_NO_NODE, GFP_KERNEL, __builtin_return_address(0));
> > -
> > -       return area;
> > -}
> > -
> >  void *execmem_update_copy(void *dst, const void *src, size_t size)
> >  {
> >         return text_poke_copy(dst, src, size);
> > --
> > 2.39.5
> >


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

end of thread, other threads:[~2024-10-28 20:31 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-10-28 15:03 [PATCH] [v2] alloc_tag: hide execmem_vmap() on !MMU Arnd Bergmann
2024-10-28 18:53 ` Suren Baghdasaryan
2024-10-28 20:31   ` Suren Baghdasaryan

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox