Re: [PATCH v8 13/20] PCI/ERR: Add printk level to pcie_print_tlp_log()

2025-05-27 Thread Lukas Wunner
On Thu, May 22, 2025 at 06:21:19PM -0500, Bjorn Helgaas wrote: > @@ -130,6 +132,6 @@ void pcie_print_tlp_log(const struct pci_dev *dev, > } > } > > - pci_err(dev, "%sTLP Header%s: %s\n", pfx, > + dev_printk(level, &dev->dev, "%sTLP Header%s: %s\n", pfx, >

[PATCH v3] docs: powerpc: Add htm.rst to table of contents

2025-05-27 Thread Brigham Campbell
Fix the following documentation build error, which was introduced when Documentation/arch/powerpc/htm.rst was added to the repository without any reference to the document. Documentation/arch/powerpc/htm.rst: WARNING: document isn't included in any toctree [toc.not_included] Fixes: ab1456c5aa7a

Re: [PATCH] powerpc/pseries/dlpar: Search DRC index from ibm,drc-indexes for IO add

2025-05-27 Thread Tyrel Datwyler
On 4/30/25 9:10 PM, Haren Myneni wrote: > IO hotplug add event is handled in the user space with drmgr tool. > After the device is enabled, the user space uses /sys/kerne/dlpar > interface with “dt add index ” to update the device tree. > The kernel interface (dlpar_hp_dt_add()) finds the parent no

Re: WARNING: CPU: 12 PID: 44394 at arch/powerpc/kernel/process.c:437 giveup_all+0x90/0x1d0 (v6.14.8, Talos II)

2025-05-27 Thread Erhard Furtner
On Tue, 27 May 2025 14:19:13 +0530 Srikar Dronamraju wrote: > > Getting these from time to time when I run the machine for longer periods > > building: > > > > [...] > > [ cut here ] > > WARNING: CPU: 12 PID: 44394 at arch/powerpc/kernel/process.c:437 > > giveup_all+0x9

[PATCH v3 0/6] Use helper function for_each_child_of_node_scoped()

2025-05-27 Thread Ai Chao
This patch series introduces wrapper functions for_each_child_of_node_scoped(). The for_each_child_of_node_scoped() helper provides a scope-based clean-up functionality to put the device_node automatically, and as such, there is no need to call of_node_put() directly. Summary: - Patch 1 ALSA: p

[PATCH v3 4/6] ASoC: meson: Use helper function for_each_child_of_node_scoped()

2025-05-27 Thread Ai Chao
The for_each_child_of_node_scoped() helper provides a scope-based clean-up functionality to put the device_node automatically, and as such, there is no need to call of_node_put() directly. Reported-by: kernel test robot Closes: https://lore.kernel.org/oe-kbuild-all/202505210557.epjig9bq-...@inte

Re: WARNING: CPU: 12 PID: 44394 at arch/powerpc/kernel/process.c:437 giveup_all+0x90/0x1d0 (v6.14.8, Talos II)

2025-05-27 Thread Srikar Dronamraju
* Erhard Furtner [2025-05-26 20:55:37]: Hi Erhard, Thanks for reporting. > Getting these from time to time when I run the machine for longer periods > building: > > [...] > [ cut here ] > WARNING: CPU: 12 PID: 44394 at arch/powerpc/kernel/process.c:437 > giveup_all+0x

[PATCH v3 3/6] ASoC: renesas: Use helper function for_each_child_of_node_scoped()

2025-05-27 Thread Ai Chao
The for_each_child_of_node_scoped() helper provides a scope-based clean-up functionality to put the device_node automatically, and as such, there is no need to call of_node_put() directly. Acked-by: Kuninori Morimoto Signed-off-by: Ai Chao --- sound/soc/renesas/rcar/core.c | 35 +++-

[PATCH v3 5/6] ASoC: imx-card: Use helper function for_each_child_of_node_scoped()

2025-05-27 Thread Ai Chao
The for_each_child_of_node_scoped() helper provides a scope-based clean-up functionality to put the device_node automatically, and as such, there is no need to call of_node_put() directly. Signed-off-by: Ai Chao --- sound/soc/fsl/imx-card.c | 13 + 1 file changed, 5 insertions(+), 8

Re: [PATCH v3 2/6] ALSA: aoa: Use helper function for_each_child_of_node_scoped()

2025-05-27 Thread Johannes Berg
On Tue, 2025-05-27 at 16:24 +0800, Ai Chao wrote: > The for_each_child_of_node_scoped() helper provides a scope-based > clean-up functionality to put the device_node automatically. Why are you resending this? You haven't convinced anyone of its correctness. You haven't even convinced anyone that y

[PATCH v3 6/6] ASoC: qcom: Use helper function for_each_child_of_node_scoped()

2025-05-27 Thread Ai Chao
The for_each_child_of_node_scoped() helper provides a scope-based clean-up functionality to put the device_node automatically. Signed-off-by: Ai Chao --- sound/soc/qcom/lpass-cpu.c | 3 +-- sound/soc/qcom/qdsp6/q6afe-dai.c | 3 +-- sound/soc/qcom/qdsp6/q6asm-dai.c | 4 +--- 3 files changed

[PATCH v3 1/6] ALSA: ppc: Use helper function for_each_child_of_node_scoped()

2025-05-27 Thread Ai Chao
The for_each_child_of_node_scoped() helper provides a scope-based clean-up functionality to put the device_node automatically, and as such, there is no need to call of_node_put() directly. Signed-off-by: Ai Chao --- sound/ppc/tumbler.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-)

[PATCH v3 2/6] ALSA: aoa: Use helper function for_each_child_of_node_scoped()

2025-05-27 Thread Ai Chao
The for_each_child_of_node_scoped() helper provides a scope-based clean-up functionality to put the device_node automatically. Signed-off-by: Ai Chao --- sound/aoa/soundbus/i2sbus/core.c | 7 +++ 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/sound/aoa/soundbus/i2sbus/core.c b