summaryrefslogtreecommitdiffstats
path: root/cpukit/score
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2016-04-20 14:01:02 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2016-04-22 09:25:09 +0200
commitf27383a518836881b7b9b88e88d2e31d5b23d048 (patch)
treeecdccfa9c902a5a8db0918026e8074af0b581a6a /cpukit/score
parentscore: Add _Thread_queue_Flush_default_filter() (diff)
downloadrtems-f27383a518836881b7b9b88e88d2e31d5b23d048.tar.bz2
score: Avoid Giant lock for barriers
Use _Thread_queue_Flush_critical() to atomically release the barrier. Update #2555.
Diffstat (limited to 'cpukit/score')
-rw-r--r--cpukit/score/include/rtems/score/corebarrierimpl.h100
-rw-r--r--cpukit/score/src/corebarrierrelease.c36
-rw-r--r--cpukit/score/src/corebarrierwait.c53
3 files changed, 106 insertions, 83 deletions
diff --git a/cpukit/score/include/rtems/score/corebarrierimpl.h b/cpukit/score/include/rtems/score/corebarrierimpl.h
index 454c2c9801..7dba5de46e 100644
--- a/cpukit/score/include/rtems/score/corebarrierimpl.h
+++ b/cpukit/score/include/rtems/score/corebarrierimpl.h
@@ -20,9 +20,7 @@
#define _RTEMS_SCORE_COREBARRIERIMPL_H
#include <rtems/score/corebarrier.h>
-#include <rtems/score/thread.h>
#include <rtems/score/threadqimpl.h>
-#include <rtems/score/watchdog.h>
#ifdef __cplusplus
extern "C" {
@@ -84,16 +82,32 @@ RTEMS_INLINE_ROUTINE void _CORE_barrier_Destroy(
_Thread_queue_Destroy( &the_barrier->Wait_queue );
}
+RTEMS_INLINE_ROUTINE void _CORE_barrier_Acquire_critical(
+ CORE_barrier_Control *the_barrier,
+ ISR_lock_Context *lock_context
+)
+{
+ _Thread_queue_Acquire_critical( &the_barrier->Wait_queue, lock_context );
+}
+
+RTEMS_INLINE_ROUTINE void _CORE_barrier_Release(
+ CORE_barrier_Control *the_barrier,
+ ISR_lock_Context *lock_context
+)
+{
+ _Thread_queue_Release( &the_barrier->Wait_queue, lock_context );
+}
+
void _CORE_barrier_Do_seize(
CORE_barrier_Control *the_barrier,
Thread_Control *executing,
bool wait,
- Watchdog_Interval timeout
+ Watchdog_Interval timeout,
#if defined(RTEMS_MULTIPROCESSING)
- ,
Thread_queue_MP_callout mp_callout,
- Objects_Id mp_id
+ Objects_Id mp_id,
#endif
+ ISR_lock_Context *lock_context
);
/**
@@ -122,7 +136,8 @@ void _CORE_barrier_Do_seize(
wait, \
timeout, \
mp_callout, \
- mp_id \
+ mp_id, \
+ lock_context \
) \
_CORE_barrier_Do_seize( \
the_barrier, \
@@ -130,7 +145,8 @@ void _CORE_barrier_Do_seize(
wait, \
timeout, \
mp_callout, \
- mp_id \
+ mp_id, \
+ lock_context \
)
#else
#define _CORE_barrier_Seize( \
@@ -139,23 +155,26 @@ void _CORE_barrier_Do_seize(
wait, \
timeout, \
mp_callout, \
- mp_id \
+ mp_id, \
+ lock_context \
) \
_CORE_barrier_Do_seize( \
the_barrier, \
executing, \
wait, \
- timeout \
+ timeout, \
+ lock_context \
)
#endif
uint32_t _CORE_barrier_Do_surrender(
- CORE_barrier_Control *the_barrier
+ CORE_barrier_Control *the_barrier,
+ Thread_queue_Flush_filter filter,
#if defined(RTEMS_MULTIPROCESSING)
- ,
- Thread_queue_MP_callout mp_callout,
- Objects_Id mp_id
+ Thread_queue_MP_callout mp_callout,
+ Objects_Id mp_id,
#endif
+ ISR_lock_Context *lock_context
);
/**
@@ -175,21 +194,27 @@ uint32_t _CORE_barrier_Do_surrender(
#define _CORE_barrier_Surrender( \
the_barrier, \
mp_callout, \
- mp_id \
+ mp_id, \
+ lock_context \
) \
_CORE_barrier_Do_surrender( \
the_barrier, \
mp_callout, \
- mp_id \
+ mp_id, \
+ _Thread_queue_Flush_default_filter, \
+ lock_context \
)
#else
#define _CORE_barrier_Surrender( \
the_barrier, \
mp_callout, \
- mp_id \
+ mp_id, \
+ lock_context \
) \
_CORE_barrier_Do_surrender( \
- the_barrier \
+ the_barrier, \
+ _Thread_queue_Flush_default_filter, \
+ lock_context \
)
#endif
@@ -200,26 +225,33 @@ Thread_Control *_CORE_barrier_Was_deleted(
);
/* Must be a macro due to the multiprocessing dependent parameters */
-#define _CORE_barrier_Flush( \
- the_barrier, \
- mp_callout, \
- mp_id \
-) \
- do { \
- ISR_lock_Context _core_barrier_flush_lock_context; \
- _Thread_queue_Acquire( \
- &( the_barrier )->Wait_queue, \
- &_core_barrier_flush_lock_context \
- ); \
- _Thread_queue_Flush_critical( \
- &( the_barrier )->Wait_queue.Queue, \
- CORE_BARRIER_TQ_OPERATIONS, \
+#if defined(RTEMS_MULTIPROCESSING)
+ #define _CORE_barrier_Flush( \
+ the_barrier, \
+ mp_callout, \
+ mp_id, \
+ lock_context \
+ ) \
+ _CORE_barrier_Do_surrender( \
+ the_barrier, \
_CORE_barrier_Was_deleted, \
mp_callout, \
mp_id, \
- &_core_barrier_flush_lock_context \
- ); \
- } while ( 0 )
+ lock_context \
+ )
+#else
+ #define _CORE_barrier_Flush( \
+ the_barrier, \
+ mp_callout, \
+ mp_id, \
+ lock_context \
+ ) \
+ _CORE_barrier_Do_surrender( \
+ the_barrier, \
+ _CORE_barrier_Was_deleted, \
+ lock_context \
+ )
+#endif
/**
* This function returns true if the automatic release attribute is
diff --git a/cpukit/score/src/corebarrierrelease.c b/cpukit/score/src/corebarrierrelease.c
index 6d72203e7e..e6ef335abc 100644
--- a/cpukit/score/src/corebarrierrelease.c
+++ b/cpukit/score/src/corebarrierrelease.c
@@ -20,34 +20,24 @@
#endif
#include <rtems/score/corebarrierimpl.h>
-#include <rtems/score/objectimpl.h>
-#include <rtems/score/threadqimpl.h>
uint32_t _CORE_barrier_Do_surrender(
- CORE_barrier_Control *the_barrier
+ CORE_barrier_Control *the_barrier,
+ Thread_queue_Flush_filter filter,
#if defined(RTEMS_MULTIPROCESSING)
- ,
- Thread_queue_MP_callout mp_callout,
- Objects_Id mp_id
+ Thread_queue_MP_callout mp_callout,
+ Objects_Id mp_id,
#endif
+ ISR_lock_Context *lock_context
)
{
- Thread_Control *the_thread;
- uint32_t count;
-
- count = 0;
- while (
- (
- the_thread = _Thread_queue_Dequeue(
- &the_barrier->Wait_queue,
- CORE_BARRIER_TQ_OPERATIONS,
- mp_callout,
- mp_id
- )
- )
- ) {
- count++;
- }
the_barrier->number_of_waiting_threads = 0;
- return count;
+ return _Thread_queue_Flush_critical(
+ &the_barrier->Wait_queue.Queue,
+ CORE_BARRIER_TQ_OPERATIONS,
+ filter,
+ mp_callout,
+ mp_id,
+ lock_context
+ );
}
diff --git a/cpukit/score/src/corebarrierwait.c b/cpukit/score/src/corebarrierwait.c
index 11495e5e69..4a924b28dd 100644
--- a/cpukit/score/src/corebarrierwait.c
+++ b/cpukit/score/src/corebarrierwait.c
@@ -19,44 +19,45 @@
#endif
#include <rtems/score/corebarrierimpl.h>
-#include <rtems/score/isrlevel.h>
#include <rtems/score/statesimpl.h>
-#include <rtems/score/threadqimpl.h>
void _CORE_barrier_Do_seize(
CORE_barrier_Control *the_barrier,
Thread_Control *executing,
bool wait,
- Watchdog_Interval timeout
+ Watchdog_Interval timeout,
#if defined(RTEMS_MULTIPROCESSING)
- ,
Thread_queue_MP_callout mp_callout,
- Objects_Id mp_id
+ Objects_Id mp_id,
#endif
+ ISR_lock_Context *lock_context
)
{
- ISR_lock_Context lock_context;
+ uint32_t number_of_waiting_threads;
executing->Wait.return_code = CORE_BARRIER_STATUS_SUCCESSFUL;
- _Thread_queue_Acquire( &the_barrier->Wait_queue, &lock_context );
- the_barrier->number_of_waiting_threads++;
- if ( _CORE_barrier_Is_automatic( &the_barrier->Attributes ) ) {
- if ( the_barrier->number_of_waiting_threads ==
- the_barrier->Attributes.maximum_count) {
- executing->Wait.return_code = CORE_BARRIER_STATUS_AUTOMATICALLY_RELEASED;
- _Thread_queue_Release( &the_barrier->Wait_queue, &lock_context );
- _CORE_barrier_Surrender( the_barrier, mp_callout, mp_id );
- return;
- }
- }
- _Thread_queue_Enqueue_critical(
- &the_barrier->Wait_queue.Queue,
- CORE_BARRIER_TQ_OPERATIONS,
- executing,
- STATES_WAITING_FOR_BARRIER,
- timeout,
- CORE_BARRIER_TIMEOUT,
- &lock_context
- );
+ _CORE_barrier_Acquire_critical( the_barrier, lock_context );
+
+ number_of_waiting_threads = the_barrier->number_of_waiting_threads;
+ ++number_of_waiting_threads;
+
+ if (
+ _CORE_barrier_Is_automatic( &the_barrier->Attributes )
+ && number_of_waiting_threads == the_barrier->Attributes.maximum_count
+ ) {
+ executing->Wait.return_code = CORE_BARRIER_STATUS_AUTOMATICALLY_RELEASED;
+ _CORE_barrier_Surrender( the_barrier, mp_callout, mp_id, lock_context );
+ } else {
+ the_barrier->number_of_waiting_threads = number_of_waiting_threads;
+ _Thread_queue_Enqueue_critical(
+ &the_barrier->Wait_queue.Queue,
+ CORE_BARRIER_TQ_OPERATIONS,
+ executing,
+ STATES_WAITING_FOR_BARRIER,
+ timeout,
+ CORE_BARRIER_TIMEOUT,
+ lock_context
+ );
+ }
}