Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is the linux kernel's list.h thread safe?

share|improve this question

2 Answers

up vote 4 down vote accepted

No, the list_head struct doesn't contain any lock, and the operations are by no means atomic.

You can see so for yourself here, there is no mention of locking mechanisms etc.

share|improve this answer

Just read the implementation; the answer is clearly NO in the presence of writers. (Multiple readers on immutable data is safe.)

Paul McKenney gives an introduction to RCU on the ever-helpful LWN, from which you can glean some tips on managing thread-safe updates to linked lists. Of course, your usage may be simple enough that spinlocks will suffice.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.