Commit fc23af34 authored by Andrew Morton's avatar Andrew Morton Committed by Linus Torvalds

llist-return-whether-list-is-empty-before-adding-in-llist_add-fix

clarify comment

Cc: Huang Ying <ying.huang@intel.com>
Cc: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 67220a9e
...@@ -148,7 +148,7 @@ static inline struct llist_node *llist_next(struct llist_node *node) ...@@ -148,7 +148,7 @@ static inline struct llist_node *llist_next(struct llist_node *node)
* @new: new entry to be added * @new: new entry to be added
* @head: the head for your lock-less list * @head: the head for your lock-less list
* *
* Return whether list is empty before adding. * Returns true if the list was empty prior to adding this entry.
*/ */
static inline bool llist_add(struct llist_node *new, struct llist_head *head) static inline bool llist_add(struct llist_node *new, struct llist_head *head)
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment