summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/corerwlockrelease.c
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2016-04-21 06:32:16 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2016-04-22 09:25:09 +0200
commit84a539885335c629100a6a12b57ead54bbbc0165 (patch)
treeff8d0acd9624e3888dc7fc6df9003a98a19b9b3d /cpukit/score/src/corerwlockrelease.c
parentscore: Avoid Giant lock for barriers (diff)
downloadrtems-84a539885335c629100a6a12b57ead54bbbc0165.tar.bz2
score: Avoid Giant lock for CORE rwlock
Update #2555.
Diffstat (limited to 'cpukit/score/src/corerwlockrelease.c')
-rw-r--r--cpukit/score/src/corerwlockrelease.c144
1 files changed, 83 insertions, 61 deletions
diff --git a/cpukit/score/src/corerwlockrelease.c b/cpukit/score/src/corerwlockrelease.c
index d8180fce6c..3ace00da8e 100644
--- a/cpukit/score/src/corerwlockrelease.c
+++ b/cpukit/score/src/corerwlockrelease.c
@@ -19,19 +19,65 @@
#include "config.h"
#endif
-#include <rtems/system.h>
#include <rtems/score/corerwlockimpl.h>
-#include <rtems/score/threadqimpl.h>
-#include <rtems/score/watchdog.h>
+#include <rtems/score/assert.h>
+
+static bool _CORE_RWLock_Is_waiting_for_reading(
+ const Thread_Control *the_thread
+)
+{
+ if ( the_thread->Wait.option == CORE_RWLOCK_THREAD_WAITING_FOR_READ ) {
+ return true;
+ } else {
+ _Assert( the_thread->Wait.option == CORE_RWLOCK_THREAD_WAITING_FOR_WRITE );
+ return false;
+ }
+}
+
+static Thread_Control *_CORE_RWLock_Flush_filter(
+ Thread_Control *the_thread,
+ Thread_queue_Queue *queue,
+ ISR_lock_Context *lock_context
+)
+{
+ CORE_RWLock_Control *the_rwlock;
+
+ the_rwlock = RTEMS_CONTAINER_OF(
+ queue,
+ CORE_RWLock_Control,
+ Wait_queue.Queue
+ );
+
+ switch ( the_rwlock->current_state ) {
+ case CORE_RWLOCK_LOCKED_FOR_READING:
+ if ( _CORE_RWLock_Is_waiting_for_reading( the_thread ) ) {
+ the_rwlock->number_of_readers += 1;
+ } else {
+ the_thread = NULL;
+ }
+ break;
+ case CORE_RWLOCK_LOCKED_FOR_WRITING:
+ the_thread = NULL;
+ break;
+ default:
+ _Assert( the_rwlock->current_state == CORE_RWLOCK_UNLOCKED );
+ if ( _CORE_RWLock_Is_waiting_for_reading( the_thread ) ) {
+ the_rwlock->current_state = CORE_RWLOCK_LOCKED_FOR_READING;
+ the_rwlock->number_of_readers = 1;
+ } else {
+ the_rwlock->current_state = CORE_RWLOCK_LOCKED_FOR_WRITING;
+ }
+ break;
+ }
+
+ return the_thread;
+}
CORE_RWLock_Status _CORE_RWLock_Surrender(
CORE_RWLock_Control *the_rwlock,
- Thread_Control *executing
+ ISR_lock_Context *lock_context
)
{
- ISR_Level level;
- Thread_Control *next;
-
/*
* If unlocked, then OK to read.
* Otherwise, we have to block.
@@ -39,67 +85,43 @@ CORE_RWLock_Status _CORE_RWLock_Surrender(
* If any thread is waiting, then we wait.
*/
- _ISR_Disable( level );
- if ( the_rwlock->current_state == CORE_RWLOCK_UNLOCKED){
- _ISR_Enable( level );
- executing->Wait.return_code = CORE_RWLOCK_UNAVAILABLE;
- return CORE_RWLOCK_SUCCESSFUL;
- }
- if ( the_rwlock->current_state == CORE_RWLOCK_LOCKED_FOR_READING ) {
- the_rwlock->number_of_readers -= 1;
- if ( the_rwlock->number_of_readers != 0 ) {
- /* must be unlocked again */
- _ISR_Enable( level );
- return CORE_RWLOCK_SUCCESSFUL;
- }
- }
-
- /* CORE_RWLOCK_LOCKED_FOR_WRITING or READING with readers */
- executing->Wait.return_code = CORE_RWLOCK_SUCCESSFUL;
+ _CORE_RWLock_Acquire_critical( the_rwlock, lock_context );
- /*
- * Implicitly transition to "unlocked" and find another thread interested
- * in obtaining this rwlock.
- */
- the_rwlock->current_state = CORE_RWLOCK_UNLOCKED;
- _ISR_Enable( level );
+ if ( the_rwlock->current_state == CORE_RWLOCK_UNLOCKED){
+ /* This is an error at the caller site */
+ _CORE_RWLock_Release( the_rwlock, lock_context );
+ return CORE_RWLOCK_SUCCESSFUL;
+ }
- next = _Thread_queue_Dequeue(
- &the_rwlock->Wait_queue,
- CORE_RWLOCK_TQ_OPERATIONS,
- NULL,
- 0
- );
+ if ( the_rwlock->current_state == CORE_RWLOCK_LOCKED_FOR_READING ) {
+ the_rwlock->number_of_readers -= 1;
- if ( next ) {
- if ( next->Wait.option == CORE_RWLOCK_THREAD_WAITING_FOR_WRITE ) {
- the_rwlock->current_state = CORE_RWLOCK_LOCKED_FOR_WRITING;
+ if ( the_rwlock->number_of_readers != 0 ) {
+ /* must be unlocked again */
+ _CORE_RWLock_Release( the_rwlock, lock_context );
return CORE_RWLOCK_SUCCESSFUL;
}
-
- /*
- * Must be CORE_RWLOCK_THREAD_WAITING_FOR_READING
- */
- the_rwlock->number_of_readers += 1;
- the_rwlock->current_state = CORE_RWLOCK_LOCKED_FOR_READING;
-
- /*
- * Now see if more readers can be let go.
- */
- while ( 1 ) {
- next = _Thread_queue_First(
- &the_rwlock->Wait_queue,
- CORE_RWLOCK_TQ_OPERATIONS
- );
- if ( !next ||
- next->Wait.option == CORE_RWLOCK_THREAD_WAITING_FOR_WRITE )
- return CORE_RWLOCK_SUCCESSFUL;
- the_rwlock->number_of_readers += 1;
- _Thread_queue_Extract( next );
- }
}
- /* indentation is to match _ISR_Disable at top */
+ _Assert(
+ the_rwlock->current_state == CORE_RWLOCK_LOCKED_FOR_WRITING
+ || ( the_rwlock->current_state == CORE_RWLOCK_LOCKED_FOR_READING
+ && the_rwlock->number_of_readers == 0 )
+ );
+
+ /*
+ * Implicitly transition to "unlocked" and find another thread interested
+ * in obtaining this rwlock.
+ */
+ the_rwlock->current_state = CORE_RWLOCK_UNLOCKED;
+ _Thread_queue_Flush_critical(
+ &the_rwlock->Wait_queue.Queue,
+ CORE_RWLOCK_TQ_OPERATIONS,
+ _CORE_RWLock_Flush_filter,
+ NULL,
+ 0,
+ lock_context
+ );
return CORE_RWLOCK_SUCCESSFUL;
}