Re: Help on how to configure for user-defined memory protection support (GSoC 2020)

2020-05-20 Thread Hesham Almatary
Yes, I completely agree with Gedare, and my reply doesn't entail otherwise. As Gedare stated a few requirements: "2. The basic protection isolates the text, rodata, and rwdata from each other. There is no notion of task-specific protection domains, and tasks should not incur any additional overhea

Re: [rtems/rsb]: Adding PTP support to RSB [GSoC 2020]

2020-05-20 Thread Mritunjay Sharma
On Wed, May 20, 2020 at 1:46 AM Vijay Kumar Banerjee wrote: > On Wed, May 20, 2020 at 1:27 AM Mritunjay Sharma > wrote: > > > >> Thanks for the log files. From a quick look, there is one obvious > >> error, the linker can't find libbsd most probably because it is not > >> there. So, you need to

Re: [rtems/rsb]: Adding PTP support to RSB [GSoC 2020]

2020-05-20 Thread Mritunjay Sharma
On Wed, May 20, 2020 at 5:42 AM Chris Johns wrote: > On 20/5/20 5:57 am, Mritunjay Sharma wrote: > > On Wed, May 20, 2020 at 1:15 AM Vijay Kumar Banerjee > > wrote: > > > > On Wed, May 20, 2020 at 12:52 AM Mritunjay Sharma > > mailto:mritunjaysharma...@gmail.com>>

Re: Help on how to configure for user-defined memory protection support (GSoC 2020)

2020-05-20 Thread Utkarsh Rai
On Wed, May 20, 2020 at 7:40 AM Hesham Almatary wrote: > On Tue, 19 May 2020 at 14:00, Utkarsh Rai wrote: > > > > > > > > On Mon, May 18, 2020 at 8:38 PM Gedare Bloom wrote: > >> > >> On Mon, May 18, 2020 at 4:31 AM Utkarsh Rai > wrote: > >> > > >> > > >> > > >> > > >> > On Sat, May 16, 2020 a

[PATCH 1/1] smpsignal01: Change state before sending the signal

2020-05-20 Thread Jan Sommer
The signal handler of the consumer might start executing before rtems_signal_send of the producer returns. Therefore change the state to SIG_1_SENT before sending the signal. --- testsuites/smptests/smpsignal01/init.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testsuites/s

[PATCH 0/1] smpsignal01: Change state before sending signal

2020-05-20 Thread Jan Sommer
I noticed during running the smpsignal test that it sometimes succeeds and sometimes fails when running with qemu. It looks like the signal handler sometimes starts execution faster than the sender can update the state variable. This patch updates the variable right before sending, so that the sta