rcuja-range: allow variable number of bits for key
[userspace-rcu.git] / rcuja / rcuja-range.c
CommitLineData
b45a45b9
MD
1/*
2 * rcuja/rcuja-range.c
3 *
4 * Userspace RCU library - RCU Judy Array Range Support
5 *
6 * Copyright 2012-2013 - Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
7 *
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
12 *
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
17 *
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21 */
22
23#define _LGPL_SOURCE
24#include <stdint.h>
25#include <errno.h>
26#include <limits.h>
27#include <string.h>
28#include <assert.h>
29#include <pthread.h>
30#include <urcu/rcuja.h>
31#include <urcu/compiler.h>
32#include <urcu/arch.h>
33#include <urcu-pointer.h>
34#include <urcu/uatomic.h>
35#include <urcu/rcuja-range.h>
36#include <urcu-flavor.h>
37
38#include "rcuja-internal.h"
39
40/*
41 * Discussion about order of lookup/lock vs allocated node deletion.
42 *
43 * - If node deletion returns before call to
44 * cds_ja_range_lookup(), the node will not be found by lookup.
45 * - If node deletion is called after cds_ja_range_lock() returns a
46 * non-NULL range, the deletion will wait until the lock is released
47 * before it takes place.
48 * - If node deletion call/return overlaps with the call to
49 * cds_ja_range_lookup() and return from cds_ja_range_lock(), the node
50 * may or may not be found by each of cds_ja_range_lookup() and
51 * cds_ja_range_lock().
52 */
53
54/*
55 * Discussion about order of lookup/lock vs allocated node add. Assuming
56 * no concurrent delete.
57 *
58 * - If node add returns before call to
59 * cds_ja_range_lookup(), the node will be found by lookup.
60 * - If node add is called after cds_ja_range_lookup returns, the node
61 * will not be found by lookup.
62 * - If node add call/return overlaps with the call to and return from
63 * cds_ja_range_lookup(), the node may or may not be found.
64 * - If node add call/return overlaps with call to cds_ja_range_lookup()
65 * and return from cds_ja_range_lock(), in the specific case where
66 * cds_ja_range_lookup() _does_ succeed, then cds_ja_range_lock() will
67 * succeed (still assuming no concurrent deletion).
68 */
69
c34bfad2
MD
70/*
71 * Discussion: concurrent deletion of contiguous allocated ranges.
72 *
73 * Ensuring that merge of contiguous free ranges is always performed, we
74 * need to ensure locking of concurrent removal of contiguous allocated
75 * ranges one with respect to another. This is done by locking the
76 * ranges prior to and after the range to remove, even if that range is
77 * allocated. This serializes removal of contiguous ranges. The only
78 * cases for which there is no range to lock is when removing an
79 * allocated range starting at 0, and/or ending at the end of the key
80 * space.
81 */
82
9a655aa8
MD
83/*
84 * Discussion: concurrent lookup vs add
85 *
86 * When executed concurrently with node add, the inequality
87 * lookup can see no node for the looked-up range, because a range can
88 * be shrinked. This can happen if, for instance, we lookup key 2
89 * between addition of a "free" range for values [1,2], and removal of
90 * the old "free" range for values [0,2]. We would then fail to observe
91 * any range for key 2. Given that the lookup is performed during a
92 * range transition, we can safely return that there is no allocated
93 * node in the range.
94 */
95
96/*
97 * Discussion: concurrent lookup vs del
98 *
99 * There is no special case for lookups performed concurrently with node
100 * del, because node del either replaces the node with the exact same
101 * start key (see duplicates guarantees), or replaces it with a larger
102 * range containing the prior range. Therefore, we are sure that
103 * inequality lookups will see the larger range before the old range is
104 * deleted, in whichever direction the lookup is performed.
105 */
106
b45a45b9
MD
107/*
108 * Discussion of the type state transitions.
109 *
110 * State transitions of "type" always go from either:
111 *
112 * CDS_JA_RANGE_FREE -> CDS_JA_RANGE_REMOVED
113 * or
114 * CDS_JA_RANGE_ALLOCATED -> CDS_JA_RANGE_REMOVED
115 *
116 * A range type never changes otherwise.
117 */
118
9a655aa8
MD
119//#define RANGE_DEBUG
120
121#undef dbg_printf
122
123#ifdef RANGE_DEBUG
124#define dbg_printf(fmt, args...) \
125 fprintf(stderr, "[debug rcuja-range %lu %s()@%s:%u] " fmt, \
126 (unsigned long) gettid(), __func__, \
127 __FILE__, __LINE__, ## args)
128#else
129#define dbg_printf(fmt, args...) \
130do { \
131 /* do nothing but check printf format */ \
132 if (0) \
133 fprintf(stderr, "[debug rcuja-range %lu %s()@%s:%u] " fmt, \
134 (unsigned long) gettid(), __func__, \
135 __FILE__, __LINE__, ## args); \
136} while (0)
137#endif
138
fe8ad3da
MD
139enum cds_ja_range_type {
140 CDS_JA_RANGE_ALLOCATED,
141 CDS_JA_RANGE_FREE,
142 CDS_JA_RANGE_REMOVED,
143};
144
145/*
146 * Range goes from start (inclusive) to end (inclusive).
147 * Range start is used as node key in the Judy array.
148 */
149struct cds_ja_range {
150 uint64_t end;
151 struct cds_ja_node ja_node;
152 pthread_mutex_t lock;
153 void *priv;
154 enum cds_ja_range_type type;
155
156 /* not required on lookup fast-path */
157 uint64_t start;
158 struct rcu_head head;
159};
160
b45a45b9
MD
161struct cds_ja_range *cds_ja_range_lookup(struct cds_ja *ja, uint64_t key)
162{
163 struct cds_ja_node *node, *last_node;
164 struct cds_ja_range *range;
165
9a655aa8 166 dbg_printf("key: %" PRIu64 "\n", key);
b45a45b9 167 node = cds_ja_lookup_below_equal(ja, key, NULL);
9a655aa8
MD
168 if (!node)
169 return NULL;
b45a45b9
MD
170 /*
171 * Get the last of duplicate chain. Adding a node to Judy array
172 * duplicates inserts them at the end of the chain.
173 */
174 cds_ja_for_each_duplicate_rcu(node)
175 last_node = node;
176 range = caa_container_of(last_node, struct cds_ja_range, ja_node);
9a655aa8
MD
177
178 /* Check if range is currently hidden by concurrent add */
179 if (range->end < key)
180 return NULL;
181
b45a45b9
MD
182 /*
183 * If last node in the duplicates is removed or free, we can
184 * consider that either a removal or add operation is in
185 * progress, or removal is the last completed operation to
186 * update this range. We can therefore consider that this area
187 * is not allocated.
188 */
189 if (range->type != CDS_JA_RANGE_ALLOCATED)
190 return NULL;
191 /*
192 * We found an allocated range. We can return it for use with
7c74dcc7 193 * RCU read-side protection for existence. However, we have no
b45a45b9
MD
194 * mutual exclusion against removal at this point.
195 */
196 return range;
197}
198
199/*
200 * Provide mutual exclusion against removal.
201 */
202struct cds_ja_range *cds_ja_range_lock(struct cds_ja_range *range)
203{
204 pthread_mutex_lock(&range->lock);
205
206 if (range->type == CDS_JA_RANGE_REMOVED)
207 goto removed;
208 return range;
209
210removed:
211 pthread_mutex_unlock(&range->lock);
212 return NULL;
213}
214
215void cds_ja_range_unlock(struct cds_ja_range *range)
216{
217 pthread_mutex_unlock(&range->lock);
218}
219
220static
221struct cds_ja_range *range_create(
222 uint64_t start, /* inclusive */
223 uint64_t end, /* inclusive */
fe8ad3da 224 void *priv,
b45a45b9
MD
225 enum cds_ja_range_type type)
226{
227 struct cds_ja_range *range;
228
229 range = calloc(sizeof(*range), 1);
230 if (!range)
231 return NULL;
232 range->start = start;
233 range->end = end;
fe8ad3da 234 range->priv = priv;
b45a45b9
MD
235 range->type = type;
236 pthread_mutex_init(&range->lock, NULL);
237 return range;
238}
239
240static
241void free_range_cb(struct rcu_head *head)
242{
243 struct cds_ja_range *range =
244 caa_container_of(head, struct cds_ja_range, head);
245 free(range);
246}
247
248static
249void free_range(struct cds_ja_range *range)
250{
251 free(range);
252}
253
254static
255void rcu_free_range(struct cds_ja *ja, struct cds_ja_range *range)
256{
257 cds_lfht_rcu_flavor(ja->ht)->update_call_rcu(&range->head,
258 free_range_cb);
259}
260
cd7eb7a3 261int cds_ja_range_add(struct cds_ja *ja,
b45a45b9 262 uint64_t start, /* inclusive */
fe8ad3da
MD
263 uint64_t end, /* inclusive */
264 void *priv)
b45a45b9 265{
9a655aa8
MD
266 struct cds_ja_node *old_node;
267 struct cds_ja_range *old_range, *new_range, *ranges[3];
b45a45b9
MD
268 unsigned int nr_ranges, i;
269 int ret;
270
9a655aa8
MD
271 if (start > end || end == UINT64_MAX)
272 return -EINVAL;
273
b45a45b9 274retry:
9a655aa8
MD
275 dbg_printf("start: %" PRIu64 ", end: %" PRIu64 ", priv %p\n",
276 start, end, priv);
b45a45b9
MD
277 /*
278 * Find if requested range is entirely contained within a single
279 * free range.
280 */
281 old_node = cds_ja_lookup_below_equal(ja, start, NULL);
9a655aa8
MD
282 /* Range hidden by concurrent add */
283 if (!old_node)
284 goto retry;
b45a45b9
MD
285
286 old_range = caa_container_of(old_node, struct cds_ja_range, ja_node);
9a655aa8
MD
287
288 /* Range hidden by concurrent add */
289 if (old_range->end < start)
290 goto retry;
291
292 /* We now know that old_range overlaps with our range */
b45a45b9
MD
293 switch (CMM_LOAD_SHARED(old_range->type)) {
294 case CDS_JA_RANGE_ALLOCATED:
cd7eb7a3 295 return -EEXIST;
b45a45b9
MD
296 case CDS_JA_RANGE_FREE:
297 break;
298 case CDS_JA_RANGE_REMOVED:
299 goto retry;
300 }
301
9a655aa8
MD
302 /* We do not fit entirely within the range */
303 if (old_range->end < end)
304 return -EEXIST;
b45a45b9
MD
305
306 pthread_mutex_lock(&old_range->lock);
307
308 if (old_range->type == CDS_JA_RANGE_REMOVED) {
309 pthread_mutex_unlock(&old_range->lock);
310 goto retry;
311 }
312
313 /* Create replacement ranges: at most 2 free and 1 allocated */
314 if (start == old_range->start) {
315 if (end == old_range->end) {
316 /* 1 range */
317 ranges[0] = new_range = range_create(start, end,
fe8ad3da 318 priv, CDS_JA_RANGE_ALLOCATED);
b45a45b9
MD
319 nr_ranges = 1;
320 } else {
321 /* 2 ranges */
9a655aa8 322 assert(old_range->end > end);
b45a45b9 323 ranges[0] = new_range = range_create(start, end,
fe8ad3da 324 priv, CDS_JA_RANGE_ALLOCATED);
b45a45b9 325 ranges[1] = range_create(end + 1, old_range->end,
fe8ad3da 326 NULL, CDS_JA_RANGE_FREE);
b45a45b9
MD
327 nr_ranges = 2;
328 }
329 } else {
330 if (end == old_range->end) {
331 /* 2 ranges */
9a655aa8 332 assert(old_range->start < start);
b45a45b9 333 ranges[0] = range_create(old_range->start, start - 1,
fe8ad3da 334 NULL, CDS_JA_RANGE_FREE);
b45a45b9 335 ranges[1] = new_range = range_create(start, end,
fe8ad3da 336 priv, CDS_JA_RANGE_ALLOCATED);
b45a45b9
MD
337 nr_ranges = 2;
338 } else {
339 /* 3 ranges */
9a655aa8
MD
340 assert(old_range->start < start);
341 assert(old_range->end > end);
b45a45b9 342 ranges[0] = range_create(old_range->start, start - 1,
fe8ad3da 343 NULL, CDS_JA_RANGE_FREE);
b45a45b9 344 ranges[1] = new_range = range_create(start, end,
fe8ad3da 345 priv, CDS_JA_RANGE_ALLOCATED);
b45a45b9 346 ranges[2] = range_create(end + 1, old_range->end,
fe8ad3da 347 NULL, CDS_JA_RANGE_FREE);
b45a45b9
MD
348 nr_ranges = 3;
349 }
350 }
351
352 /* Add replacement ranges to Judy array */
353 for (i = 0; i < nr_ranges; i++) {
9a655aa8
MD
354 dbg_printf("ADD RANGE: %" PRIu64 "-%" PRIu64 " %s.\n",
355 ranges[i]->start, ranges[i]->end,
356 ranges[i]->type == CDS_JA_RANGE_ALLOCATED ?
357 "allocated" : "free");
358 pthread_mutex_lock(&ranges[i]->lock);
b45a45b9
MD
359 ret = cds_ja_add(ja, ranges[i]->start, &ranges[i]->ja_node);
360 assert(!ret);
361 }
362
363 /*
364 * We add replacement ranges _before_ removing old ranges, so
365 * concurrent traversals will always see one or the other. This
366 * is OK because we temporarily have a duplicate key, and Judy
367 * arrays provide key existence guarantee for lookups performed
368 * concurrently with add followed by del of duplicate keys.
369 */
370
9a655aa8
MD
371 dbg_printf("REM RANGE: %" PRIu64 "-%" PRIu64 " %s.\n",
372 old_range->start, old_range->end,
373 old_range->type == CDS_JA_RANGE_ALLOCATED ?
374 "allocated" : "free");
b45a45b9
MD
375 /* Remove old free range */
376 ret = cds_ja_del(ja, old_range->start, &old_range->ja_node);
377 assert(!ret);
378 old_range->type = CDS_JA_RANGE_REMOVED;
379 pthread_mutex_unlock(&old_range->lock);
9a655aa8
MD
380 for (i = 0; i < nr_ranges; i++)
381 pthread_mutex_unlock(&ranges[i]->lock);
b45a45b9
MD
382
383 rcu_free_range(ja, old_range);
384
9a655aa8
MD
385 dbg_printf("<SUCCEED>\n");
386
cd7eb7a3 387 return 0;
b45a45b9
MD
388}
389
390int cds_ja_range_del(struct cds_ja *ja, struct cds_ja_range *range)
391{
392 struct cds_ja_node *prev_node, *next_node;
c34bfad2
MD
393 struct cds_ja_range *new_range;
394 struct cds_ja_range *merge_ranges[3], *lock_ranges[3];
395 unsigned int nr_merge, nr_lock, i;
b45a45b9
MD
396 uint64_t start, end;
397 int ret;
398
399retry:
9a655aa8
MD
400 dbg_printf("start: %" PRIu64 ", end %" PRIu64 ", priv: %p\n",
401 range->start, range->end, range->priv);
402
b45a45b9 403 nr_merge = 0;
c34bfad2 404 nr_lock = 0;
9a655aa8
MD
405
406 /*
407 * Range has been concurrently updated.
408 */
409 if (range->type != CDS_JA_RANGE_ALLOCATED)
410 return -ENOENT;
411
412 if (range->start > 0) {
c34bfad2 413 struct cds_ja_range *prev_range;
b45a45b9 414
9a655aa8
MD
415 prev_node = cds_ja_lookup_below_equal(ja, range->start - 1,
416 NULL);
417 if (!prev_node)
418 goto retry;
419
c34bfad2
MD
420 prev_range = caa_container_of(prev_node,
421 struct cds_ja_range, ja_node);
9a655aa8
MD
422 /* Prev range temporarily hidden due to concurrent add. */
423 if (prev_range->end != range->start - 1)
424 goto retry;
425
c34bfad2
MD
426 lock_ranges[nr_lock++] = prev_range;
427 if (prev_range->type != CDS_JA_RANGE_ALLOCATED)
428 merge_ranges[nr_merge++] = prev_range;
429 }
430
431 lock_ranges[nr_lock++] = range;
b45a45b9
MD
432 merge_ranges[nr_merge++] = range;
433
9a655aa8 434 if (range->end < UINT64_MAX - 1) {
c34bfad2
MD
435 struct cds_ja_range *next_range;
436
9a655aa8
MD
437 next_node = cds_ja_lookup_below_equal(ja, range->end + 1,
438 NULL);
439 /* Next range temporarily hidden due to concurrent add. */
440 if (!next_node)
441 goto retry;
442
c34bfad2
MD
443 next_range = caa_container_of(next_node,
444 struct cds_ja_range, ja_node);
9a655aa8
MD
445 if (next_range->start != range->end + 1)
446 goto retry;
447
c34bfad2
MD
448 lock_ranges[nr_lock++] = next_range;
449 if (next_range->type != CDS_JA_RANGE_ALLOCATED)
450 merge_ranges[nr_merge++] = next_range;
451 }
b45a45b9
MD
452
453 /* Acquire locks in increasing key order for range merge */
c34bfad2
MD
454 for (i = 0; i < nr_lock; i++)
455 pthread_mutex_lock(&lock_ranges[i]->lock);
9a655aa8
MD
456 if (range->type != CDS_JA_RANGE_ALLOCATED) {
457 ret = -ENOENT;
458 goto unlock_error;
459 }
b45a45b9 460 /* Ensure they are valid */
c34bfad2
MD
461 for (i = 0; i < nr_lock; i++) {
462 if (lock_ranges[i]->type == CDS_JA_RANGE_REMOVED)
b45a45b9
MD
463 goto unlock_retry;
464 }
465
466 /* Create new free range */
467 start = merge_ranges[0]->start;
468 end = merge_ranges[nr_merge - 1]->end;
fe8ad3da 469 new_range = range_create(start, end, NULL, CDS_JA_RANGE_FREE);
9a655aa8
MD
470 pthread_mutex_lock(&new_range->lock);
471
472 dbg_printf("ADD RANGE: %" PRIu64 "-%" PRIu64 " %s.\n",
473 new_range->start, new_range->end,
474 new_range->type == CDS_JA_RANGE_ALLOCATED ?
475 "allocated" : "free");
476
b45a45b9
MD
477 ret = cds_ja_add(ja, start, &new_range->ja_node);
478 assert(!ret);
479
480 /* Remove old ranges */
481 for (i = 0; i < nr_merge; i++) {
9a655aa8
MD
482
483 dbg_printf("REM RANGE: %" PRIu64 "-%" PRIu64 " %s.\n",
484 merge_ranges[i]->start, merge_ranges[i]->end,
485 merge_ranges[i]->type == CDS_JA_RANGE_ALLOCATED ?
486 "allocated" : "free");
b45a45b9
MD
487 ret = cds_ja_del(ja, merge_ranges[i]->start,
488 &merge_ranges[i]->ja_node);
489 assert(!ret);
490 merge_ranges[i]->type = CDS_JA_RANGE_REMOVED;
b45a45b9 491 }
c34bfad2
MD
492 for (i = 0; i < nr_lock; i++)
493 pthread_mutex_unlock(&lock_ranges[i]->lock);
9a655aa8 494 pthread_mutex_unlock(&new_range->lock);
c34bfad2
MD
495 /* Free old merged ranges */
496 for (i = 0; i < nr_merge; i++)
497 rcu_free_range(ja, merge_ranges[i]);
b45a45b9 498
9a655aa8
MD
499 dbg_printf("<SUCCEED>\n");
500
b45a45b9
MD
501 return 0;
502
503 /* retry paths */
504unlock_retry:
c34bfad2
MD
505 for (i = 0; i < nr_lock; i++)
506 pthread_mutex_unlock(&lock_ranges[i]->lock);
b45a45b9 507 goto retry;
9a655aa8
MD
508 /* error paths */
509unlock_error:
510 for (i = 0; i < nr_lock; i++)
511 pthread_mutex_unlock(&lock_ranges[i]->lock);
512 return ret;
b45a45b9
MD
513}
514
63d2de6a
MD
515struct cds_ja *_cds_ja_range_new(unsigned int key_bits,
516 const struct rcu_flavor_struct *flavor)
b45a45b9 517{
b45a45b9 518 struct cds_ja_range *range;
678624e7 519 struct cds_ja *ja;
b45a45b9
MD
520 int ret;
521
63d2de6a 522 ja = _cds_ja_new(key_bits, flavor);
678624e7
MD
523 if (!ja)
524 return NULL;
9a655aa8 525 range = range_create(0, UINT64_MAX - 1, NULL, CDS_JA_RANGE_FREE);
b45a45b9 526 if (!range)
678624e7 527 goto free_ja;
dd1da0cb 528 cds_lfht_rcu_flavor(ja->ht)->read_lock();
b45a45b9 529 ret = cds_ja_add(ja, 0, &range->ja_node);
dd1da0cb 530 cds_lfht_rcu_flavor(ja->ht)->read_unlock();
678624e7
MD
531 if (ret)
532 goto free_range;
533 return ja;
534
535free_range:
536 free_range(range);
537free_ja:
538 ret = cds_ja_destroy(ja);
539 assert(!ret);
540 return NULL;
b45a45b9
MD
541}
542
9a655aa8
MD
543int cds_ja_range_validate(struct cds_ja *ja)
544{
545 uint64_t iter_key, start, end, last_end = UINT64_MAX;
546 struct cds_ja_node *ja_node, *last_node;
547 int ret = 0;
548
549 cds_lfht_rcu_flavor(ja->ht)->read_lock();
550 cds_ja_for_each_key_rcu(ja, iter_key, ja_node) {
551 struct cds_ja_range *range;
552 struct cds_ja_node *first_node;
553
554 first_node = ja_node;
555 cds_ja_for_each_duplicate_rcu(ja_node)
556 last_node = ja_node;
557 if (last_node != first_node) {
558 struct cds_ja_range *first_range = caa_container_of(first_node,
559 struct cds_ja_range, ja_node);
560 struct cds_ja_range *last_range = caa_container_of(last_node,
561 struct cds_ja_range, ja_node);
562 fprintf(stderr, "found duplicate node: first %" PRIu64 "-%" PRIu64 " last %" PRIu64 "-%" PRIu64 "\n",
563 first_range->start, first_range->end, last_range->start, last_range->end);
564 ret |= -1;
565 }
566 range = caa_container_of(last_node,
567 struct cds_ja_range, ja_node);
568 start = range->start;
569 end = range->end;
570 if (last_end != UINT64_MAX) {
571 if (start != last_end + 1) {
572 fprintf(stderr, "ja range discrepancy: last end: %" PRIu64 ", start: %" PRIu64 "\n",
573 last_end, start);
574 ret |= -1;
575 }
576 }
577 last_end = end;
578 }
579 if (last_end != UINT64_MAX - 1) {
580 fprintf(stderr, "ja range error: end of last range is: %" PRIu64 "\n",
581 last_end);
582 ret |= 1;
583 }
584 cds_lfht_rcu_flavor(ja->ht)->read_unlock();
585 return ret;
586}
587
fe8ad3da
MD
588int cds_ja_range_destroy(struct cds_ja *ja,
589 void (*free_priv)(void *ptr))
b45a45b9
MD
590{
591 uint64_t key;
592 struct cds_ja_node *ja_node;
593 int ret = 0;
594
dd1da0cb 595 cds_lfht_rcu_flavor(ja->ht)->read_lock();
b45a45b9
MD
596 cds_ja_for_each_key_rcu(ja, key, ja_node) {
597 struct cds_ja_node *tmp_node;
598
599 cds_ja_for_each_duplicate_safe_rcu(ja_node, tmp_node) {
600 struct cds_ja_range *range;
601
602 range = caa_container_of(ja_node,
603 struct cds_ja_range, ja_node);
604 ret = cds_ja_del(ja, key, &range->ja_node);
678624e7
MD
605 if (ret)
606 goto error;
fe8ad3da
MD
607 if (free_priv)
608 free_priv(range->priv);
b45a45b9
MD
609 /* Alone using Judy array, OK to free now */
610 free_range(range);
611 }
612 }
dd1da0cb 613 cds_lfht_rcu_flavor(ja->ht)->read_unlock();
678624e7
MD
614 return cds_ja_destroy(ja);
615
616error:
dd1da0cb 617 cds_lfht_rcu_flavor(ja->ht)->read_unlock();
b45a45b9
MD
618 return ret;
619}
This page took 0.051921 seconds and 4 git commands to generate.