1SEQ_HLIST_START_RCU(9) The Linux VFS SEQ_HLIST_START_RCU(9)
2
3
4
6 seq_hlist_start_rcu - start an iteration of a hlist protected by RCU
7
9 struct hlist_node * seq_hlist_start_rcu(struct hlist_head * head,
10 loff_t pos);
11
13 head
14 the head of the hlist
15
16 pos
17 the start position of the sequence
18
20 Called at seq_file->op->start.
21
22 This list-traversal primitive may safely run concurrently with the _rcu
23 list-mutation primitives such as hlist_add_head_rcu as long as the
24 traversal is guarded by rcu_read_lock.
25
27Kernel Hackers Manual 2.6. November 2011 SEQ_HLIST_START_RCU(9)