Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.debian.kernel > #63676 > unrolled thread

Bug#785065: [PATCH] powerpc: vdso: Make vdso32 installation conditional in vdso_install

Started byBen Hutchings <ben@decadent.org.uk>
First post2019-03-22 05:30 +0100
Last post2019-04-21 16:40 +0200
Articles 2 — 2 participants

Back to article view | Back to linux.debian.kernel

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  Bug#785065: [PATCH] powerpc: vdso: Make vdso32 installation conditional in vdso_install Ben Hutchings <ben@decadent.org.uk> - 2019-03-22 05:30 +0100
    Bug#785065: powerpc: vdso: Make vdso32 installation conditional in vdso_install Michael Ellerman <patch-notifications@ellerman.id.au> - 2019-04-21 16:40 +0200

#63676 — Bug#785065: [PATCH] powerpc: vdso: Make vdso32 installation conditional in vdso_install

FromBen Hutchings <ben@decadent.org.uk>
Date2019-03-22 05:30 +0100
SubjectBug#785065: [PATCH] powerpc: vdso: Make vdso32 installation conditional in vdso_install
Message-ID<xEjYB-2Mo-1@gated-at.bofh.it>

[Multipart message — attachments visible in raw view] — view raw

The 32-bit vDSO is not needed and not normally built for 64-bit
little-endian configurations.  However, the vdso_install target still
builds and installs it.  Add the same config condition as is normally
used for the build.

Fixes: e0d005916994 ("powerpc/vdso: Disable building the 32-bit VDSO ...")
Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
---
 arch/powerpc/Makefile | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/arch/powerpc/Makefile b/arch/powerpc/Makefile
index 488c9edffa58..3def265cf1cf 100644
--- a/arch/powerpc/Makefile
+++ b/arch/powerpc/Makefile
@@ -406,7 +406,9 @@ endef
 ifdef CONFIG_PPC64
 	$(Q)$(MAKE) $(build)=arch/$(ARCH)/kernel/vdso64 $@
 endif
+ifdef CONFIG_VDSO32
 	$(Q)$(MAKE) $(build)=arch/$(ARCH)/kernel/vdso32 $@
+endif
 
 archclean:
 	$(Q)$(MAKE) $(clean)=$(boot)

[toc] | [next] | [standalone]


#63896 — Bug#785065: powerpc: vdso: Make vdso32 installation conditional in vdso_install

FromMichael Ellerman <patch-notifications@ellerman.id.au>
Date2019-04-21 16:40 +0200
SubjectBug#785065: powerpc: vdso: Make vdso32 installation conditional in vdso_install
Message-ID<xPlNn-31h-1@gated-at.bofh.it>
In reply to#63676
On Fri, 2019-03-22 at 04:24:37 UTC, Ben Hutchings wrote:
> The 32-bit vDSO is not needed and not normally built for 64-bit
> little-endian configurations.  However, the vdso_install target still
> builds and installs it.  Add the same config condition as is normally
> used for the build.
> 
> Fixes: e0d005916994 ("powerpc/vdso: Disable building the 32-bit VDSO ...")
> Signed-off-by: Ben Hutchings <ben@decadent.org.uk>

Applied to powerpc next, thanks.

https://git.kernel.org/powerpc/c/ff6d27823f619892ab96f7461764840e

cheers

[toc] | [prev] | [standalone]


Back to top | Article view | linux.debian.kernel


csiph-web