1LIST_FOR_EACH_ENTRY_(9) Data Types LIST_FOR_EACH_ENTRY_(9)
2
3
4
6 list_for_each_entry_continue - continue iteration over list of given
7 type
8
10 list_for_each_entry_continue(pos, head, member);
11
13 pos
14 the type * to use as a loop cursor.
15
16 head
17 the head for your list.
18
19 member
20 the name of the list_struct within the struct.
21
23 Continue to iterate over list of given type, continuing after the
24 current position.
25
27Kernel Hackers Manual 3.10 June 2019 LIST_FOR_EACH_ENTRY_(9)