Re: [PATCH v2] powerpc/xmon: symbol lookup length fixed

2024-11-17 Thread Michael Ellerman
On Fri, 25 Oct 2024 00:42:33 +0530, Mukesh Kumar Chaurasiya wrote: > Currently this cannot lookup symbol beyond 64 characters in some cases > like "ls", "lp" and "t" > > Fix this by using KSYM_NAME_LEN instead of fixed 64 characters > > Applied to powerpc/next. [1/1] powerpc/xmon: symbol looku

[PATCH v2] powerpc/xmon: symbol lookup length fixed

2024-10-25 Thread Mukesh Kumar Chaurasiya
Currently this cannot lookup symbol beyond 64 characters in some cases like "ls", "lp" and "t" Fix this by using KSYM_NAME_LEN instead of fixed 64 characters Signed-off-by: Mukesh Kumar Chaurasiya --- arch/powerpc/xmon/xmon.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) ChangeLo