1LIST_FOR_EACH_ENTRY_(9) Data Types LIST_FOR_EACH_ENTRY_(9)
23
4
NAME
6list_for_each_entry_from - iterate over list of given type from the
7current point
8
SYNOPSIS
10list_for_each_entry_from(pos, head, member);
11
ARGUMENTS
13pos
14the type * to use as a loop cursor.
1516
head
17the head for your list.
1819
member
20the name of the list_struct within the struct.
21
DESCRIPTION
23Iterate over list of given type, continuing from current position.
24
COPYRIGHT
26Kernel Hackers Manual 2.6. June 2019 LIST_FOR_EACH_ENTRY_(9)