Re: [PATCH] powerpc: Transliterate author name and remove FIXME

2024-11-10 Thread Thorsten Blum
On 11. Nov 2024, at 02:11, Michael Ellerman wrote: > Thorsten Blum writes: >> The name is Mimi Phuong-Thao Vo. > > Is that the correct spelling? According to [1] it's correct. Thanks, Thorsten [1] https://www.linkedin.com/in/mimi-phuong-thao-vo-5768033

Re: [PATCH 6/7] powerpc/entry: factout irqentry-state

2024-11-10 Thread Luming Yu
On Tue, Oct 15, 2024 at 05:42:45PM +0200, Thomas Gleixner wrote: > On Sat, Oct 12 2024 at 11:56, Luming Yu wrote: > > > To have lowlevel paca.h include high level entry-common.h cause > > include file dependency mess. Split irqentry-state.h to have > > the irqentry_state.h can be included in low l

[PATCH v2 8/8] powerpc/entry: fix ppc syscall entry issues for common entry

2024-11-10 Thread Luming Yu
From: Yu Luming Due to the common layer and internal calls details are hidden from the top level at the call side in ppc arch code, there are some difficulties in preserving all semantics implications of the original code in the patch. e.g when we got -1 returned from syscall_enter_from_user_mod

[PATCH v2 7/8] powerpc/entry: fix 32bit compile issue for common entry

2024-11-10 Thread Luming Yu
fix irqentry in 32bit code path and hw_irq helpers. Signed-off-by: Luming Yu --- arch/powerpc/include/asm/hw_irq.h | 6 ++ arch/powerpc/kernel/interrupt.c | 4 include/linux/entry-common.h | 1 + 3 files changed, 11 insertions(+) diff --git a/arch/powerpc/include/asm/hw_irq.h b

[PATCH v2 5/8] powerpc/entry: add irqentry_state and generic entry support

2024-11-10 Thread Luming Yu
generic irq entry support via generic irqentry is added for powerpc. There may be duplciate calls and missing callbacks requires further work. Signed-off-by: Luming Yu --- arch/powerpc/include/asm/entry-common.h | 32 arch/powerpc/kernel/interrupt.c | 51 +---

[PATCH v2 6/8] powerpc/entry: factout irqentry-state

2024-11-10 Thread Luming Yu
To have lowlevel paca.h include high level entry-common.h cause include file dependency mess. Split irqentry-state.h to have the irqentry_state.h can be included in low level paca.h Signed-off-by: Luming Yu --- arch/powerpc/include/asm/paca.h | 2 ++ arch/powerpc/kernel/interrupt.c | 2 ++ inc

[PATCH v2 4/8] powerpc/debug: hook to user return notifier infrastructure

2024-11-10 Thread Luming Yu
calls back to all registered user return notifier functions. Signed-off-by: Luming Yu --- arch/powerpc/kernel/interrupt.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/arch/powerpc/kernel/interrupt.c b/arch/powerpc/kernel/interrupt.c index 8c532cecbc60..609ba48034de 100644 --- a/arch/po

[PATCH v2 3/8] powerpc/debug: implement HAVE_USER_RETURN_NOTIFIER

2024-11-10 Thread Luming Yu
enable the common entry of user return notifier for powerpc as a debug feature. Signed-off-by Luming Yu --- arch/powerpc/Kconfig| 1 + arch/powerpc/include/asm/entry-common.h | 16 arch/powerpc/include/asm/thread_info.h | 2 ++ arch/powerpc/kernel/process.

[PATCH v2 2/8] powerpc/entry: cleanup syscall entry

2024-11-10 Thread Luming Yu
cleanup do_syscall_trace_enter/leave and do_seccomp. Signed-off-by: Luming Yu --- arch/powerpc/kernel/interrupt.c | 5 - arch/powerpc/kernel/ptrace/ptrace.c | 141 2 files changed, 146 deletions(-) diff --git a/arch/powerpc/kernel/interrupt.c b/arch/powerpc/ke

[PATCH v2 1/8] powerpc/entry: convert to common and generic entry

2024-11-10 Thread Luming Yu
convert powerpc entry code in syscall and fault to use syscall_work and irqentry_state as well as common calls implemented in generic entry infrastructure. Signed-off-by: Luming Yu --- v1->v2: fix ppc syscall entry seccomp_bpf test errors for common entry conversion. --- arch/powerpc/Kconfig

Re: [PATCH] powerpc: Transliterate author name and remove FIXME

2024-11-10 Thread Michael Ellerman
Thorsten Blum writes: > The name is Mimi Phuong-Thao Vo. Is that the correct spelling? The github commit below suggests it's Mimi Phûông-Thåo Võ. And presumably the author preferred that spelling, otherwise they would have just written it in ASCII in the first place. https://github.com/bminor

[powerpc:next] BUILD SUCCESS 5b881c1f83792f5db421124171b06f1b8f1fe075

2024-11-10 Thread kernel test robot
-20241110gcc-13.2.0 arc randconfig-001-2024gcc-14.2.0 arc randconfig-002-20241110gcc-13.2.0 arc randconfig-002-2024gcc-14.2.0 arm allmodconfigclang-20 arm allmodconfig

Re: [PATCH net-next] net: use pdev instead of OF funcs

2024-11-10 Thread Francois Romieu
Rosen Penev : > np here is ofdev->dev.of_node. Better to use the proper functions as > there's no use of children or anything else. > > Signed-off-by: Rosen Penev > --- [...] > diff --git a/drivers/net/ethernet/via/via-rhine.c > b/drivers/net/ethernet/via/via-rhine.c > index 894911f3d560..f0792

[PATCH] powerpc: Transliterate author name and remove FIXME

2024-11-10 Thread Thorsten Blum
The name is Mimi Phuong-Thao Vo. Signed-off-by: Thorsten Blum --- arch/powerpc/boot/rs6000.h | 6 +- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/arch/powerpc/boot/rs6000.h b/arch/powerpc/boot/rs6000.h index a9d879155ef9..16df8f3c43f1 100644 --- a/arch/powerpc/boot/rs6000.h +

Re: [PATCH net-next] net: use pdev instead of OF funcs

2024-11-10 Thread kernel test robot
Hi Rosen, kernel test robot noticed the following build warnings: [auto build test WARNING on net-next/main] url: https://github.com/intel-lab-lkp/linux/commits/Rosen-Penev/net-use-pdev-instead-of-OF-funcs/20241110-073939 base: net-next/main patch link: https://lore.kernel.org/r

Re: [PATCH net-next] net: use pdev instead of OF funcs

2024-11-10 Thread kernel test robot
Hi Rosen, kernel test robot noticed the following build errors: [auto build test ERROR on net-next/main] url: https://github.com/intel-lab-lkp/linux/commits/Rosen-Penev/net-use-pdev-instead-of-OF-funcs/20241110-073939 base: net-next/main patch link: https://lore.kernel.org/r