]> git.karo-electronics.de Git - karo-tx-linux.git/blobdiff - lib/llist.c
[media] staging: as102: Remove conditional compilation based on kernel version
[karo-tx-linux.git] / lib / llist.c
index 6c69f1d14c4bf41f2d993d74812b920d19a64f54..700cff77a3870a04ca050b92b47f1a93c04368e3 100644 (file)
  * @new_first: first entry in batch to be added
  * @new_last:  last entry in batch to be added
  * @head:      the head for your lock-less list
+ *
+ * Return whether list is empty before adding.
  */
-void llist_add_batch(struct llist_node *new_first, struct llist_node *new_last,
+bool llist_add_batch(struct llist_node *new_first, struct llist_node *new_last,
                     struct llist_head *head)
 {
        struct llist_node *entry, *old_entry;
@@ -47,8 +49,9 @@ void llist_add_batch(struct llist_node *new_first, struct llist_node *new_last,
                entry = cmpxchg(&head->first, old_entry, new_first);
                if (entry == old_entry)
                        break;
-               cpu_relax();
        }
+
+       return old_entry == NULL;
 }
 EXPORT_SYMBOL_GPL(llist_add_batch);
 
@@ -79,7 +82,6 @@ struct llist_node *llist_del_first(struct llist_head *head)
                entry = cmpxchg(&head->first, old_entry, next);
                if (entry == old_entry)
                        break;
-               cpu_relax();
        }
 
        return entry;