1LIST_FOR_EACH_ENTRY_(9) Data Types LIST_FOR_EACH_ENTRY_(9)
2
3
4
6 list_for_each_entry_continue_reverse - iterate backwards from the given
7 point
8
10 list_for_each_entry_continue_reverse(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 Start to iterate over list of given type backwards, continuing after
24 the current position.
25
27Kernel Hackers Manual 2.6. June 2019 LIST_FOR_EACH_ENTRY_(9)