rwsem.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:5k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* rwsem.c: R/W semaphores: contention handling functions
  2.  *
  3.  * Written by David Howells (dhowells@redhat.com).
  4.  * Derived from arch/i386/kernel/semaphore.c
  5.  */
  6. #include <linux/rwsem.h>
  7. #include <linux/sched.h>
  8. #include <linux/module.h>
  9. struct rwsem_waiter {
  10. struct list_head list;
  11. struct task_struct *task;
  12. unsigned int flags;
  13. #define RWSEM_WAITING_FOR_READ 0x00000001
  14. #define RWSEM_WAITING_FOR_WRITE 0x00000002
  15. };
  16. #if RWSEM_DEBUG
  17. #undef rwsemtrace
  18. void rwsemtrace(struct rw_semaphore *sem, const char *str)
  19. {
  20. printk("sem=%pn",sem);
  21. printk("(sem)=%08lxn",sem->count);
  22. if (sem->debug)
  23. printk("[%d] %s({%08lx})n",current->pid,str,sem->count);
  24. }
  25. #endif
  26. /*
  27.  * handle the lock being released whilst there are processes blocked on it that can now run
  28.  * - if we come here, then:
  29.  *   - the 'active part' of the count (&0x0000ffff) reached zero but has been re-incremented
  30.  *   - the 'waiting part' of the count (&0xffff0000) is negative (and will still be so)
  31.  *   - there must be someone on the queue
  32.  * - the spinlock must be held by the caller
  33.  * - woken process blocks are discarded from the list after having flags zeroised
  34.  */
  35. static inline struct rw_semaphore *__rwsem_do_wake(struct rw_semaphore *sem)
  36. {
  37. struct rwsem_waiter *waiter;
  38. struct list_head *next;
  39. signed long oldcount;
  40. int woken, loop;
  41. rwsemtrace(sem,"Entering __rwsem_do_wake");
  42. /* only wake someone up if we can transition the active part of the count from 0 -> 1 */
  43.  try_again:
  44. oldcount = rwsem_atomic_update(RWSEM_ACTIVE_BIAS,sem) - RWSEM_ACTIVE_BIAS;
  45. if (oldcount & RWSEM_ACTIVE_MASK)
  46. goto undo;
  47. waiter = list_entry(sem->wait_list.next,struct rwsem_waiter,list);
  48. /* try to grant a single write lock if there's a writer at the front of the queue
  49.  * - note we leave the 'active part' of the count incremented by 1 and the waiting part
  50.  *   incremented by 0x00010000
  51.  */
  52. if (!(waiter->flags & RWSEM_WAITING_FOR_WRITE))
  53. goto readers_only;
  54. list_del(&waiter->list);
  55. waiter->flags = 0;
  56. wake_up_process(waiter->task);
  57. goto out;
  58. /* grant an infinite number of read locks to the readers at the front of the queue
  59.  * - note we increment the 'active part' of the count by the number of readers (less one
  60.  *   for the activity decrement we've already done) before waking any processes up
  61.  */
  62.  readers_only:
  63. woken = 0;
  64. do {
  65. woken++;
  66. if (waiter->list.next==&sem->wait_list)
  67. break;
  68. waiter = list_entry(waiter->list.next,struct rwsem_waiter,list);
  69. } while (waiter->flags & RWSEM_WAITING_FOR_READ);
  70. loop = woken;
  71. woken *= RWSEM_ACTIVE_BIAS-RWSEM_WAITING_BIAS;
  72. woken -= RWSEM_ACTIVE_BIAS;
  73. rwsem_atomic_add(woken,sem);
  74. next = sem->wait_list.next;
  75. for (; loop>0; loop--) {
  76. waiter = list_entry(next,struct rwsem_waiter,list);
  77. next = waiter->list.next;
  78. waiter->flags = 0;
  79. wake_up_process(waiter->task);
  80. }
  81. sem->wait_list.next = next;
  82. next->prev = &sem->wait_list;
  83.  out:
  84. rwsemtrace(sem,"Leaving __rwsem_do_wake");
  85. return sem;
  86. /* undo the change to count, but check for a transition 1->0 */
  87.  undo:
  88. if (rwsem_atomic_update(-RWSEM_ACTIVE_BIAS,sem)!=0)
  89. goto out;
  90. goto try_again;
  91. }
  92. /*
  93.  * wait for a lock to be granted
  94.  */
  95. static inline struct rw_semaphore *rwsem_down_failed_common(struct rw_semaphore *sem,
  96.  struct rwsem_waiter *waiter,
  97.  signed long adjustment)
  98. {
  99. struct task_struct *tsk = current;
  100. signed long count;
  101. set_task_state(tsk,TASK_UNINTERRUPTIBLE);
  102. /* set up my own style of waitqueue */
  103. spin_lock(&sem->wait_lock);
  104. waiter->task = tsk;
  105. list_add_tail(&waiter->list,&sem->wait_list);
  106. /* note that we're now waiting on the lock, but no longer actively read-locking */
  107. count = rwsem_atomic_update(adjustment,sem);
  108. /* if there are no longer active locks, wake the front queued process(es) up
  109.  * - it might even be this process, since the waker takes a more active part
  110.  */
  111. if (!(count & RWSEM_ACTIVE_MASK))
  112. sem = __rwsem_do_wake(sem);
  113. spin_unlock(&sem->wait_lock);
  114. /* wait to be given the lock */
  115. for (;;) {
  116. if (!waiter->flags)
  117. break;
  118. schedule();
  119. set_task_state(tsk, TASK_UNINTERRUPTIBLE);
  120. }
  121. tsk->state = TASK_RUNNING;
  122. return sem;
  123. }
  124. /*
  125.  * wait for the read lock to be granted
  126.  */
  127. struct rw_semaphore *rwsem_down_read_failed(struct rw_semaphore *sem)
  128. {
  129. struct rwsem_waiter waiter;
  130. rwsemtrace(sem,"Entering rwsem_down_read_failed");
  131. waiter.flags = RWSEM_WAITING_FOR_READ;
  132. rwsem_down_failed_common(sem,&waiter,RWSEM_WAITING_BIAS-RWSEM_ACTIVE_BIAS);
  133. rwsemtrace(sem,"Leaving rwsem_down_read_failed");
  134. return sem;
  135. }
  136. /*
  137.  * wait for the write lock to be granted
  138.  */
  139. struct rw_semaphore *rwsem_down_write_failed(struct rw_semaphore *sem)
  140. {
  141. struct rwsem_waiter waiter;
  142. rwsemtrace(sem,"Entering rwsem_down_write_failed");
  143. waiter.flags = RWSEM_WAITING_FOR_WRITE;
  144. rwsem_down_failed_common(sem,&waiter,-RWSEM_ACTIVE_BIAS);
  145. rwsemtrace(sem,"Leaving rwsem_down_write_failed");
  146. return sem;
  147. }
  148. /*
  149.  * handle waking up a waiter on the semaphore
  150.  * - up_read has decremented the active part of the count if we come here
  151.  */
  152. struct rw_semaphore *rwsem_wake(struct rw_semaphore *sem)
  153. {
  154. rwsemtrace(sem,"Entering rwsem_wake");
  155. spin_lock(&sem->wait_lock);
  156. /* do nothing if list empty */
  157. if (!list_empty(&sem->wait_list))
  158. sem = __rwsem_do_wake(sem);
  159. spin_unlock(&sem->wait_lock);
  160. rwsemtrace(sem,"Leaving rwsem_wake");
  161. return sem;
  162. }
  163. EXPORT_SYMBOL_NOVERS(rwsem_down_read_failed);
  164. EXPORT_SYMBOL_NOVERS(rwsem_down_write_failed);
  165. EXPORT_SYMBOL_NOVERS(rwsem_wake);
  166. #if RWSEM_DEBUG
  167. EXPORT_SYMBOL(rwsemtrace);
  168. #endif