1LIST_FOR_EACH_ENTRY_(9) Data Types LIST_FOR_EACH_ENTRY_(9)
23
4
NAME
6list_for_each_entry_safe - iterate over list of given type safe against
7removal of list entry
8
SYNOPSIS
10list_for_each_entry_safe(pos, n, head, member);
11
ARGUMENTS
13pos
14the type * to use as a loop cursor.
1516
n
17another type * to use as temporary storage
1819
head
20the head for your list.
2122
member
23the name of the list_struct within the struct.
24
COPYRIGHT
26Kernel Hackers Manual 2.6. June 2019 LIST_FOR_EACH_ENTRY_(9)