Re: [rtems-tools PATCH 1/2] rtemstoolkit: Fix decoding unicode strings in output

2024-04-19 Thread Joel Sherrill
Please apply both. I think this was the only bad issue with rc2 on CentOS 7 or 8. On Thu, Apr 18, 2024 at 10:09 PM wrote: > From: Chris Johns > > --- > rtemstoolkit/execute.py | 12 ++-- > 1 file changed, 10 insertions(+), 2 deletions(-) > > diff --git a/rtemstoolkit/execute.py

Re: [RFC] rtems: Add options to kernel output char handler

2024-04-19 Thread Peter Dufault
> On Apr 18, 2024, at 6:32 PM, Chris Johns wrote: > > On 18/4/2024 4:16 pm, Sebastian Huber wrote: >> On 18.04.24 04:02, Chris Johns wrote: >>> On 17/4/2024 11:06 pm, Sebastian Huber wrote: Make the kernel I/O output character device processing configurable through an option set

Re: [PATCH] Fix the CPU count calculation error.

2024-04-19 Thread zhengxiaojun
在 2024/4/19 16:50, Sebastian Huber 写道: On 19.04.24 09:16, zhengxiaojun wrote: I tested on arm64, the cpu_count do not increase when (redist->icrtyper & GIC_REDIST_ICRTYPER_LAST != 0),but it is the last core. The current code assumes that you have exactly one interrupt export port. With

Re: RSB format changes to meet coding standard

2024-04-19 Thread andrew.butterfi...@scss.tcd.ie
Hi Chris, Will you also do this with the formal code in rtems-central/formal ? I do remember using yapf at some point – I have no problem in your doing this here. I expect to be proposing an update to the formal stuff (models,code,documentation) over the Summer period as well. Regards,

Re: [PATCH] Fix the CPU count calculation error.

2024-04-19 Thread Sebastian Huber
On 19.04.24 09:16, zhengxiaojun wrote: I tested on arm64, the cpu_count do not increase when (redist->icrtyper & GIC_REDIST_ICRTYPER_LAST != 0),but it is the last core. The current code assumes that you have exactly one interrupt export port. With which SoC are you working currently? One

Re: [PATCH] bsps/powerpc: Introduction of interrupt locks

2024-04-19 Thread Christian MAUDERER
Hello Chris, it is tested on an MVME2500 which uses the powerpc/qoriq_e500 in an SMP configuration. Best regards Christian On 2024-04-18 04:04, Chris Johns wrote: Hi Vincenzo, Welcome to RTEMS. What hardware in the shared VME PowerPC family of BSPS has this change been tested on? Thanks

Re: [PATCH] Fix the CPU count calculation error.

2024-04-19 Thread zhengxiaojun
I tested on arm64, the cpu_count do not increase when (redist->icrtyper & GIC_REDIST_ICRTYPER_LAST != 0),but it is the last core. 在 2024/4/19 15:00, Sebastian Huber 写道: Hello, on which platform does this fix a error? ___ devel mailing list

Re: [PATCH] Fix the CPU count calculation error.

2024-04-19 Thread Sebastian Huber
Hello, on which platform does this fix a error? -- embedded brains GmbH & Co. KG Herr Sebastian HUBER Dornierstr. 4 82178 Puchheim Germany email: sebastian.hu...@embedded-brains.de phone: +49-89-18 94 741 - 16 fax: +49-89-18 94 741 - 08 Registergericht: Amtsgericht München Registernummer:

[PATCH] Fix the CPU count calculation error.

2024-04-19 Thread zhengxiaojun
Fix the CPU count calculation error. Signed-off-by: zhengxiaojun --- bsps/shared/dev/irq/arm-gicv3.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bsps/shared/dev/irq/arm-gicv3.c b/bsps/shared/dev/irq/arm-gicv3.c index 958b1061bd..6422a191f1 100644 ---