Non-blocking linked list
Appearance
A non-blocking linked list is an example of non-blocking data structures designed to implement a linked list in shared memory using synchronization primitives:
Description
Linked lists are fundamental data structures widely that are widely used as is or to build other data structures. Concurrent linked are challenging to design because of time and space complexity.
Operations on lock-free linked lists
Insertion
Basic idea
- search for the right spot in the list
- insert using [Compare-and-swap]
Deletion
Basic idea
- search for the right spot in the list
- insert using [Compare-and-swap]
Problem: concurrent insert and delete
- a process deleting node B requires an atomic action on the node's predecessor
- concurrently another process tries to insert a node C after node B (B.next=C)
- node B is deleted from the list but C is gone along with it
Solutions
- Harris [1]
- place a 'mark' in the next pointer of the soon-to-be deleted node
- fail when we try to CAS the 'mark'
- when detected go back to start of the list and restart
- Zhang et all [2]
- search the list to see if the value to be deleted exists, if exists mark the node logically deleted
- a subsequent traversal of the list will do garbage collection of logically deleted nodes
Problem: concurrent deletions
- two processes concurrently delete an adjacent node: node B and node C respectively
- the delete of node C is undone by the delete of node B
Solutions
- make use of auxiliary nodes which contain only a next field
- each regular node must have an auxiliary node as its predecessor and successor
- deletion will result in an extra auxiliary node being left behind, which means the delete will have to keep trying to cleanup the extra auxiliary nodes
- use an extra 'back_link' field so the delete operation can traverse back to a node that has not been deleted from the list
See also
![]() | This section is empty. You can help by adding to it. (November 2014) |
Further reading
- A Pragmatic Implementation of Non-blocking Linked-Lists, Timothy L Harris
References
- ^ Harris, T. (2001), A Pragmatic Implementation of Non-Blocking Linked Lists, DISC '01 Proceedings of the 15th International Conference on Distributed Computing, Springer-Verlag London, UK, pp. 300–314
{{citation}}
: CS1 maint: location missing publisher (link) - ^ Zhang, K.; Zhao, Y.; Yang, Y.; Liu, Y.; Spear, M. (2013), Practical Non-Blocking Unordered Lists, DISC '13 Proceedings of the 27th International Conference on Distributed Computing, Jerusalem, Israel
{{citation}}
: CS1 maint: location missing publisher (link) - ^ Valois
{{citation}}
: Empty citation (help)