All of lore.kernel.org
 help / color / mirror / Atom feed
* [Xenomai-core] Found bug in pSOS ev_receive()
@ 2007-02-07 10:36 Markus Osterried
  2007-02-07 10:57 ` Philippe Gerum
  0 siblings, 1 reply; 3+ messages in thread
From: Markus Osterried @ 2007-02-07 10:36 UTC (permalink / raw)
  To: xenomai

Hello,

in pSOS skin function ev_receive() in file event.c I've found a bug.
When  ev_receive() is called with EV_WAIT and an event is received, the
task is unblocked and everything is okay, then in this case the copy of the
actual received events into *events_r is missing.

Regards
Markus





^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [Xenomai-core] Found bug in pSOS ev_receive()
  2007-02-07 10:36 [Xenomai-core] Found bug in pSOS ev_receive() Markus Osterried
@ 2007-02-07 10:57 ` Philippe Gerum
  2007-02-07 11:15   ` Philippe Gerum
  0 siblings, 1 reply; 3+ messages in thread
From: Philippe Gerum @ 2007-02-07 10:57 UTC (permalink / raw)
  To: Markus Osterried; +Cc: xenomai

On Wed, 2007-02-07 at 11:36 +0100, Markus Osterried wrote:
> Hello,
> 
> in pSOS skin function ev_receive() in file event.c I've found a bug.
> When  ev_receive() is called with EV_WAIT and an event is received, the
> task is unblocked and everything is okay, then in this case the copy of the
> actual received events into *events_r is missing.

Confirmed and fixed, thanks.

--- ksrc/skins/psos+/event.c	(revision 2108)
+++ ksrc/skins/psos+/event.c	(working copy)
@@ -79,9 +79,10 @@
 
 	if (xnthread_test_info(&task->threadbase, XNBREAK))
 		err = -EINTR;
-	else if (xnthread_test_info(&task->threadbase, XNTIMEO)) {
+	else {
 		*events_r = task->waitargs.evgroup.events;
-		err = ERR_TIMEOUT;
+		if (xnthread_test_info(&task->threadbase, XNTIMEO))
+			err = ERR_TIMEOUT;
 	}
 
       unlock_and_exit:

-- 
Philippe.




^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [Xenomai-core] Found bug in pSOS ev_receive()
  2007-02-07 10:57 ` Philippe Gerum
@ 2007-02-07 11:15   ` Philippe Gerum
  0 siblings, 0 replies; 3+ messages in thread
From: Philippe Gerum @ 2007-02-07 11:15 UTC (permalink / raw)
  To: Markus Osterried; +Cc: xenomai

On Wed, 2007-02-07 at 11:57 +0100, Philippe Gerum wrote:
> On Wed, 2007-02-07 at 11:36 +0100, Markus Osterried wrote:
> > Hello,
> > 
> > in pSOS skin function ev_receive() in file event.c I've found a bug.
> > When  ev_receive() is called with EV_WAIT and an event is received, the
> > task is unblocked and everything is okay, then in this case the copy of the
> > actual received events into *events_r is missing.
> 
> Confirmed and fixed, thanks.
> 
> --- ksrc/skins/psos+/event.c	(revision 2108)
> +++ ksrc/skins/psos+/event.c	(working copy)
> @@ -79,9 +79,10 @@
>  
>  	if (xnthread_test_info(&task->threadbase, XNBREAK))
>  		err = -EINTR;
> -	else if (xnthread_test_info(&task->threadbase, XNTIMEO)) {
> +	else {
>  		*events_r = task->waitargs.evgroup.events;
> -		err = ERR_TIMEOUT;
> +		if (xnthread_test_info(&task->threadbase, XNTIMEO))
> +			err = ERR_TIMEOUT;
>  	}
>  
>        unlock_and_exit:
> 

Actually, there was a second bug hiding in the timeout case, where the
copy back value was wrong, we should have returned the current state of
the event flag group and we returned the pended event mask instead. The
following patch against 2.3.0 fixes both issues.

--- ksrc/skins/psos+/event.c	(revision 2134)
+++ ksrc/skins/psos+/event.c	(working copy)
@@ -80,9 +80,10 @@
 	if (xnthread_test_info(&task->threadbase, XNBREAK))
 		err = -EINTR;
 	else if (xnthread_test_info(&task->threadbase, XNTIMEO)) {
+		err = ERR_TIMEOUT;
+		*events_r = evgroup->events;
+	} else
 		*events_r = task->waitargs.evgroup.events;
-		err = ERR_TIMEOUT;
-	}
 
       unlock_and_exit:
 

-- 
Philippe.




^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2007-02-07 11:15 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-02-07 10:36 [Xenomai-core] Found bug in pSOS ev_receive() Markus Osterried
2007-02-07 10:57 ` Philippe Gerum
2007-02-07 11:15   ` Philippe Gerum

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.