Re: [PATCH v11 09/13] arm64: dts: ls1046a: Add serdes nodes

2023-03-14 Thread Shawn Guo
On Mon, Mar 13, 2023 at 12:11:33PM -0400, Sean Anderson wrote: > This adds nodes for the SerDes devices. They are disabled by default > to prevent any breakage on existing boards. > > Signed-off-by: Sean Anderson The DTS patches look good to me. Let me know if they are ready to be applied. Sha

Question about the dependency on the config SOC_FSL in CPM_QMC

2023-03-14 Thread Lukas Bulwahn
Dear Herve, In your patch below, you added the config CPM_QMC which depends on the non-existing config SOC_FSL: https://lore.kernel.org/r/20230217145645.1768659-7-herve.cod...@bootlin.com Up to my knowledge, the config SOC_FSL never existed in the mainline tree. Is this dependency really require

Re: Question about the dependency on the config SOC_FSL in CPM_QMC

2023-03-14 Thread Herve Codina
Hi Lukas, On Tue, 14 Mar 2023 08:21:50 +0100 Lukas Bulwahn wrote: > Dear Herve, > > In your patch below, you added the config CPM_QMC which depends on the > non-existing config SOC_FSL: > > https://lore.kernel.org/r/20230217145645.1768659-7-herve.cod...@bootlin.com > > Up to my knowledge, the

Re: Question about the dependency on the config SOC_FSL in CPM_QMC

2023-03-14 Thread Christophe Leroy
Hi Lukas Le 14/03/2023 à 08:21, Lukas Bulwahn a écrit : > Dear Herve, > > In your patch below, you added the config CPM_QMC which depends on the > non-existing config SOC_FSL: > > https://lore.kernel.org/r/20230217145645.1768659-7-herve.cod...@bootlin.com > > Up to my knowledge, the config SOC_

Re: Question about the dependency on the config SOC_FSL in CPM_QMC

2023-03-14 Thread Lukas Bulwahn
On Tue, Mar 14, 2023 at 8:57 AM Herve Codina wrote: > > Hi Lukas, > > On Tue, 14 Mar 2023 08:21:50 +0100 > Lukas Bulwahn wrote: > > > Dear Herve, > > > > In your patch below, you added the config CPM_QMC which depends on the > > non-existing config SOC_FSL: > > > > https://lore.kernel.org/r/20230

[PATCH] soc: fsl: cpm1: qmc: Fix test dependency

2023-03-14 Thread Herve Codina
The QMC depends on (SOC_FSL && COMPILE_TEST). SOC_FSL does not exist. Fix the dependency using the correct one: FSL_SOC. Signed-off-by: Herve Codina --- drivers/soc/fsl/qe/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/soc/fsl/qe/Kconfig b/drivers/soc/fsl/qe

Re: Question about the dependency on the config SOC_FSL in CPM_QMC

2023-03-14 Thread Herve Codina
Hi Lukas, Mark, On Tue, 14 Mar 2023 09:17:18 +0100 Lukas Bulwahn wrote: > On Tue, Mar 14, 2023 at 8:57 AM Herve Codina wrote: > > > > Hi Lukas, > > > > On Tue, 14 Mar 2023 08:21:50 +0100 > > Lukas Bulwahn wrote: > > > > > Dear Herve, > > > > > > In your patch below, you added the config CPM_

[PATCH] crypto: p10-aes-gcm - remove duplicate include header

2023-03-14 Thread ye.xingchen
From: Ye Xingchen crypto/algapi.h is included more than once. Signed-off-by: Ye Xingchen --- arch/powerpc/crypto/aes-gcm-p10-glue.c | 1 - 1 file changed, 1 deletion(-) diff --git a/arch/powerpc/crypto/aes-gcm-p10-glue.c b/arch/powerpc/crypto/aes-gcm-p10-glue.c index c95f5b7cc456..1533c8cdd2

Re: [PATCH] crypto: p10-aes-gcm - remove duplicate include header

2023-03-14 Thread Christophe Leroy
Hi, Le 14/03/2023 à 09:31, ye.xingc...@zte.com.cn a écrit : > From: Ye Xingchen > > crypto/algapi.h is included more than once. > > Signed-off-by: Ye Xingchen You already sent this patch, see https://patchwork.ozlabs.org/project/linuxppc-dev/patch/202301171601080312...@zte.com.cn/ Any reaso

Re: [PATCH] crypto: p10-aes-gcm - remove duplicate include header

2023-03-14 Thread Herbert Xu
On Tue, Mar 14, 2023 at 08:47:30AM +, Christophe Leroy wrote: > > Any reason for resending ? The p10 patches were reverted, and have only just been re-instated. Cheers, -- Email: Herbert Xu Home Page: http://gondor.apana.org.au/~herbert/ PGP Key: http://gondor.apana.org.au/~herbert/pubkey.t

Re: [PATCH] crypto: p10-aes-gcm - remove duplicate include header

2023-03-14 Thread Michael Ellerman
Herbert Xu writes: > On Tue, Mar 14, 2023 at 08:47:30AM +, Christophe Leroy wrote: >> >> Any reason for resending ? > > The p10 patches were reverted, and have only just been re-instated. Hmm. Seems none of them were ever Cc'ed to linuxppc-dev. So this is the first I've seen of them. We seem

[PATCH v3 01/38] Kconfig: introduce HAS_IOPORT option and select it as necessary

2023-03-14 Thread Niklas Schnelle
We introduce a new HAS_IOPORT Kconfig option to indicate support for I/O Port access. In a future patch HAS_IOPORT=n will disable compilation of the I/O accessor functions inb()/outb() and friends on architectures which can not meaningfully support legacy I/O spaces such as s390. Also add dependenc

Re: [PATCH v3 01/38] Kconfig: introduce HAS_IOPORT option and select it as necessary

2023-03-14 Thread Geert Uytterhoeven
On Tue, Mar 14, 2023 at 1:13 PM Niklas Schnelle wrote: > We introduce a new HAS_IOPORT Kconfig option to indicate support for I/O > Port access. In a future patch HAS_IOPORT=n will disable compilation of > the I/O accessor functions inb()/outb() and friends on architectures > which can not meaning

Re: [PATCH v3 01/38] Kconfig: introduce HAS_IOPORT option and select it as necessary

2023-03-14 Thread Johannes Berg
On Tue, 2023-03-14 at 13:11 +0100, Niklas Schnelle wrote: > --- a/arch/um/Kconfig > +++ b/arch/um/Kconfig > @@ -56,6 +56,7 @@ config NO_IOPORT_MAP > > config ISA > bool > + depends on HAS_IOPORT > config ISA here is already unselectable, and nothing ever does "select ISA" (only in so

Re: [PATCH v3 01/38] Kconfig: introduce HAS_IOPORT option and select it as necessary

2023-03-14 Thread Arnd Bergmann
On Tue, Mar 14, 2023, at 13:11, Niklas Schnelle wrote: > We introduce a new HAS_IOPORT Kconfig option to indicate support for I/O > Port access. In a future patch HAS_IOPORT=n will disable compilation of > the I/O accessor functions inb()/outb() and friends on architectures > which can not meaningf

Re: [PATCH v3] vdso: Improve cmd_vdso_check to check all dynamic relocations

2023-03-14 Thread Michael Ellerman
Fangrui Song writes: > The actual intention is that no dynamic relocation exists. However, some > GNU ld ports produce unneeded R_*_NONE. (If a port fails to determine > the exact .rel[a].dyn size, the trailing zeros become R_*_NONE > relocations. E.g. ld's powerpc port recently fixed > https://so

Re: [PATCH] modpost: support arbitrary symbol length in modversion

2023-03-14 Thread Andrea Righi
On Mon, Mar 13, 2023 at 11:09:31PM +0100, Andrea Righi wrote: > On Mon, Mar 13, 2023 at 11:02:34PM +0100, Michal Suchánek wrote: > > On Mon, Mar 13, 2023 at 10:53:34PM +0100, Andrea Righi wrote: > > > On Mon, Mar 13, 2023 at 10:48:53PM +0100, Michal Suchánek wrote: > > > > Hello, > > > > > > > > O

Re: [PATCH] modpost: support arbitrary symbol length in modversion

2023-03-14 Thread Andrea Righi
On Tue, Mar 14, 2023 at 03:38:24PM +0100, Andrea Righi wrote: > On Mon, Mar 13, 2023 at 11:09:31PM +0100, Andrea Righi wrote: > > On Mon, Mar 13, 2023 at 11:02:34PM +0100, Michal Suchánek wrote: > > > On Mon, Mar 13, 2023 at 10:53:34PM +0100, Andrea Righi wrote: > > > > On Mon, Mar 13, 2023 at 10:4

Re: [PATCH v3 01/38] Kconfig: introduce HAS_IOPORT option and select it as necessary

2023-03-14 Thread Niklas Schnelle
On Tue, 2023-03-14 at 14:29 +0100, Arnd Bergmann wrote: > On Tue, Mar 14, 2023, at 13:11, Niklas Schnelle wrote: > > We introduce a new HAS_IOPORT Kconfig option to indicate support for I/O > > Port access. In a future patch HAS_IOPORT=n will disable compilation of > > the I/O accessor functions in

Re: [PATCH v3 01/38] Kconfig: introduce HAS_IOPORT option and select it as necessary

2023-03-14 Thread Niklas Schnelle
On Tue, 2023-03-14 at 13:11 +0100, Niklas Schnelle wrote: > We introduce a new HAS_IOPORT Kconfig option to indicate support for I/O > Port access. In a future patch HAS_IOPORT=n will disable compilation of > the I/O accessor functions inb()/outb() and friends on architectures > which can not meani

[RFC PATCH v1] powerpc: Add version to install filenames

2023-03-14 Thread Nick Child
Rather than replacing the versionless vmlinux and System.map files, copy to files with the version info appended. Additionally, since executing the script is a last resort option, inform the user about the missing `installkernel` command and the location of the installation. This work is adapted

Re: [PATCH v11 03/13] dt-bindings: Convert gpio-mmio to yaml

2023-03-14 Thread Krzysztof Kozlowski
On 13/03/2023 17:11, Sean Anderson wrote: > This is a generic binding for simple MMIO GPIO controllers. Although we > have a single driver for these controllers, they were previously spread > over several files. Consolidate them. The register descriptions are > adapted from the comments in the sour

Re: [PATCH v11 03/13] dt-bindings: Convert gpio-mmio to yaml

2023-03-14 Thread Sean Anderson
On 3/14/23 13:56, Krzysztof Kozlowski wrote: > On 13/03/2023 17:11, Sean Anderson wrote: >> This is a generic binding for simple MMIO GPIO controllers. Although we >> have a single driver for these controllers, they were previously spread >> over several files. Consolidate them. The register descri

Re: [PATCH v11 03/13] dt-bindings: Convert gpio-mmio to yaml

2023-03-14 Thread Krzysztof Kozlowski
On 14/03/2023 19:09, Sean Anderson wrote: > On 3/14/23 13:56, Krzysztof Kozlowski wrote: >> On 13/03/2023 17:11, Sean Anderson wrote: >>> This is a generic binding for simple MMIO GPIO controllers. Although we >>> have a single driver for these controllers, they were previously spread >>> over seve

Re: [PATCH v4 1/4] PCI: Introduce pci_dev_for_each_resource()

2023-03-14 Thread Andy Shevchenko
On Fri, Mar 10, 2023 at 03:15:38PM -0700, Keith Busch wrote: > On Fri, Mar 10, 2023 at 07:14:13PM +0200, Andy Shevchenko wrote: ... > > +#define pci_dev_for_each_resource_p(dev, res) > > \ > > + __pci_dev_for_each_resource(dev, res, i, unsigned int) > > It looks d

Re: [PATCH v4 1/4] PCI: Introduce pci_dev_for_each_resource()

2023-03-14 Thread Andy Shevchenko
On Sat, Mar 11, 2023 at 04:54:32PM +0300, Dan Carpenter wrote: > 059b4a086017fb Mika Westerberg 2023-03-10 246 > unsigned long type = resource_type(r); > 999ed65ad12e37 Rene Herman 2008-07-25 247 > 059b4a086017fb Mika Westerberg 2023-03-10 @248

Re: [PATCH v11 03/13] dt-bindings: Convert gpio-mmio to yaml

2023-03-14 Thread Sean Anderson
On 3/14/23 14:32, Krzysztof Kozlowski wrote: > On 14/03/2023 19:09, Sean Anderson wrote: >> On 3/14/23 13:56, Krzysztof Kozlowski wrote: >>> On 13/03/2023 17:11, Sean Anderson wrote: >>> + reg-names: +minItems: 1 +maxItems: 5 +items: + enum: >>> >>> Why this is

Re: [PATCH] net: Use of_property_read_bool() for boolean properties

2023-03-14 Thread Rob Herring
On Sat, Mar 11, 2023 at 5:50 AM Simon Horman wrote: > > On Fri, Mar 10, 2023 at 08:47:16AM -0600, Rob Herring wrote: > > It is preferred to use typed property access functions (i.e. > > of_property_read_ functions) rather than low-level > > of_get_property/of_find_property functions for reading pr

[PATCH v2] net: Use of_property_read_bool() for boolean properties

2023-03-14 Thread Rob Herring
It is preferred to use typed property access functions (i.e. of_property_read_ functions) rather than low-level of_get_property/of_find_property functions for reading properties. Convert reading boolean properties to of_property_read_bool(). Reviewed-by: Simon Horman Acked-by: Marc Kleine-Budde

[PATCH v5 0/4] PCI: Add pci_dev_for_each_resource() helper and update users

2023-03-14 Thread Andy Shevchenko
Provide two new helper macros to iterate over PCI device resources and convert users. Looking at it, refactor existing pci_bus_for_each_resource() and convert users accordingly. Changelog v5: - renamed loop variable to minimize the clash (Keith) - addressed smatch warning (Dan) - addressed 0-day

[PATCH v5 4/4] pcmcia: Convert to use pci_bus_for_each_resource_p()

2023-03-14 Thread Andy Shevchenko
The pci_bus_for_each_resource_p() hides the iterator loop since it may be not used otherwise. With this, we may drop that iterator variable definition. Signed-off-by: Andy Shevchenko Reviewed-by: Krzysztof Wilczyński Acked-by: Dominik Brodowski --- drivers/pcmcia/rsrc_nonstatic.c | 9 +++--

[PATCH v5 2/4] PCI: Split pci_bus_for_each_resource_p() out of pci_bus_for_each_resource()

2023-03-14 Thread Andy Shevchenko
Refactor pci_bus_for_each_resource() in the same way as it's done in pci_dev_for_each_resource() case. This will allow to hide iterator inside the loop, where it's not used otherwise. No functional changes intended. Signed-off-by: Andy Shevchenko Reviewed-by: Krzysztof Wilczyński --- .clang-fo

[PATCH v5 3/4] EISA: Convert to use pci_bus_for_each_resource_p()

2023-03-14 Thread Andy Shevchenko
The pci_bus_for_each_resource_p() hides the iterator loop since it may be not used otherwise. With this, we may drop that iterator variable definition. Signed-off-by: Andy Shevchenko Reviewed-by: Krzysztof Wilczyński --- drivers/eisa/pci_eisa.c | 4 ++-- 1 file changed, 2 insertions(+), 2 delet

[PATCH v5 1/4] PCI: Introduce pci_dev_for_each_resource()

2023-03-14 Thread Andy Shevchenko
From: Mika Westerberg Instead of open-coding it everywhere introduce a tiny helper that can be used to iterate over each resource of a PCI device, and convert the most obvious users into it. While at it drop doubled empty line before pdev_sort_resources(). No functional changes intended. Sugge

Re: [PATCH] PCI/AER: correctable error message as KERN_INFO

2023-03-14 Thread Bjorn Helgaas
On Tue, Feb 28, 2023 at 10:04:53PM -0800, Grant Grundler wrote: > Since correctable errors have been corrected (and counted), the dmesg output > should not be reported as a warning, but rather as "informational". > > Otherwise, using a certain well known vendor's PCIe parts in a USB4 docking > sta

Re: [PATCH v11 03/13] dt-bindings: Convert gpio-mmio to yaml

2023-03-14 Thread Krzysztof Kozlowski
On 14/03/2023 19:50, Sean Anderson wrote: > On 3/14/23 14:32, Krzysztof Kozlowski wrote: >> On 14/03/2023 19:09, Sean Anderson wrote: >>> On 3/14/23 13:56, Krzysztof Kozlowski wrote: On 13/03/2023 17:11, Sean Anderson wrote: + reg-names: > +minItems: 1 > +maxItems: 5

Re: [PATCH v11 03/13] dt-bindings: Convert gpio-mmio to yaml

2023-03-14 Thread Sean Anderson
On 3/14/23 15:45, Krzysztof Kozlowski wrote: > On 14/03/2023 19:50, Sean Anderson wrote: >> On 3/14/23 14:32, Krzysztof Kozlowski wrote: >>> On 14/03/2023 19:09, Sean Anderson wrote: On 3/14/23 13:56, Krzysztof Kozlowski wrote: > On 13/03/2023 17:11, Sean Anderson wrote: > + reg-names

RE: [PATCH 1/1] PCI: layerscape: Add the workaround for A-010305

2023-03-14 Thread Frank Li
> > > -Original Message- > > From: Frank Li > > Subject: RE: [PATCH 1/1] PCI: layerscape: Add the workaround for A-010305 > > > > > Subject: [PATCH 1/1] PCI: layerscape: Add the workaround for A-010305 > > > > > > From: Xiaowei Bao > > > > > > When a link down or hot reset event occurs,

Re: [PATCH v11 03/13] dt-bindings: Convert gpio-mmio to yaml

2023-03-14 Thread Krzysztof Kozlowski
On 14/03/2023 20:52, Sean Anderson wrote: > On 3/14/23 15:45, Krzysztof Kozlowski wrote: >> On 14/03/2023 19:50, Sean Anderson wrote: >>> On 3/14/23 14:32, Krzysztof Kozlowski wrote: On 14/03/2023 19:09, Sean Anderson wrote: > On 3/14/23 13:56, Krzysztof Kozlowski wrote: >> On 13/03/20

RE: [EXT] Re: [External] : [PATCH v3 1/1] PCI: layerscape: Add EP mode support for ls1028a

2023-03-14 Thread Frank Li
> > Reviewed-by: Alok Tiwari > > On 2/9/2023 8:40 PM, Frank Li wrote: > > From: Xiaowei Bao > > > > Add PCIe EP mode support for ls1028a. > > > > Signed-off-by: Xiaowei Bao > > Signed-off-by: Hou Zhiqiang > > Signed-off-by: Frank Li > > Acked-by: Roy Zang > > --- Ping! there are no feedba

Re: [PATCH v4 0/7] introduce vm_flags modifier functions

2023-03-14 Thread Alex Williamson
On Thu, 26 Jan 2023 11:37:45 -0800 Suren Baghdasaryan wrote: > This patchset was originally published as a part of per-VMA locking [1] and > was split after suggestion that it's viable on its own and to facilitate > the review process. It is now a preprequisite for the next version of per-VMA > l

Re: [PATCH 1/1] PCI: layerscape: Add the workaround for A-010305

2023-03-14 Thread Bjorn Helgaas
On Thu, Jan 12, 2023 at 02:44:33PM -0500, Frank Li wrote: > From: Xiaowei Bao > > When a link down or hot reset event occurs, the PCI Express EP > controller's Link Capabilities Register should retain the values of > the Maximum Link Width and Supported Link Speed configured by RCW. Can you rewo

Re: [PATCH] modpost: support arbitrary symbol length in modversion

2023-03-14 Thread Vincenzo Palazzo
> In practice, this is what I'm testing at the moment: > > --- > diff --git a/arch/powerpc/kernel/module_64.c b/arch/powerpc/kernel/module_64.c > index ff045644f13f..ea6c830ed1e7 100644 > --- a/arch/powerpc/kernel/module_64.c > +++ b/arch/powerpc/kernel/module_64.c > @@ -234,12 +234,13 @@ static un

Re: [PATCH] PCI/AER: correctable error message as KERN_INFO

2023-03-14 Thread Grant Grundler
On Tue, Mar 14, 2023 at 12:38 PM Bjorn Helgaas wrote: > > On Tue, Feb 28, 2023 at 10:04:53PM -0800, Grant Grundler wrote: > > Since correctable errors have been corrected (and counted), the dmesg output > > should not be reported as a warning, but rather as "informational". > > > > Otherwise, usin

Re: [RFC PATCH v1] powerpc: Add version to install filenames

2023-03-14 Thread Michael Ellerman
Nick Child writes: > Rather than replacing the versionless vmlinux and System.map files, > copy to files with the version info appended. > > Additionally, since executing the script is a last resort option, > inform the user about the missing `installkernel` command and the > location of the insta

Re: [PATCH 14/36] powerpc/pseries: move to use bus_get_dev_root()

2023-03-14 Thread Michael Ellerman
Greg Kroah-Hartman writes: > Direct access to the struct bus_type dev_root pointer is going away soon > so replace that with a call to bus_get_dev_root() instead, which is what > it is there for. > > Cc: Michael Ellerman > Cc: Nicholas Piggin > Cc: Christophe Leroy > Cc: Greg Kroah-Hartman > C

Re: [PATCH v2 4/5] riscv: Select ARCH_DMA_DEFAULT_COHERENT

2023-03-14 Thread Palmer Dabbelt
On Thu, 23 Feb 2023 14:20:27 PST (-0800), Conor Dooley wrote: On Thu, Feb 23, 2023 at 11:36:43AM +, Jiaxun Yang wrote: For riscv our assumption is unless a device states it is non-coherent, we take it to be DMA coherent. Select ARCH_DMA_DEFAULT_COHERENT to ensure dma_default_coherent is alw

Re: boot regression on ppc64 with linux 6.2

2023-03-14 Thread Michael Ellerman
Andrea Righi writes: > I'm triggering the following bug when booting my qemu powerpc VM: I'm not seeing that here :/ Can you give a bit more detail? - qemu version - qemu command line - what userspace are you using? - full dmesg of the failing case > event-sources: Unable to request interru

Re: [PATCH] crypto: p10-aes-gcm - remove duplicate include header

2023-03-14 Thread Herbert Xu
On Tue, Mar 14, 2023 at 09:44:52PM +1100, Michael Ellerman wrote: > > Hmm. Seems none of them were ever Cc'ed to linuxppc-dev. So this is the > first I've seen of them. Sorry, I didn't know that you weren't aware of this change. I will be more careful with these ppc patches in future. Thanks, --

Re: [PATCH v2 2/2] arch/powerpc/kvm: kvmppc_hv_entry: remove r4 argument

2023-03-14 Thread Michael Ellerman
Kautuk Consul writes: > kvmppc_hv_entry is called from only 2 locations within > book3s_hv_rmhandlers.S. Both of those locations set r4 > as HSTATE_KVM_VCPU(r13) before calling kvmppc_hv_entry. > So, shift the r4 load instruction to kvmppc_hv_entry and > thus modify the calling convention of this

[PATCH v4 20/36] powerpc: Implement the new page table range API

2023-03-14 Thread Matthew Wilcox (Oracle)
Add set_ptes(), update_mmu_cache_range() and flush_dcache_folio(). Change the PG_arch_1 (aka PG_dcache_dirty) flag from being per-page to per-folio. Signed-off-by: Matthew Wilcox (Oracle) Cc: Michael Ellerman Cc: Nicholas Piggin Cc: Christophe Leroy Cc: linuxppc-dev@lists.ozlabs.org --- arch/

Re: [PATCH v2 2/2] arch/powerpc/kvm: kvmppc_hv_entry: remove r4 argument

2023-03-14 Thread Kautuk Consul
On 2023-03-15 15:48:53, Michael Ellerman wrote: > Kautuk Consul writes: > > kvmppc_hv_entry is called from only 2 locations within > > book3s_hv_rmhandlers.S. Both of those locations set r4 > > as HSTATE_KVM_VCPU(r13) before calling kvmppc_hv_entry. > > So, shift the r4 load instruction to kvmppc_

Re: [PATCH v2 2/2] arch/powerpc/kvm: kvmppc_hv_entry: remove r4 argument

2023-03-14 Thread Kautuk Consul
On 2023-03-15 10:48:01, Kautuk Consul wrote: > On 2023-03-15 15:48:53, Michael Ellerman wrote: > > Kautuk Consul writes: > > > kvmppc_hv_entry is called from only 2 locations within > > > book3s_hv_rmhandlers.S. Both of those locations set r4 > > > as HSTATE_KVM_VCPU(r13) before calling kvmppc_hv_

Re: [PATCH] modpost: support arbitrary symbol length in modversion

2023-03-14 Thread Andrea Righi
On Wed, Mar 15, 2023 at 01:15:03AM +0100, Vincenzo Palazzo wrote: > > In practice, this is what I'm testing at the moment: > > > > --- > > diff --git a/arch/powerpc/kernel/module_64.c > > b/arch/powerpc/kernel/module_64.c > > index ff045644f13f..ea6c830ed1e7 100644 > > --- a/arch/powerpc/kernel/mo

Re: boot regression on ppc64 with linux 6.2

2023-03-14 Thread Andrea Righi
On Wed, Mar 15, 2023 at 02:30:53PM +1100, Michael Ellerman wrote: > Andrea Righi writes: > > I'm triggering the following bug when booting my qemu powerpc VM: > > I'm not seeing that here :/ > > Can you give a bit more detail? > - qemu version > - qemu command line > - what userspace are you

Re: boot regression on ppc64 with linux 6.2

2023-03-14 Thread Andrea Righi
On Wed, Mar 15, 2023 at 07:10:25AM +0100, Andrea Righi wrote: > On Wed, Mar 15, 2023 at 02:30:53PM +1100, Michael Ellerman wrote: > > Andrea Righi writes: > > > I'm triggering the following bug when booting my qemu powerpc VM: > > > > I'm not seeing that here :/ > > > > Can you give a bit more d