/* * Copyright 2009-2012 Samy Al Bahra. * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. */ #ifndef _CK_STACK_H #define _CK_STACK_H #include #include #include #include struct ck_stack_entry { struct ck_stack_entry *next; }; typedef struct ck_stack_entry ck_stack_entry_t; struct ck_stack { struct ck_stack_entry *head; char *generation CK_CC_PACKED; }; typedef struct ck_stack ck_stack_t; #define CK_STACK_INITIALIZER { NULL, NULL } #ifndef CK_F_STACK_PUSH_UPMC #define CK_F_STACK_PUSH_UPMC /* * Stack producer operation safe for multiple unique producers and multiple consumers. */ CK_CC_INLINE static void ck_stack_push_upmc(struct ck_stack *target, struct ck_stack_entry *entry) { struct ck_stack_entry *stack; stack = ck_pr_load_ptr(&target->head); ck_pr_store_ptr(&entry->next, stack); while (ck_pr_cas_ptr_value(&target->head, stack, entry, &stack) == false) ck_pr_store_ptr(&entry->next, stack); return; } #endif /* CK_F_STACK_PUSH_UPMC */ #ifndef CK_F_STACK_POP_UPMC #define CK_F_STACK_POP_UPMC /* * Stack consumer operation safe for multiple unique producers and multiple consumers. */ CK_CC_INLINE static struct ck_stack_entry * ck_stack_pop_upmc(struct ck_stack *target) { struct ck_stack_entry *entry; entry = ck_pr_load_ptr(&target->head); if (entry == NULL) return (NULL); while (ck_pr_cas_ptr_value(&target->head, entry, entry->next, &entry) == false) { if (entry == NULL) break; } return (entry); } #endif #ifndef CK_F_STACK_BATCH_POP_UPMC #define CK_F_STACK_BATCH_POP_UPMC /* * Pop all items off the stack. */ CK_CC_INLINE static struct ck_stack_entry * ck_stack_batch_pop_upmc(struct ck_stack *target) { struct ck_stack_entry *entry; entry = ck_pr_fas_ptr(&target->head, NULL); return (entry); } #endif /* CK_F_STACK_BATCH_POP_UPMC */ #ifndef CK_F_STACK_PUSH_MPMC #define CK_F_STACK_PUSH_MPMC /* * Stack producer operation safe for multiple producers and multiple consumers. */ CK_CC_INLINE static void ck_stack_push_mpmc(struct ck_stack *target, struct ck_stack_entry *entry) { ck_stack_push_upmc(target, entry); return; } #endif /* CK_F_STACK_PUSH_MPMC */ #ifdef CK_F_PR_CAS_PTR_2_VALUE #ifndef CK_F_STACK_POP_MPMC #define CK_F_STACK_POP_MPMC /* * Stack consumer operation safe for multiple producers and multiple consumers. */ CK_CC_INLINE static struct ck_stack_entry * ck_stack_pop_mpmc(struct ck_stack *target) { struct ck_stack original, update; original.generation = ck_pr_load_ptr(&target->generation); original.head = ck_pr_load_ptr(&target->head); if (original.head == NULL) return (NULL); update.generation = original.generation + 1; update.head = original.head->next; while (ck_pr_cas_ptr_2_value(target, &original, &update, &original) == false) { if (original.head == NULL) return (NULL); ck_pr_store_ptr(&update.generation, original.generation + 1); ck_pr_store_ptr(&update.head, original.head->next); } return (original.head); } #endif /* CK_F_STACK_POP_MPMC */ #endif /* CK_F_PR_CAS_PTR_2_VALUE */ #ifndef CK_F_STACK_BATCH_POP_MPMC #define CK_F_STACK_BATCH_POP_MPMC /* * This is equivalent to the UP/MC version as NULL does not need a * a generation count. */ CK_CC_INLINE static struct ck_stack_entry * ck_stack_batch_pop_mpmc(struct ck_stack *target) { return ck_stack_batch_pop_upmc(target); } #endif /* CK_F_STACK_BATCH_POP_MPMC */ #ifndef CK_F_STACK_PUSH_MPNC #define CK_F_STACK_PUSH_MPNC /* * Stack producer operation safe with no concurrent consumers. */ CK_CC_INLINE static void ck_stack_push_mpnc(struct ck_stack *target, struct ck_stack_entry *entry) { struct ck_stack_entry *stack; entry->next = NULL; ck_pr_fence_store(); stack = ck_pr_fas_ptr(&target->head, entry); ck_pr_store_ptr(&entry->next, stack); ck_pr_fence_store(); return; } #endif /* CK_F_STACK_PUSH_MPNC */ /* * Stack producer operation for single producer and no concurrent consumers. */ CK_CC_INLINE static void ck_stack_push_spnc(struct ck_stack *target, struct ck_stack_entry *entry) { entry->next = target->head; target->head = entry; return; } /* * Stack consumer operation for no concurrent producers and single consumer. */ CK_CC_INLINE static struct ck_stack_entry * ck_stack_pop_npsc(struct ck_stack *target) { struct ck_stack_entry *n; if (target->head == NULL) return (NULL); n = target->head; target->head = n->next; return (n); } /* * Pop all items off a stack. */ CK_CC_INLINE static struct ck_stack_entry * ck_stack_batch_pop_npsc(struct ck_stack *target) { struct ck_stack_entry *n; n = target->head; target->head = NULL; return (n); } /* * Stack initialization function. Guarantees initialization across processors. */ CK_CC_INLINE static void ck_stack_init(struct ck_stack *stack) { stack->head = NULL; stack->generation = 0; ck_pr_fence_store(); return; } /* Defines a container_of functions for */ #define CK_STACK_CONTAINER(T, M, N) CK_CC_CONTAINER(ck_stack_entry_t, T, M, N) #define CK_STACK_ISEMPTY(m) ((m)->head == NULL) #define CK_STACK_FIRST(s) ((s)->head) #define CK_STACK_NEXT(m) ((m)->next) #define CK_STACK_FOREACH(stack, entry) \ for ((entry) = CK_STACK_FIRST(stack); \ (entry) != NULL; \ (entry) = CK_STACK_NEXT(entry)) #define CK_STACK_FOREACH_SAFE(stack, entry, T) \ for ((entry) = CK_STACK_FIRST(stack); \ (entry) != NULL && ((T) = (entry)->next, 1); \ (entry) = (T)) #endif /* _CK_STACK_H */