排号自旋锁

排号自旋锁计算机科学中的一种多线程同步机制。类似于自旋锁,但每一个申请排队自旋锁的线程获得一个排队号(ticket)。至多一个线程拥有自旋锁,当它释放锁时,把自身的ticket加1作为下一个可获得锁的ticket,持有该ticket的线程在自旋检查时就可发现已经获得了自旋锁。这种机制类似于一些提供社会服务的场所(如银行):进门的顾客从排号机获取一个等待号,然后不断检查当前可服务的号,直至轮到其手持的号。

排号队列管理机制的一个ticket与"Now Serving"符号

这是一种先进先出(FIFO)的公平性机制。[1][2][3]

锁的比较

Linux内核实现的排号自旋锁,比更简单的基于test-and-setexchange的自旋锁,有更低时耗。下表比较了各种自旋锁:[2]

Comparing Performance of Different Locking Mechanisms[2]
标准test-and-setTest and Test-and-setLoad-link/store-conditionalTicketABQL
Uncontended latencyLowestLowerLowerHigherHigher
1 Release max trafficӨ(p)Ө(p)Ө(p)Ө(p)Ө(1)
Wait trafficHigh----
StorageӨ(1)Ө(1)Ө(1)Ө(1)Ө(p)
Fairness guaranteeNoNoNoYesYes

排号自旋锁的一个缺点是随着CPU核数增加,性能指数下降。[4]

历史

1991年Mellor-Crummey与Scott引入概念。[3]2008年被Linux内核使用。[5] [6] 2010年7月,解决了半虚拟化问题。[7]2015年3月,Red Hat Enterprise Linux使用了这种锁。[8]

相关工作

参见

参考文献

  1. Sottile, Matthew J.; Mattson, Timothy G.; Rasmussen, Craig E. . Boca Raton, FL, USA: CRC Press. Sep 28, 2009: 56. ISBN 978-1-4200-7214-3.
  2. Solihin, Yan. . Solihin Pub. 2009: 262–269. ISBN 978-0-9841630-0-7.
  3. John M. Mellor-Crummey and Michael L. Scott; et al. . ACM TOCS. February 1991. (原始内容存档于2021-02-02).
  4. Boyd-Wickizer, Silas, et al. "Non-scalable locks are dangerous." Proceedings of the Linux Symposium. 2012. http://pdos.csail.mit.edu/papers/linux:lock.pdf 页面存档备份,存于
  5. Jonathan Corbet, Ticket spinlocks 页面存档备份,存于, Linux Weekly News, February 6, 2008. Retrieved 23. July, 2010.
  6. Jeremy Fitzhardinge, paravirt: introduce a "lock-byte" spinlock implementation Archive.is存檔,存档日期2012-07-08, Linux kernel, July 7, 2008
  7. . [2021-12-19]. (原始内容存档于2012-07-12).
  8. . [2017-11-27]. (原始内容存档于2016-11-18).
  9. Michael L. Scott and William N. Scherer III. Scalable Queue-Based Spin Locks with Timeout 页面存档备份,存于. Proceedings of the eighth ACM SIGPLAN symposium on Principles and practices of parallel programming, pp. 44-52, 2001.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.