list_first_entry - get the first element from a list
"list_first_entry(" "ptr" ", " "type" ", " "member" ");"
ptr
the list head to take the element from.typethe type of the struct this is embedded in. member the name of the list_struct within the struct.
Note, that list is expected to be not empty.