aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--include/linux/llist.h19
-rw-r--r--lib/llist.c15
2 files changed, 12 insertions, 22 deletions
diff --git a/include/linux/llist.h b/include/linux/llist.h
index a5199f6d0e82..3e2b969d68f6 100644
--- a/include/linux/llist.h
+++ b/include/linux/llist.h
@@ -151,18 +151,13 @@ static inline struct llist_node *llist_next(struct llist_node *node)
151 */ 151 */
152static inline bool llist_add(struct llist_node *new, struct llist_head *head) 152static inline bool llist_add(struct llist_node *new, struct llist_head *head)
153{ 153{
154 struct llist_node *entry, *old_entry; 154 struct llist_node *first;
155 155
156 entry = head->first; 156 do {
157 for (;;) { 157 new->next = first = ACCESS_ONCE(head->first);
158 old_entry = entry; 158 } while (cmpxchg(&head->first, first, new) != first);
159 new->next = entry; 159
160 entry = cmpxchg(&head->first, old_entry, new); 160 return !first;
161 if (entry == old_entry)
162 break;
163 }
164
165 return old_entry == NULL;
166} 161}
167 162
168/** 163/**
diff --git a/lib/llist.c b/lib/llist.c
index 4a15115e90f8..4a70d120138c 100644
--- a/lib/llist.c
+++ b/lib/llist.c
@@ -39,18 +39,13 @@
39bool llist_add_batch(struct llist_node *new_first, struct llist_node *new_last, 39bool llist_add_batch(struct llist_node *new_first, struct llist_node *new_last,
40 struct llist_head *head) 40 struct llist_head *head)
41{ 41{
42 struct llist_node *entry, *old_entry; 42 struct llist_node *first;
43 43
44 entry = head->first; 44 do {
45 for (;;) { 45 new_last->next = first = ACCESS_ONCE(head->first);
46 old_entry = entry; 46 } while (cmpxchg(&head->first, first, new_first) != first);
47 new_last->next = entry;
48 entry = cmpxchg(&head->first, old_entry, new_first);
49 if (entry == old_entry)
50 break;
51 }
52 47
53 return old_entry == NULL; 48 return !first;
54} 49}
55EXPORT_SYMBOL_GPL(llist_add_batch); 50EXPORT_SYMBOL_GPL(llist_add_batch);
56 51