Re: [PATCH 0/4] perf: Add new macros for mem_hops field

2021-12-09 Thread Michael Ellerman
Arnaldo Carvalho de Melo writes: > Em Mon, Dec 06, 2021 at 02:47:45PM +0530, Kajol Jain escreveu: >> Patchset adds new macros for mem_hops field which can be >> used to represent remote-node, socket and board level details. >> >> Currently the code had macro for HOPS_0, which corresponds >> to

Re: [PATCH] powerpc/module_64: Fix livepatching for RO modules

2021-12-09 Thread Joe Lawrence
On 12/9/21 2:00 AM, Michael Ellerman wrote: > Russell Currey writes: >> On Tue, 2021-12-07 at 09:44 -0500, Joe Lawrence wrote: >>> On 11/23/21 3:15 AM, Russell Currey wrote: >>> >>> [[ cc += livepatching list ]] >>> >>> Hi Russell, >>> >>> Thanks for writing a minimal fix for stable /

[powerpc:next] BUILD SUCCESS 0d76914a4c99ab5658f3fb07cdf3799d28e2eab3

2021-12-09 Thread kernel test robot
allmodconfig i386 randconfig-c001-20211209 powerpc randconfig-c003-20211209 x86_64 allyesconfig arc axs103_smp_defconfig powerpc mgcoge_defconfig armmvebu_v7_defconfig m68k

[powerpc:next-test] BUILD SUCCESS b149d5d45ac9171ed699a256f026c8ebef901112

2021-12-09 Thread kernel test robot
allmodconfig i386 randconfig-c001-20211209 powerpc randconfig-c003-20211209 x86_64 allyesconfig arc axs103_smp_defconfig powerpc mgcoge_defconfig armmvebu_v7_defconfig

Re: [PATCH v4 09/10] powerpc/mm: Convert to default topdown mmap layout

2021-12-09 Thread Michael Ellerman
Christophe Leroy writes: > Le 09/12/2021 à 12:22, Michael Ellerman a écrit : >> Nicholas Piggin writes: >> >>> Excerpts from Christophe Leroy's message of December 9, 2021 8:22 pm: Le 09/12/2021 à 11:15, Nicholas Piggin a écrit : > Excerpts from Christophe Leroy's message of

[RFC PATCH v2 6/7] drivers: virtio_mem: use pageblock size as the minimum virtio_mem size.

2021-12-09 Thread Zi Yan
From: Zi Yan alloc_contig_range() now only needs to be aligned to pageblock_order, drop virtio_mem size requirement that it needs to be the max of pageblock_order and MAX_ORDER. Signed-off-by: Zi Yan --- drivers/virtio/virtio_mem.c | 6 ++ 1 file changed, 2 insertions(+), 4 deletions(-)

[RFC PATCH v2 7/7] arch: powerpc: adjust fadump alignment to be pageblock aligned.

2021-12-09 Thread Zi Yan
From: Zi Yan CMA only requires pageblock alignment now. Change CMA alignment in fadump too. Signed-off-by: Zi Yan --- arch/powerpc/include/asm/fadump-internal.h | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/arch/powerpc/include/asm/fadump-internal.h

[RFC PATCH v2 5/7] mm: cma: use pageblock_order as the single alignment

2021-12-09 Thread Zi Yan
From: Zi Yan Now alloc_contig_range() works at pageblock granularity. Change CMA allocation, which uses alloc_contig_range(), to use pageblock_order alignment. Signed-off-by: Zi Yan --- include/linux/mmzone.h | 5 + kernel/dma/contiguous.c | 2 +- mm/cma.c| 6 ++

[RFC PATCH v2 4/7] mm: make alloc_contig_range work at pageblock granularity

2021-12-09 Thread Zi Yan
From: Zi Yan alloc_contig_range() worked at MAX_ORDER-1 granularity to avoid merging pageblocks with different migratetypes. It might unnecessarily convert extra pageblocks at the beginning and at the end of the range. Change alloc_contig_range() to work at pageblock granularity. It is done by

[RFC PATCH v2 1/7] mm: page_alloc: avoid merging non-fallbackable pageblocks with others.

2021-12-09 Thread Zi Yan
From: Zi Yan This is done in addition to MIGRATE_ISOLATE pageblock merge avoidance. It prepares for the upcoming removal of the MAX_ORDER-1 alignment requirement for CMA and alloc_contig_range(). MIGRARTE_HIGHATOMIC should not merge with other migratetypes like MIGRATE_ISOLATE and

[RFC PATCH v2 3/7] mm: migrate: allocate the right size of non hugetlb or THP compound pages.

2021-12-09 Thread Zi Yan
From: Zi Yan alloc_migration_target() is used by alloc_contig_range() and non-LRU movable compound pages can be migrated. Current code does not allocate the right page size for such pages. Check THP precisely using is_transparent_huge() and add allocation support for non-LRU compound pages.

[RFC PATCH v2 0/7] Use pageblock_order for cma and alloc_contig_range alignment.

2021-12-09 Thread Zi Yan
From: Zi Yan Hi all, This patchset tries to remove the MAX_ORDER - 1 alignment requirement for CMA and alloc_contig_range(). It prepares for my upcoming changes to make MAX_ORDER adjustable at boot time[1]. The MAX_ORDER - 1 alignment requirement comes from that alloc_contig_range() isolates

[RFC PATCH v2 2/7] mm: compaction: handle non-lru compound pages properly in isolate_migratepages_block().

2021-12-09 Thread Zi Yan
From: Zi Yan In isolate_migratepages_block(), a !PageLRU tail page can be encountered when the page is larger than a pageblock. Use compound head page for the checks inside and skip the entire compound page when isolation succeeds. Signed-off-by: Zi Yan --- mm/compaction.c | 10 +++--- 1

Re: [PATCH v5 08/12] KVM: Reinstate gfn_to_pfn_cache with invalidation support

2021-12-09 Thread David Woodhouse
On Thu, 2021-12-09 at 23:34 +0100, Paolo Bonzini wrote: > Compared to the review it's missing this hunk: > > @@ -265,7 +265,7 @@ void kvm_gfn_to_pfn_cache_unmap(struct kvm *kvm, struct > gfn_to_pfn_cache *gpc) > > gpc->valid = false; > > - old_khva = gpc->khva; > + old_khva

Re: [PATCH v5 08/12] KVM: Reinstate gfn_to_pfn_cache with invalidation support

2021-12-09 Thread Paolo Bonzini
On 12/9/21 21:40, David Woodhouse wrote: NP, very useful fixes. Thanks. Incremental patch looks like this. It passes the xen_shinfo_test self-test; will test it with real Xen guests tomorrow and repost based on your kvm/next tree once it shows up. Compared to the review it's missing this

Re: [PATCH v2 2/6] powerpc/kexec_file: Add KEXEC_SIG support.

2021-12-09 Thread Nayna
On 12/9/21 04:21, Michal Suchánek wrote: Hello, Hi, On Wed, Dec 08, 2021 at 08:51:47PM -0500, Nayna wrote: On 11/25/21 13:02, Michal Suchanek wrote: Copy the code from s390x Signed-off-by: Michal Suchanek --- arch/powerpc/Kconfig| 11 +++ arch/powerpc/kexec/elf_64.c |

[Bug 215285] New: power9 le: amdgpu: *ERROR* hw_init of IP block failed -22

2021-12-09 Thread bugzilla-daemon
https://bugzilla.kernel.org/show_bug.cgi?id=215285 Bug ID: 215285 Summary: power9 le: amdgpu: *ERROR* hw_init of IP block failed -22 Product: Platform Specific/Hardware Version: 2.5 Kernel Version: 5.15.6 Hardware:

Re: [PATCH v5 08/12] KVM: Reinstate gfn_to_pfn_cache with invalidation support

2021-12-09 Thread David Woodhouse
On Thu, 2021-12-09 at 19:34 +0100, Paolo Bonzini wrote: > Sorry for the late review... NP, very useful fixes. Thanks. Incremental patch looks like this. It passes the xen_shinfo_test self-test; will test it with real Xen guests tomorrow and repost based on your kvm/next tree once it shows up.

[PATCH] PCI/AER: potential dereference of null pointer

2021-12-09 Thread Jiasheng Jiang
he return value of kzalloc() needs to be checked. To avoid use of null pointer in case of the failure of alloc. Fixes: db89ccbe52c7 ("PCI/AER: Define aer_stats structure for AER capable devices") Signed-off-by: Jiasheng Jiang --- drivers/pci/pcie/aer.c | 2 ++ 1 file changed, 2 insertions(+)

Re: [PATCH v2 2/6] powerpc/kexec_file: Add KEXEC_SIG support.

2021-12-09 Thread Nayna
On 11/25/21 13:02, Michal Suchanek wrote: Copy the code from s390x Signed-off-by: Michal Suchanek --- arch/powerpc/Kconfig| 11 +++ arch/powerpc/kexec/elf_64.c | 36 2 files changed, 47 insertions(+) diff --git a/arch/powerpc/Kconfig

Re: [PATCH 0/4] perf: Add new macros for mem_hops field

2021-12-09 Thread Arnaldo Carvalho de Melo
Em Mon, Dec 06, 2021 at 02:47:45PM +0530, Kajol Jain escreveu: > Patchset adds new macros for mem_hops field which can be > used to represent remote-node, socket and board level details. > > Currently the code had macro for HOPS_0, which corresponds > to data coming from another core but same

Re: [PATCH v5 00/12] KVM: x86/xen: Add in-kernel Xen event channel delivery

2021-12-09 Thread Paolo Bonzini
On 12/9/21 19:47, David Woodhouse wrote: As in the previous two rounds, the last patch (this time patch 12) is included as illustration of how we*might* use this for fixing the UAF bugs in nesting, but isn't intended to be applied as-is. Patches 1-11 are. Queued 1-7, will be on kvm/next

Re: [PATCH v5 00/12] KVM: x86/xen: Add in-kernel Xen event channel delivery

2021-12-09 Thread David Woodhouse
On Thu, 2021-12-09 at 19:34 +0100, Paolo Bonzini wrote: > > As in the previous two rounds, the last patch (this time patch 12) is > > included as illustration of how we*might* use this for fixing the UAF > > bugs in nesting, but isn't intended to be applied as-is. Patches 1-11 are. > > Queued

Re: [PATCH v5 00/12] KVM: x86/xen: Add in-kernel Xen event channel delivery

2021-12-09 Thread Paolo Bonzini
On 11/21/21 13:54, David Woodhouse wrote: Introduce the basic concept of 2 level event channels for kernel delivery, which is just a simple matter of a few test_and_set_bit calls on a mapped shared info page. This can be used for routing MSI of passthrough devices to PIRQ event channels in a

Re: [PATCH v5 08/12] KVM: Reinstate gfn_to_pfn_cache with invalidation support

2021-12-09 Thread Paolo Bonzini
Sorry for the late review... On 11/21/21 13:54, David Woodhouse wrote: +EXPORT_SYMBOL_GPL(kvm_gfn_to_pfn_cache_check); + +static void __release_gpc(struct kvm *kvm, kvm_pfn_t pfn, void *khva, + gpa_t gpa, bool dirty) +{ + /* Unmap the old page if it was mapped

Re: [PATCH v5 06/12] KVM: powerpc: Use Makefile.kvm for common files

2021-12-09 Thread Paolo Bonzini
On 11/21/21 13:54, David Woodhouse wrote: From: David Woodhouse It's all fairly baroque but in the end, I don't think there's any reason for $(KVM)/irqchip.o to have been handled differently, as they all end up in $(kvm-y) in the end anyway, regardless of whether they get there via

Re: [PATCH v5 03/12] KVM: s390: Use Makefile.kvm for common files

2021-12-09 Thread Paolo Bonzini
On 11/21/21 13:54, David Woodhouse wrote: -kvm-objs := $(common-objs) kvm-s390.o intercept.o interrupt.o priv.o sigp.o +kvm-objs := kvm-s390.o intercept.o interrupt.o priv.o sigp.o kvm-objs += diag.o gaccess.o guestdbg.o vsie.o pv.o "kvm-y +=" here (for both lines) would be nicer, it's

Re: [PATCH] powerpc/603: Fix boot failure with DEBUG_PAGEALLOC and KFENCE

2021-12-09 Thread Christophe Leroy
Le 09/12/2021 à 07:08, Michael Ellerman a écrit : > Christophe Leroy writes: >> Le 07/12/2021 à 11:34, Maxime Bizon a écrit : >>> >>> On Tue, 2021-12-07 at 06:10 +, Christophe Leroy wrote: >>> >>> Hello, >>> >>> With the patch applied and >>> >>> CONFIG_DEBUG_PAGEALLOC=y >>>

Re: [PATCH v3] powerpc/pseries: read the lpar name from the firmware

2021-12-09 Thread Laurent Dufour
On 09/12/2021, 14:53:31, Nathan Lynch wrote: > Laurent Dufour writes: >> On 08/12/2021, 16:21:29, Nathan Lynch wrote: >>> Laurent Dufour writes: On 07/12/2021, 18:07:50, Nathan Lynch wrote: > Laurent Dufour writes: >> On 07/12/2021, 15:32:39, Nathan Lynch wrote: >>> Is there a

Re: [PATCH] powerpc/rtas: Introduce rtas_get_sensor_nonblocking() for pci hotplug driver.

2021-12-09 Thread Nathan Lynch
Mahesh J Salgaonkar writes: > On 2021-11-29 22:53:41 Mon, Nathan Lynch wrote: >> Mahesh Salgaonkar writes: >> > >> > However on certain PHB failures, the rtas call get-sesnor-state() returns >> > extended busy error (9902) until PHB is recovered by phyp. Once PHB is >> > recovered, the

Re: [PATCH v3] PCI hotplug: rpaphp: Error out on busy status from get-sensor-state

2021-12-09 Thread Nathan Lynch
Mahesh Salgaonkar writes: > To avoid this issue, fix the pci hotplug driver (rpaphp) to return an error > if the slot presence state can not be detected immediately. Current > implementation uses rtas_get_sensor() API which blocks the slot check state > until rtas call returns success. Change

Re: [PATCH v2 0/6] KEXEC_SIG with appended signature

2021-12-09 Thread Michal Suchánek
Hello, On Wed, Dec 08, 2021 at 08:50:54PM -0500, Nayna wrote: > > On 11/25/21 13:02, Michal Suchanek wrote: > > Hello, > > Hi Michael, > > > > > This is resend of the KEXEC_SIG patchset. > > > > The first patch is new because it'a a cleanup that does not require any > > change to the module

Re: [PATCH v3] powerpc/pseries: read the lpar name from the firmware

2021-12-09 Thread Nathan Lynch
Laurent Dufour writes: > On 08/12/2021, 16:21:29, Nathan Lynch wrote: >> Laurent Dufour writes: >>> On 07/12/2021, 18:07:50, Nathan Lynch wrote: Laurent Dufour writes: > On 07/12/2021, 15:32:39, Nathan Lynch wrote: >> Is there a reasonable fallback for VMs where this parameter

[PATCH] selftests/powerpc: Add a test of sigreturning to the kernel

2021-12-09 Thread Michael Ellerman
We have a general signal fuzzer, sigfuz, which can modify the MSR & NIP before sigreturn. But the chance of it hitting a kernel address and also clearing MSR_PR is fairly slim. So add a specific test of sigreturn to a kernel address, both with and without attempting to clear MSR_PR (which the

[Bug 214913] [xfstests generic/051] BUG: Kernel NULL pointer dereference on read at 0x00000108 NIP [c0000000000372e4] tm_cgpr_active+0x14/0x40

2021-12-09 Thread bugzilla-daemon
https://bugzilla.kernel.org/show_bug.cgi?id=214913 Michael Ellerman (mich...@ellerman.id.au) changed: What|Removed |Added Status|ASSIGNED|NEEDINFO ---

Re: [PATCH v4 09/10] powerpc/mm: Convert to default topdown mmap layout

2021-12-09 Thread Christophe Leroy
Le 09/12/2021 à 12:22, Michael Ellerman a écrit : > Nicholas Piggin writes: > >> Excerpts from Christophe Leroy's message of December 9, 2021 8:22 pm: >>> >>> >>> Le 09/12/2021 à 11:15, Nicholas Piggin a écrit : Excerpts from Christophe Leroy's message of December 9, 2021 3:18 am: >

Re: [PATCH v4 09/10] powerpc/mm: Convert to default topdown mmap layout

2021-12-09 Thread Michael Ellerman
Nicholas Piggin writes: > Excerpts from Christophe Leroy's message of December 9, 2021 8:22 pm: >> >> >> Le 09/12/2021 à 11:15, Nicholas Piggin a écrit : >>> Excerpts from Christophe Leroy's message of December 9, 2021 3:18 am: Select CONFIG_ARCH_WANT_DEFAULT_TOPDOWN_MMAP_LAYOUT and

[Bug 215217] Kernel fails to boot at an early stage when built with GCC_PLUGIN_LATENT_ENTROPY=y (PowerMac G4 3,6)

2021-12-09 Thread bugzilla-daemon
https://bugzilla.kernel.org/show_bug.cgi?id=215217 --- Comment #8 from Christophe Leroy (christophe.le...@csgroup.eu) --- early_32.o should likely also have DISABLE_LATENT_ENTROPY_PLUGIN, maybe even more important that for setup_32.o -- You may reply to this email to add a comment. You are

[Bug 215217] Kernel fails to boot at an early stage when built with GCC_PLUGIN_LATENT_ENTROPY=y (PowerMac G4 3,6)

2021-12-09 Thread bugzilla-daemon
https://bugzilla.kernel.org/show_bug.cgi?id=215217 --- Comment #7 from Erhard F. (erhar...@mailbox.org) --- Created attachment 299967 --> https://bugzilla.kernel.org/attachment.cgi?id=299967=edit kernel .config (5.16-rc4 + CFLAGS_setup_32.o +=... , PowerMac G4 DP) -- You may reply to this

[Bug 215217] Kernel fails to boot at an early stage when built with GCC_PLUGIN_LATENT_ENTROPY=y (PowerMac G4 3,6)

2021-12-09 Thread bugzilla-daemon
https://bugzilla.kernel.org/show_bug.cgi?id=215217 --- Comment #6 from Erhard F. (erhar...@mailbox.org) --- Ok I cheked that out. There are already some in the Makefile: CFLAGS_cputable.o += $(DISABLE_LATENT_ENTROPY_PLUGIN) CFLAGS_prom_init.o += $(DISABLE_LATENT_ENTROPY_PLUGIN) CFLAGS_btext.o +=

Re: [PATCH v4 09/10] powerpc/mm: Convert to default topdown mmap layout

2021-12-09 Thread Nicholas Piggin
Excerpts from Christophe Leroy's message of December 9, 2021 8:22 pm: > > > Le 09/12/2021 à 11:15, Nicholas Piggin a écrit : >> Excerpts from Christophe Leroy's message of December 9, 2021 3:18 am: >>> Select CONFIG_ARCH_WANT_DEFAULT_TOPDOWN_MMAP_LAYOUT and >>> remove arch/powerpc/mm/mmap.c >>>

Re: [PATCH v4 09/10] powerpc/mm: Convert to default topdown mmap layout

2021-12-09 Thread Christophe Leroy
Le 09/12/2021 à 11:15, Nicholas Piggin a écrit : > Excerpts from Christophe Leroy's message of December 9, 2021 3:18 am: >> Select CONFIG_ARCH_WANT_DEFAULT_TOPDOWN_MMAP_LAYOUT and >> remove arch/powerpc/mm/mmap.c >> >> This change provides standard randomisation of mmaps. >> >> See commit

Re: [PATCH v4 09/10] powerpc/mm: Convert to default topdown mmap layout

2021-12-09 Thread Nicholas Piggin
Excerpts from Christophe Leroy's message of December 9, 2021 3:18 am: > Select CONFIG_ARCH_WANT_DEFAULT_TOPDOWN_MMAP_LAYOUT and > remove arch/powerpc/mm/mmap.c > > This change provides standard randomisation of mmaps. > > See commit 8b8addf891de ("x86/mm/32: Enable full randomization on i386 >

Re: [PATCH v4 07/10] powerpc/mm: Use generic_hugetlb_get_unmapped_area()

2021-12-09 Thread Nicholas Piggin
Excerpts from Christophe Leroy's message of December 9, 2021 3:18 am: > Use the generic version of arch_hugetlb_get_unmapped_area() > which is now available at all time. > > Signed-off-by: Christophe Leroy > --- > arch/powerpc/include/asm/book3s/64/hugetlb.h | 4 -- >

RE: [PATCH] sound: fsl: add missing put_device() call in imx_hdmi_probe()

2021-12-09 Thread 王擎
>> From: Wang Qing >> >> of_find_device_by_node() takes a reference to the embedded struct device >> which needs to be dropped when error return. > >... > >>    data = devm_kzalloc(>dev, sizeof(*data), GFP_KERNEL); >>    if (!data) { >> + put_device(_pdev->dev); > >If it's

Re: [PATCH v4 06/10] powerpc/mm: Use generic_get_unmapped_area() and call it from arch_get_unmapped_area()

2021-12-09 Thread Nicholas Piggin
Excerpts from Christophe Leroy's message of December 9, 2021 3:18 am: > Use the generic version of arch_get_unmapped_area() which > is now available at all time instead of its copy > radix__arch_get_unmapped_area() > > Instead of setting mm->get_unmapped_area() to either >

Re: [PATCH v4 02/10] mm, hugetlbfs: Allow an arch to always use generic versions of get_unmapped_area functions

2021-12-09 Thread Nicholas Piggin
Excerpts from Christophe Leroy's message of December 9, 2021 3:18 am: > Unlike most architectures, powerpc can only define at runtime > if it is going to use the generic arch_get_unmapped_area() or not. > > Today, powerpc has a copy of the generic arch_get_unmapped_area() > because when selection

Re: [PATCH v4 03/10] powerpc/mm: Move vma_mmu_pagesize()

2021-12-09 Thread Nicholas Piggin
Excerpts from Christophe Leroy's message of December 9, 2021 3:18 am: > vma_mmu_pagesize() is only required for slices, > otherwise there is a generic weak version doing the > exact same thing. > > Move it to slice.c > Reviewed-by: Nicholas Piggin > Signed-off-by: Christophe Leroy > --- >

Re: [PATCH v6 15/18] powerpc/64s: Always define arch unmapped area calls

2021-12-09 Thread Nicholas Piggin
Excerpts from Nicholas Piggin's message of December 9, 2021 6:25 pm: > Excerpts from Christophe Leroy's message of December 8, 2021 7:38 pm: >> >> >> Le 01/12/2021 à 15:41, Nicholas Piggin a écrit : >>> To avoid any functional changes to radix paths when building with hash >>> MMU support

Re: [PATCH v2 2/6] powerpc/kexec_file: Add KEXEC_SIG support.

2021-12-09 Thread Michal Suchánek
Hello, On Wed, Dec 08, 2021 at 08:51:47PM -0500, Nayna wrote: > > On 11/25/21 13:02, Michal Suchanek wrote: > > Copy the code from s390x > > > > Signed-off-by: Michal Suchanek > > --- > > arch/powerpc/Kconfig| 11 +++ > > arch/powerpc/kexec/elf_64.c | 36

Re: [PATCH v3] powerpc/pseries: read the lpar name from the firmware

2021-12-09 Thread Laurent Dufour
On 08/12/2021, 16:21:29, Nathan Lynch wrote: > Laurent Dufour writes: >> On 07/12/2021, 18:07:50, Nathan Lynch wrote: >>> Laurent Dufour writes: On 07/12/2021, 15:32:39, Nathan Lynch wrote: > Is there a reasonable fallback for VMs where this parameter doesn't > exist? PowerVM

Re: [PATCH v6 17/18] powerpc/64s: Move hash MMU support code under CONFIG_PPC_64S_HASH_MMU

2021-12-09 Thread Nicholas Piggin
Excerpts from Michael Ellerman's message of December 7, 2021 11:00 pm: > Nicholas Piggin writes: >> 34 files changed, 173 insertions(+), 52 deletions(-) > > > I was able to clean up some of the ifdefs a little with the changes > below. I'll run these through some test builds and then squash

Re: [PATCH v6 15/18] powerpc/64s: Always define arch unmapped area calls

2021-12-09 Thread Nicholas Piggin
Excerpts from Christophe Leroy's message of December 8, 2021 8:00 pm: > > > Le 01/12/2021 à 15:41, Nicholas Piggin a écrit : >> To avoid any functional changes to radix paths when building with hash >> MMU support disabled (and CONFIG_PPC_MM_SLICES=n), always define the >> arch get_unmapped_area

Re: [PATCH v6 15/18] powerpc/64s: Always define arch unmapped area calls

2021-12-09 Thread Christophe Leroy
Le 09/12/2021 à 09:25, Nicholas Piggin a écrit : > Excerpts from Christophe Leroy's message of December 8, 2021 7:38 pm: >> >> >> Le 01/12/2021 à 15:41, Nicholas Piggin a écrit : >>> To avoid any functional changes to radix paths when building with hash >>> MMU support disabled (and

Re: [PATCH v6 15/18] powerpc/64s: Always define arch unmapped area calls

2021-12-09 Thread Nicholas Piggin
Excerpts from Christophe Leroy's message of December 8, 2021 7:38 pm: > > > Le 01/12/2021 à 15:41, Nicholas Piggin a écrit : >> To avoid any functional changes to radix paths when building with hash >> MMU support disabled (and CONFIG_PPC_MM_SLICES=n), always define the >> arch get_unmapped_area