Re: [PATCH] amdgpu: re-enable DCN for ppc64le

2022-07-22 Thread Dan Horák
On Fri, 22 Jul 2022 22:32:06 +1000 Michael Ellerman wrote: > Hi Dan, > > [ Cc += linuxppc-dev ] > > Dan Horák writes: > > Commit d11219ad53dc disabled the DCN driver for all platforms that > > define PPC64 due long build issues during "make allmodconfig" using > > cross-compilation.

Re: [PATCH] amdgpu: re-enable DCN for ppc64le

2022-07-22 Thread Dan Horák
On Fri, 22 Jul 2022 22:32:06 +1000 Michael Ellerman wrote: > Hi Dan, > > [ Cc += linuxppc-dev ] > > Dan Horák writes: > > Commit d11219ad53dc disabled the DCN driver for all platforms that > > define PPC64 due long build issues during "make allmodconfig" using > > cross-compilation.

Re: [PATCH] amdgpu: re-enable DCN for ppc64le

2022-07-22 Thread Michael Ellerman
Hi Dan, [ Cc += linuxppc-dev ] Dan Horák writes: > Commit d11219ad53dc disabled the DCN driver for all platforms that > define PPC64 due long build issues during "make allmodconfig" using > cross-compilation. Cross-compilation defaults to the ppc64_defconfig > and thus big-endian toolchain

Re: [PATCH v3] random: handle archrandom with multiple longs

2022-07-22 Thread Heiko Carstens
On Tue, Jul 19, 2022 at 03:02:07PM +0200, Jason A. Donenfeld wrote: > The archrandom interface was originally designed for x86, which supplies > RDRAND/RDSEED for receiving random words into registers, resulting in > one function to generate an int and another to generate a long. However, > other

Re: [PATCH v3 01/14] perf/hw_breakpoint: Add KUnit test for constraints accounting

2022-07-22 Thread Will Deacon
On Fri, Jul 22, 2022 at 12:31:45PM +0200, Dmitry Vyukov wrote: > On Fri, 22 Jul 2022 at 12:11, Will Deacon wrote: > > > > > On Mon, Jul 04, 2022 at 05:05:01PM +0200, Marco Elver wrote: > > > > > I'm not immediately sure what would be necessary to support per-task > > > > > kernel > > > > >

Re: [PATCH v3 01/14] perf/hw_breakpoint: Add KUnit test for constraints accounting

2022-07-22 Thread Will Deacon
On Fri, Jul 22, 2022 at 11:20:25AM +0200, Dmitry Vyukov wrote: > On Fri, 22 Jul 2022 at 11:10, Will Deacon wrote: > > > [adding Will] > > > > > > On Mon, Jul 04, 2022 at 05:05:01PM +0200, Marco Elver wrote: > > > > Add KUnit test for hw_breakpoint constraints accounting, with various > > > >

[PATCH] soc: fsl: qe: Add check for platform_driver_register

2022-07-22 Thread williamsukatube
From: William Dean As platform_driver_register() could fail, it should be better to deal with the return value in order to maintain the code consisitency. Fixes: be7ecbd240b2f ("soc: fsl: qe: convert QE interrupt controller to platform_device") Reported-by: Hacash Robot Signed-off-by: William

Re: [PATCH v3 01/14] perf/hw_breakpoint: Add KUnit test for constraints accounting

2022-07-22 Thread Will Deacon
On Thu, Jul 21, 2022 at 05:22:07PM +0100, Mark Rutland wrote: > Hi Marco, > > [adding Will] > > On Mon, Jul 04, 2022 at 05:05:01PM +0200, Marco Elver wrote: > > Add KUnit test for hw_breakpoint constraints accounting, with various > > interesting mixes of breakpoint targets (some care was taken

Regression: Linux v5.15+ does not boot on Freescale P2020

2022-07-22 Thread Pali Rohár
Hello! Trying to boot mainline Linux kernel v5.15+, including current version from master branch, on Freescale P2020 does not work. Kernel does not print anything to serial console, seems that it does not work and after timeout watchdog reset the board. I run git bisect and it found following

Re: [PATCH] cyrpto:delete the rebundant word "block" in comments

2022-07-22 Thread Herbert Xu
shaom Deng wrote: > there is rebundant word "block" in comments, so remove it > > Signed-off-by: shaom Deng > --- > arch/powerpc/crypto/aes-spe-glue.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) Patch applied. Thanks. -- Email: Herbert Xu Home Page:

Re: [PATCH v2] random: handle archrandom in plural words

2022-07-22 Thread Holger Dengler
Hi Jason, On 17/07/2022 22:03, Jason A. Donenfeld wrote: > The archrandom interface was originally designed for x86, which supplies > RDRAND/RDSEED for receiving random words into registers, resulting in > one function to generate an int and another to generate a long. However, > other

[PATCH] usb: phy: check the return value of ioremap() in usb_otg_start()

2022-07-22 Thread williamsukatube
From: William Dean The function ioremap() in usb_otg_start() can fail, so its return value should be checked. Fixes: 0807c500a1a6d ("USB: add Freescale USB OTG Transceiver driver") Reported-by: Hacash Robot Signed-off-by: William Dean --- drivers/usb/phy/phy-fsl-usb.c | 2 ++ 1 file changed,