1LIST_FOR_EACH_ENTRY_(9) Data Types LIST_FOR_EACH_ENTRY_(9)
2
3
4
6 list_for_each_entry_from_reverse - iterate backwards over list of given
7 type from the current point
8
10 list_for_each_entry_from_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_head within the struct.
21
23 Iterate backwards over list of given type, continuing from current
24 position.
25
27Kernel Hackers Manual 3.10 June 2019 LIST_FOR_EACH_ENTRY_(9)