Re: [PATCH v2] cpukit/jffs2: Avoid use of off-chain semantics

2023-09-25 Thread Sebastian Huber
On 23.09.23 00:19, Kinsey Moore wrote: This reworks the JFFS2 delayed work queue to avoid use of on-chain/off-chain semantics since they vary in behavior under RTEMS_DEBUG and are not guaranteed to be safe to use in SMP systems. This adds all delayed work structs to the chain on FS init and does

[PATCH v2] cpukit/jffs2: Avoid use of off-chain semantics

2023-09-22 Thread Kinsey Moore
This reworks the JFFS2 delayed work queue to avoid use of on-chain/off-chain semantics since they vary in behavior under RTEMS_DEBUG and are not guaranteed to be safe to use in SMP systems. This adds all delayed work structs to the chain on FS init and does not remove them until umount. --- .../li