Skip to content

Commit

Permalink
list: introduce list_first_entry_or_null
Browse files Browse the repository at this point in the history
non-rcu variant of list_first_or_null_rcu

Signed-off-by: Jiri Pirko <jiri@resnulli.us>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Jiri Pirko authored and David S. Miller committed Jun 1, 2013
1 parent e4e8536 commit 6d7581e
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions include/linux/list.h
Original file line number Diff line number Diff line change
Expand Up @@ -361,6 +361,17 @@ static inline void list_splice_tail_init(struct list_head *list,
#define list_first_entry(ptr, type, member) \
list_entry((ptr)->next, type, member)

/**
* list_first_entry_or_null - get the first element from a list
* @ptr: the list head to take the element from.
* @type: the type of the struct this is embedded in.
* @member: the name of the list_struct within the struct.
*
* Note that if the list is empty, it returns NULL.
*/
#define list_first_entry_or_null(ptr, type, member) \
(!list_empty(ptr) ? list_first_entry(ptr, type, member) : NULL)

/**
* list_for_each - iterate over a list
* @pos: the &struct list_head to use as a loop cursor.
Expand Down

0 comments on commit 6d7581e

Please sign in to comment.