The Linux Kernel API | ||
---|---|---|
<<< Previous | Next >>> |
Insert a new entry after the specified head. This is good for implementing stacks.
The caller must take whatever precautions are necessary (such as holding appropriate locks) to avoid racing with another list-mutation primitive, such as list_add_rcu or list_del_rcu, running on this same list. However, it is perfectly legal to run concurrently with the _rcu list-traversal primitives, such as list_for_each_entry_rcu.
<<< Previous | Home | Next >>> |
list_add_tail | Up | list_add_tail_rcu |