From: Mathieu Desnoyers Date: Sat, 22 Jun 2013 18:49:06 +0000 (-0400) Subject: doc/examples: add bp flavor X-Git-Tag: v0.8.0~21 X-Git-Url: https://git.liburcu.org/?p=urcu.git;a=commitdiff_plain;h=9b4bf32b5757c99226eb78bea03f911536f2e9fc doc/examples: add bp flavor Signed-off-by: Mathieu Desnoyers --- diff --git a/.gitignore b/.gitignore index c7381aa..86ad0c2 100644 --- a/.gitignore +++ b/.gitignore @@ -77,6 +77,7 @@ doc/examples/urcu-flavors/qsbr doc/examples/urcu-flavors/mb doc/examples/urcu-flavors/membarrier doc/examples/urcu-flavors/signal +doc/examples/urcu-flavors/bp doc/examples/list/cds_list_add_rcu doc/examples/list/cds_list_add_tail_rcu diff --git a/doc/examples/Makefile.am b/doc/examples/Makefile.am index f720e48..00ac7e9 100644 --- a/doc/examples/Makefile.am +++ b/doc/examples/Makefile.am @@ -8,10 +8,12 @@ dist_doc_examples_urcu_flavors_DATA = \ urcu-flavors/Makefile.mb \ urcu-flavors/Makefile.membarrier \ urcu-flavors/Makefile.signal \ + urcu-flavors/Makefile.bp \ urcu-flavors/qsbr.c \ urcu-flavors/mb.c \ urcu-flavors/membarrier.c \ - urcu-flavors/signal.c + urcu-flavors/signal.c \ + urcu-flavors/bp.c dist_doc_examples_DATA = \ dist-files/Makefile \ diff --git a/doc/examples/urcu-flavors/Makefile b/doc/examples/urcu-flavors/Makefile index db90df4..f4cc0b1 100644 --- a/doc/examples/urcu-flavors/Makefile +++ b/doc/examples/urcu-flavors/Makefile @@ -16,6 +16,7 @@ all: $(MAKE) -f Makefile.mb $(MAKE) -f Makefile.membarrier $(MAKE) -f Makefile.signal + $(MAKE) -f Makefile.bp .PHONY: clean clean: @@ -23,3 +24,4 @@ clean: $(MAKE) -f Makefile.mb clean $(MAKE) -f Makefile.membarrier clean $(MAKE) -f Makefile.signal clean + $(MAKE) -f Makefile.bp clean diff --git a/doc/examples/urcu-flavors/Makefile.bp b/doc/examples/urcu-flavors/Makefile.bp new file mode 100644 index 0000000..5170f02 --- /dev/null +++ b/doc/examples/urcu-flavors/Makefile.bp @@ -0,0 +1,21 @@ +# Copyright (C) 2013 Mathieu Desnoyers +# +# THIS MATERIAL IS PROVIDED AS IS, WITH ABSOLUTELY NO WARRANTY EXPRESSED +# OR IMPLIED. ANY USE IS AT YOUR OWN RISK. +# +# Permission is hereby granted to use or copy this program for any +# purpose, provided the above notices are retained on all copies. +# Permission to modify the code and to distribute modified code is +# granted, provided the above notices are retained, and a notice that +# the code was modified is included with the above copyright notice. +# +# This makefile is purposefully kept simple to support GNU and BSD make. + +EXAMPLE_NAME = bp + +SOURCES = $(EXAMPLE_NAME).c +OBJECTS = $(EXAMPLE_NAME).o +BINARY = $(EXAMPLE_NAME) +LIBS = -lurcu-bp + +include ../Makefile.examples.template diff --git a/doc/examples/urcu-flavors/bp.c b/doc/examples/urcu-flavors/bp.c new file mode 100644 index 0000000..64978fc --- /dev/null +++ b/doc/examples/urcu-flavors/bp.c @@ -0,0 +1,115 @@ +/* + * Copyright (C) 2013 Mathieu Desnoyers + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + */ + +#include +#include +#include +#include +#include + +#include /* Bulletproof RCU flavor */ +#include /* List example */ +#include /* For CAA_ARRAY_SIZE */ + +/* + * Example showing how to use the Bulletproof Userspace RCU flavor. + * + * This is a mock-up example where updates and RCU traversals are + * performed by the same thread to keep things simple on purpose. + */ + +static CDS_LIST_HEAD(mylist); + +struct mynode { + uint64_t value; + struct cds_list_head node; /* linked-list chaining */ + struct rcu_head rcu_head; /* for call_rcu() */ +}; + +static +int add_node(uint64_t v) +{ + struct mynode *node; + + node = calloc(sizeof(*node), 1); + if (!node) + return -1; + node->value = v; + cds_list_add_rcu(&node->node, &mylist); + return 0; +} + +int main(int argc, char **argv) +{ + uint64_t values[] = { 42, 36, 24, }; + unsigned int i; + int ret; + struct mynode *node, *n; + + /* + * Notice that with the bulletproof flavor, there is no need to + * register/unregister RCU reader threads. + */ + + /* + * Adding nodes to the linked-list. Safe against concurrent + * RCU traversals, require mutual exclusion with list updates. + */ + for (i = 0; i < CAA_ARRAY_SIZE(values); i++) { + ret = add_node(values[i]); + if (ret) + goto end; + } + + /* + * We need to explicitly mark RCU read-side critical sections + * with rcu_read_lock() and rcu_read_unlock(). They can be + * nested. Those are no-ops for the QSBR flavor. + */ + rcu_read_lock(); + + /* + * RCU traversal of the linked list. + */ + cds_list_for_each_entry_rcu(node, &mylist, node) { + printf("Value: %" PRIu64 "\n", node->value); + } + rcu_read_unlock(); + + /* + * Removing nodes from linked list. Safe against concurrent RCU + * traversals, require mutual exclusion with list updates. + */ + cds_list_for_each_entry_safe(node, n, &mylist, node) { + cds_list_del_rcu(&node->node); + + /* + * Using synchronize_rcu() directly for synchronization + * so we keep a minimal impact on the system by not + * spawning any call_rcu() thread. It is slower though, + * since there is no batching. + */ + synchronize_rcu(); + free(node); + } + + sleep(1); + +end: + return ret; +}