diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/llist.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/linux/llist.h b/include/linux/llist.h index e2e96d04ee4..837fb4ae66f 100644 --- a/include/linux/llist.h +++ b/include/linux/llist.h @@ -161,7 +161,6 @@ static inline bool llist_add(struct llist_node *new, struct llist_head *head) entry = cmpxchg(&head->first, old_entry, new); if (entry == old_entry) break; - cpu_relax(); } return old_entry == NULL; |