[powerpc:next] BUILD SUCCESS 3c592ce7991cdf03bc7d139d790ce58c82c5903b

2024-11-20 Thread kernel test robot
gcc-13.2.0 arc randconfig-001-20241120gcc-13.2.0 arc randconfig-002-20241120gcc-13.2.0 armallmodconfiggcc-14.2.0 arm allnoconfigclang-20 armallyesconfiggcc-14.2.0 arm am200epdkit_defconfiggcc

Re: [PATCH] soc: fsl: cpm1: qmc: Fix qmc_probe() warn missing error code ret

2024-11-20 Thread Pei Xiao
在 2024/11/20 19:05, Herve Codina 写道: Hi Pei, On Wed, 20 Nov 2024 17:38:20 +0800 Pei Xiao wrote: platform_get_irq() may failed,but ret still equals to 0, will cacuse qmc_probe() return 0 but fail. Reported-by: Dan Carpenter Closes: https://lore.kernel.org/r/202411051350.kny6ziwa-...@intel

Re: linux-next: build failure after merge of the ftrace tree

2024-11-20 Thread Stephen Rothwell
Hi all, On Wed, 6 Nov 2024 14:04:14 +1100 Stephen Rothwell wrote: > > After merging the ftrace tree, today's linux-next build (powerpc > ppc64_defconfig) failed like this: > > In file included from include/linux/ftrace.h:23, > from include/linux/kvm_host.h:32, >

Re: [PATCH v2 2/2] powerpc: Large user copy aware of full:rt:lazy preemption

2024-11-20 Thread Shrikanth Hegde
On 11/20/24 13:30, Sebastian Andrzej Siewior wrote: On 2024-11-17 00:53:06 [+0530], Shrikanth Hegde wrote: Large user copy_to/from (more than 16 bytes) uses vmx instructions to speed things up. Once the copy is done, it makes sense to try schedule as soon as possible for preemptible kernels.

Re: [PATCH v2 2/2] powerpc: Large user copy aware of full:rt:lazy preemption

2024-11-20 Thread Shrikanth Hegde
On 11/20/24 13:33, Sebastian Andrzej Siewior wrote: On 2024-11-19 13:08:31 [-0800], Ankur Arora wrote: Shrikanth Hegde writes: Thanks Ankur and Sebastian for taking a look. Large user copy_to/from (more than 16 bytes) uses vmx instructions to speed things up. Once the copy is done, it

Re: [PATCH] powerpc/pseries/eeh: Fix get PE state translation

2024-11-20 Thread Vaibhav Jain
Hi Ritesh, Thanks for looking into this patch. My responses on behalf of Narayana below: "Ritesh Harjani (IBM)" writes: > Narayana Murty N writes: > >> The PE Reset State "0" obtained from RTAS calls >> ibm_read_slot_reset_[state|state2] indicates that >> the Reset is deactivated and the PE is

[PATCH] soc: fsl: cpm1: qmc: Fix qmc_probe() warn missing error code ret

2024-11-20 Thread Pei Xiao
platform_get_irq() may failed,but ret still equals to 0, will cacuse qmc_probe() return 0 but fail. Reported-by: Dan Carpenter Closes: https://lore.kernel.org/r/202411051350.kny6ziwa-...@intel.com/ Fixes: 3178d58e0b97 ("soc: fsl: cpm1: Add support for QMC") Signed-off-by: Pei Xiao --- drivers/s

Re: [PATCH] soc: fsl: cpm1: qmc: Fix qmc_probe() warn missing error code ret

2024-11-20 Thread Christophe Leroy
Le 20/11/2024 à 10:38, Pei Xiao a écrit : [Vous ne recevez pas souvent de courriers de xiaope...@kylinos.cn. Découvrez pourquoi ceci est important à https://aka.ms/LearnAboutSenderIdentification ] platform_get_irq() may failed,but ret still equals to 0, will cacuse qmc_probe() return 0 but f

Re: [PATCH] soc: fsl: cpm1: qmc: Fix qmc_probe() warn missing error code ret

2024-11-20 Thread Herve Codina
Hi Pei, On Wed, 20 Nov 2024 17:38:20 +0800 Pei Xiao wrote: > platform_get_irq() may failed,but ret still equals to 0, > will cacuse qmc_probe() return 0 but fail. > > Reported-by: Dan Carpenter > Closes: https://lore.kernel.org/r/202411051350.kny6ziwa-...@intel.com/ > Fixes: 3178d58e0b97 ("soc

Re: [PATCH net-next v2 01/10] net: freescale: ucc_geth: Drop support for the "interface" DT property

2024-11-20 Thread Maxime Chevallier
Hello Simon, On Fri, 15 Nov 2024 12:19:14 + Simon Horman wrote: [...] > > @@ -3627,18 +3588,17 @@ static int ucc_geth_probe(struct platform_device* > > ofdev) > > /* Find the TBI PHY node. If it's not there, we don't support SGMII */ > > ug_info->tbi_node = of_parse_phandle(np, "tb

Re: [PATCH] selftests/mount_setattr: Fix failures on 64K PAGE_SIZE kernels

2024-11-20 Thread Christian Brauner
On Sat, 16 Nov 2024 00:41:14 +1100, Michael Ellerman wrote: > Currently the mount_setattr_test fails on machines with a 64K PAGE_SIZE, > with errors such as: > > # RUN mount_setattr_idmapped.invalid_fd_negative ... > mkfs.ext4: No space left on device while writing out and closing f

Re: [PATCH v2 2/2] powerpc: Large user copy aware of full:rt:lazy preemption

2024-11-20 Thread Sebastian Andrzej Siewior
On 2024-11-19 13:08:31 [-0800], Ankur Arora wrote: > > Shrikanth Hegde writes: > > > Large user copy_to/from (more than 16 bytes) uses vmx instructions to > > speed things up. Once the copy is done, it makes sense to try schedule > > as soon as possible for preemptible kernels. So do this for >

Re: [PATCH v2 2/2] powerpc: Large user copy aware of full:rt:lazy preemption

2024-11-20 Thread Sebastian Andrzej Siewior
On 2024-11-17 00:53:06 [+0530], Shrikanth Hegde wrote: > Large user copy_to/from (more than 16 bytes) uses vmx instructions to > speed things up. Once the copy is done, it makes sense to try schedule > as soon as possible for preemptible kernels. So do this for > preempt=full/lazy and rt kernel.