aboutsummaryrefslogtreecommitdiff
path: root/include/ck_ring.h
blob: 9f6754e0cd2413246bb30925355a909c57998077 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
/*
 * Copyright 2009-2015 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_RING_H
#define CK_RING_H

#include <ck_cc.h>
#include <ck_md.h>
#include <ck_pr.h>
#include <ck_stdbool.h>
#include <ck_string.h>

/*
 * Concurrent ring buffer.
 */

struct ck_ring {
	unsigned int c_head;
	char pad[CK_MD_CACHELINE - sizeof(unsigned int)];
	unsigned int p_tail;
	unsigned int p_head;
	char _pad[CK_MD_CACHELINE - sizeof(unsigned int) * 2];
	unsigned int size;
	unsigned int mask;
};
typedef struct ck_ring ck_ring_t;

struct ck_ring_buffer {
	void *value;
};
typedef struct ck_ring_buffer ck_ring_buffer_t;

CK_CC_INLINE static unsigned int
ck_ring_size(const struct ck_ring *ring)
{
	unsigned int c, p;

	c = ck_pr_load_uint(&ring->c_head);
	p = ck_pr_load_uint(&ring->p_tail);
	return (p - c) & ring->mask;
}

CK_CC_INLINE static unsigned int
ck_ring_capacity(const struct ck_ring *ring)
{

	return ring->size;
}

/*
 * This function is only safe to call when there are no concurrent operations
 * on the ring. This is primarily meant for persistent ck_ring use-cases. The
 * function returns true if any mutations were performed on the ring.
 */
CK_CC_INLINE static bool
ck_ring_repair(struct ck_ring *ring)
{
	bool r = false;

	if (ring->p_tail != ring->p_head) {
		ring->p_tail = ring->p_head;
		r = true;
	}

	return r;
}

/*
 * This can be called when no concurrent updates are occurring on the ring
 * structure to check for consistency. This is primarily meant to be used for
 * persistent storage of the ring. If this functions returns false, the ring
 * is in an inconsistent state.
 */
CK_CC_INLINE static bool
ck_ring_valid(const struct ck_ring *ring)
{
	unsigned int size = ring->size;
	unsigned int c_head = ring->c_head;
	unsigned int p_head = ring->p_head;

	/* The ring must be a power of 2. */
	if (size & (size - 1))
		return false;

	/* The consumer counter must always be smaller than the producer. */
	if (c_head > p_head)
		return false;

	/* The producer may only be up to size slots ahead of consumer. */
	if (p_head - c_head >= size)
		return false;

	return true;
}

CK_CC_INLINE static void
ck_ring_init(struct ck_ring *ring, unsigned int size)
{

	ring->size = size;
	ring->mask = size - 1;
	ring->p_tail = 0;
	ring->p_head = 0;
	ring->c_head = 0;
	return;
}

/*
 * The _ck_ring_* namespace is internal only and must not used externally.
 */

/*
 * This function will return a region of memory to write for the next value
 * for a single producer.
 */
CK_CC_FORCE_INLINE static void *
_ck_ring_enqueue_reserve_sp(struct ck_ring *ring,
    void *CK_CC_RESTRICT buffer,
    unsigned int ts,
    unsigned int *size)
{
	const unsigned int mask = ring->mask;
	unsigned int consumer, producer, delta;

	consumer = ck_pr_load_uint(&ring->c_head);
	producer = ring->p_tail;
	delta = producer + 1;
	if (size != NULL)
		*size = (producer - consumer) & mask;

	if (CK_CC_UNLIKELY((delta & mask) == (consumer & mask)))
		return NULL;

	return (char *)buffer + ts * (producer & mask);
}

/*
 * This is to be called to commit and make visible a region of previously
 * reserved with reverse_sp.
 */
CK_CC_FORCE_INLINE static void
_ck_ring_enqueue_commit_sp(struct ck_ring *ring)
{

	ck_pr_fence_store();
	ck_pr_store_uint(&ring->p_tail, ring->p_tail + 1);
	return;
}

CK_CC_FORCE_INLINE static bool
_ck_ring_enqueue_sp(struct ck_ring *ring,
    void *CK_CC_RESTRICT buffer,
    const void *CK_CC_RESTRICT entry,
    unsigned int ts,
    unsigned int *size)
{
	const unsigned int mask = ring->mask;
	unsigned int consumer, producer, delta;

	consumer = ck_pr_load_uint(&ring->c_head);
	producer = ring->p_tail;
	delta = producer + 1;
	if (size != NULL)
		*size = (producer - consumer) & mask;

	if (CK_CC_UNLIKELY((delta & mask) == (consumer & mask)))
		return false;

	buffer = (char *)buffer + ts * (producer & mask);
	memcpy(buffer, entry, ts);

	/*
	 * Make sure to update slot value before indicating
	 * that the slot is available for consumption.
	 */
	ck_pr_fence_store();
	ck_pr_store_uint(&ring->p_tail, delta);
	return true;
}

CK_CC_FORCE_INLINE static bool
_ck_ring_enqueue_sp_size(struct ck_ring *ring,
    void *CK_CC_RESTRICT buffer,
    const void *CK_CC_RESTRICT entry,
    unsigned int ts,
    unsigned int *size)
{
	unsigned int sz;
	bool r;

	r = _ck_ring_enqueue_sp(ring, buffer, entry, ts, &sz);
	*size = sz;
	return r;
}

CK_CC_FORCE_INLINE static bool
_ck_ring_dequeue_sc(struct ck_ring *ring,
    const void *CK_CC_RESTRICT buffer,
    void *CK_CC_RESTRICT target,
    unsigned int size)
{
	const unsigned int mask = ring->mask;
	unsigned int consumer, producer;

	consumer = ring->c_head;
	producer = ck_pr_load_uint(&ring->p_tail);

	if (CK_CC_UNLIKELY(consumer == producer))
		return false;

	/*
	 * Make sure to serialize with respect to our snapshot
	 * of the producer counter.
	 */
	ck_pr_fence_load();

	buffer = (const char *)buffer + size * (consumer & mask);
	memcpy(target, buffer, size);

	/*
	 * Make sure copy is completed with respect to consumer
	 * update.
	 */
	ck_pr_fence_store();
	ck_pr_store_uint(&ring->c_head, consumer + 1);
	return true;
}

CK_CC_FORCE_INLINE static void *
_ck_ring_enqueue_reserve_mp(struct ck_ring *ring,
    void *buffer,
    unsigned int ts,
    unsigned int *ticket,
    unsigned int *size)
{
	const unsigned int mask = ring->mask;
	unsigned int producer, consumer, delta;

	producer = ck_pr_load_uint(&ring->p_head);

	for (;;) {
		ck_pr_fence_load();
		consumer = ck_pr_load_uint(&ring->c_head);

		delta = producer + 1;

		if (CK_CC_LIKELY((producer - consumer) < mask)) {
			if (ck_pr_cas_uint_value(&ring->p_head,
			    producer, delta, &producer) == true) {
				break;
			}
		} else {
			unsigned int new_producer;

			ck_pr_fence_load();
			new_producer = ck_pr_load_uint(&ring->p_head);

			if (producer == new_producer) {
				if (size != NULL)
					*size = (producer - consumer) & mask;

				return false;
			}

			producer = new_producer;
		}
	}

	*ticket = producer;
	if (size != NULL)
		*size = (producer - consumer) & mask;

	return (char *)buffer + ts * (producer & mask);
}

CK_CC_FORCE_INLINE static void
_ck_ring_enqueue_commit_mp(struct ck_ring *ring, unsigned int producer)
{

	while (ck_pr_load_uint(&ring->p_tail) != producer)
		ck_pr_stall();

	ck_pr_fence_store();
	ck_pr_store_uint(&ring->p_tail, producer + 1);
	return;
}

CK_CC_FORCE_INLINE static bool
_ck_ring_enqueue_mp(struct ck_ring *ring,
    void *buffer,
    const void *entry,
    unsigned int ts,
    unsigned int *size)
{
	const unsigned int mask = ring->mask;
	unsigned int producer, consumer, delta;
	bool r = true;

	producer = ck_pr_load_uint(&ring->p_head);

	for (;;) {
		/*
		 * The snapshot of producer must be up to date with respect to
		 * consumer.
		 */
		ck_pr_fence_load();
		consumer = ck_pr_load_uint(&ring->c_head);

		delta = producer + 1;

		/*
		 * Only try to CAS if the producer is not clearly stale (not
		 * less than consumer) and the buffer is definitely not full.
		 */
		if (CK_CC_LIKELY((producer - consumer) < mask)) {
			if (ck_pr_cas_uint_value(&ring->p_head,
			    producer, delta, &producer) == true) {
				break;
			}
		} else {
			unsigned int new_producer;

			/*
			 * Slow path.  Either the buffer is full or we have a
			 * stale snapshot of p_head.  Execute a second read of
			 * p_read that must be ordered wrt the snapshot of
			 * c_head.
			 */
			ck_pr_fence_load();
			new_producer = ck_pr_load_uint(&ring->p_head);

			/*
			 * Only fail if we haven't made forward progress in
			 * production: the buffer must have been full when we
			 * read new_producer (or we wrapped around UINT_MAX
			 * during this iteration).
			 */
			if (producer == new_producer) {
				r = false;
				goto leave;
			}

			/*
			 * p_head advanced during this iteration. Try again.
			 */
			producer = new_producer;
		}
	}

	buffer = (char *)buffer + ts * (producer & mask);
	memcpy(buffer, entry, ts);

	/*
	 * Wait until all concurrent producers have completed writing
	 * their data into the ring buffer.
	 */
	while (ck_pr_load_uint(&ring->p_tail) != producer)
		ck_pr_stall();

	/*
	 * Ensure that copy is completed before updating shared producer
	 * counter.
	 */
	ck_pr_fence_store();
	ck_pr_store_uint(&ring->p_tail, delta);

leave:
	if (size != NULL)
		*size = (producer - consumer) & mask;

	return r;
}

CK_CC_FORCE_INLINE static bool
_ck_ring_enqueue_mp_size(struct ck_ring *ring,
    void *buffer,
    const void *entry,
    unsigned int ts,
    unsigned int *size)
{
	unsigned int sz;
	bool r;

	r = _ck_ring_enqueue_mp(ring, buffer, entry, ts, &sz);
	*size = sz;
	return r;
}

CK_CC_FORCE_INLINE static bool
_ck_ring_trydequeue_mc(struct ck_ring *ring,
    const void *buffer,
    void *data,
    unsigned int size)
{
	const unsigned int mask = ring->mask;
	unsigned int consumer, producer;

	consumer = ck_pr_load_uint(&ring->c_head);
	ck_pr_fence_load();
	producer = ck_pr_load_uint(&ring->p_tail);

	if (CK_CC_UNLIKELY(consumer == producer))
		return false;

	ck_pr_fence_load();

	buffer = (const char *)buffer + size * (consumer & mask);
	memcpy(data, buffer, size);

	ck_pr_fence_store_atomic();
	return ck_pr_cas_uint(&ring->c_head, consumer, consumer + 1);
}

CK_CC_FORCE_INLINE static bool
_ck_ring_dequeue_mc(struct ck_ring *ring,
    const void *buffer,
    void *data,
    unsigned int ts)
{
	const unsigned int mask = ring->mask;
	unsigned int consumer, producer;

	consumer = ck_pr_load_uint(&ring->c_head);

	do {
		const char *target;

		/*
		 * Producer counter must represent state relative to
		 * our latest consumer snapshot.
		 */
		ck_pr_fence_load();
		producer = ck_pr_load_uint(&ring->p_tail);

		if (CK_CC_UNLIKELY(consumer == producer))
			return false;

		ck_pr_fence_load();

		target = (const char *)buffer + ts * (consumer & mask);
		memcpy(data, target, ts);

		/* Serialize load with respect to head update. */
		ck_pr_fence_store_atomic();
	} while (ck_pr_cas_uint_value(&ring->c_head,
				      consumer,
				      consumer + 1,
				      &consumer) == false);

	return true;
}

/*
 * The ck_ring_*_spsc namespace is the public interface for interacting with a
 * ring buffer containing pointers. Correctness is only provided if there is up
 * to one concurrent consumer and up to one concurrent producer.
 */
CK_CC_INLINE static bool
ck_ring_enqueue_spsc_size(struct ck_ring *ring,
    struct ck_ring_buffer *buffer,
    const void *entry,
    unsigned int *size)
{

	return _ck_ring_enqueue_sp_size(ring, buffer, &entry,
	    sizeof(entry), size);
}

CK_CC_INLINE static bool
ck_ring_enqueue_spsc(struct ck_ring *ring,
    struct ck_ring_buffer *buffer,
    const void *entry)
{

	return _ck_ring_enqueue_sp(ring, buffer,
	    &entry, sizeof(entry), NULL);
}

CK_CC_INLINE static void *
ck_ring_enqueue_reserve_spsc_size(struct ck_ring *ring,
    struct ck_ring_buffer *buffer,
    unsigned int *size)
{

	return _ck_ring_enqueue_reserve_sp(ring, buffer, sizeof(void *),
	    size);
}

CK_CC_INLINE static void *
ck_ring_enqueue_reserve_spsc(struct ck_ring *ring,
    struct ck_ring_buffer *buffer)
{

	return _ck_ring_enqueue_reserve_sp(ring, buffer, sizeof(void *),
	    NULL);
}

CK_CC_INLINE static void
ck_ring_enqueue_commit_spsc(struct ck_ring *ring)
{

	_ck_ring_enqueue_commit_sp(ring);
	return;
}

CK_CC_INLINE static bool
ck_ring_dequeue_spsc(struct ck_ring *ring,
    const struct ck_ring_buffer *buffer,
    void *data)
{

	return _ck_ring_dequeue_sc(ring, buffer,
	    (void **)data, sizeof(void *));
}

/*
 * The ck_ring_*_mpmc namespace is the public interface for interacting with a
 * ring buffer containing pointers. Correctness is provided for any number of
 * producers and consumers.
 */
CK_CC_INLINE static bool
ck_ring_enqueue_mpmc(struct ck_ring *ring,
    struct ck_ring_buffer *buffer,
    const void *entry)
{

	return _ck_ring_enqueue_mp(ring, buffer, &entry, sizeof(entry), NULL);
}

CK_CC_INLINE static bool
ck_ring_enqueue_mpmc_size(struct ck_ring *ring,
    struct ck_ring_buffer *buffer,
    const void *entry,
    unsigned int *size)
{

	return _ck_ring_enqueue_mp_size(ring, buffer, &entry, sizeof(entry),
	    size);
}

CK_CC_INLINE static void *
ck_ring_enqueue_reserve_mpmc(struct ck_ring *ring,
    struct ck_ring_buffer *buffer,
    unsigned int *ticket)
{

	return _ck_ring_enqueue_reserve_mp(ring, buffer, sizeof(void *),
	    ticket, NULL);
}

CK_CC_INLINE static void *
ck_ring_enqueue_reserve_mpmc_size(struct ck_ring *ring,
    struct ck_ring_buffer *buffer,
    unsigned int *ticket,
    unsigned int *size)
{

	return _ck_ring_enqueue_reserve_mp(ring, buffer, sizeof(void *),
	    ticket, size);
}

CK_CC_INLINE static void
ck_ring_enqueue_commit_mpmc(struct ck_ring *ring, unsigned int ticket)
{

	_ck_ring_enqueue_commit_mp(ring, ticket);
	return;
}

CK_CC_INLINE static bool
ck_ring_trydequeue_mpmc(struct ck_ring *ring,
    const struct ck_ring_buffer *buffer,
    void *data)
{

	return _ck_ring_trydequeue_mc(ring,
	    buffer, (void **)data, sizeof(void *));
}

CK_CC_INLINE static bool
ck_ring_dequeue_mpmc(struct ck_ring *ring,
    const struct ck_ring_buffer *buffer,
    void *data)
{

	return _ck_ring_dequeue_mc(ring, buffer, (void **)data,
	    sizeof(void *));
}

/*
 * The ck_ring_*_spmc namespace is the public interface for interacting with a
 * ring buffer containing pointers. Correctness is provided for any number of
 * consumers with up to one concurrent producer.
 */
CK_CC_INLINE static void *
ck_ring_enqueue_reserve_spmc_size(struct ck_ring *ring,
    struct ck_ring_buffer *buffer,
    unsigned int *size)
{

	return _ck_ring_enqueue_reserve_sp(ring, buffer, sizeof(void *), size);
}

CK_CC_INLINE static void *
ck_ring_enqueue_reserve_spmc(struct ck_ring *ring,
    struct ck_ring_buffer *buffer)
{

	return _ck_ring_enqueue_reserve_sp(ring, buffer, sizeof(void *), NULL);
}

CK_CC_INLINE static void
ck_ring_enqueue_commit_spmc(struct ck_ring *ring)
{

	_ck_ring_enqueue_commit_sp(ring);
	return;
}

CK_CC_INLINE static bool
ck_ring_enqueue_spmc_size(struct ck_ring *ring,
    struct ck_ring_buffer *buffer,
    const void *entry,
    unsigned int *size)
{

	return _ck_ring_enqueue_sp_size(ring, buffer, &entry,
	    sizeof(entry), size);
}

CK_CC_INLINE static bool
ck_ring_enqueue_spmc(struct ck_ring *ring,
    struct ck_ring_buffer *buffer,
    const void *entry)
{

	return _ck_ring_enqueue_sp(ring, buffer, &entry,
	    sizeof(entry), NULL);
}

CK_CC_INLINE static bool
ck_ring_trydequeue_spmc(struct ck_ring *ring,
    const struct ck_ring_buffer *buffer,
    void *data)
{

	return _ck_ring_trydequeue_mc(ring, buffer, (void **)data, sizeof(void *));
}

CK_CC_INLINE static bool
ck_ring_dequeue_spmc(struct ck_ring *ring,
    const struct ck_ring_buffer *buffer,
    void *data)
{

	return _ck_ring_dequeue_mc(ring, buffer, (void **)data, sizeof(void *));
}

/*
 * The ck_ring_*_mpsc namespace is the public interface for interacting with a
 * ring buffer containing pointers. Correctness is provided for any number of
 * producers with up to one concurrent consumers.
 */
CK_CC_INLINE static void *
ck_ring_enqueue_reserve_mpsc(struct ck_ring *ring,
    struct ck_ring_buffer *buffer,
    unsigned int *ticket)
{

	return _ck_ring_enqueue_reserve_mp(ring, buffer, sizeof(void *),
	    ticket, NULL);
}

CK_CC_INLINE static void *
ck_ring_enqueue_reserve_mpsc_size(struct ck_ring *ring,
    struct ck_ring_buffer *buffer,
    unsigned int *ticket,
    unsigned int *size)
{

	return _ck_ring_enqueue_reserve_mp(ring, buffer, sizeof(void *),
	    ticket, size);
}

CK_CC_INLINE static void
ck_ring_enqueue_commit_mpsc(struct ck_ring *ring, unsigned int ticket)
{

	_ck_ring_enqueue_commit_mp(ring, ticket);
	return;
}

CK_CC_INLINE static bool
ck_ring_enqueue_mpsc(struct ck_ring *ring,
    struct ck_ring_buffer *buffer,
    const void *entry)
{

	return _ck_ring_enqueue_mp(ring, buffer, &entry,
	    sizeof(entry), NULL);
}

CK_CC_INLINE static bool
ck_ring_enqueue_mpsc_size(struct ck_ring *ring,
    struct ck_ring_buffer *buffer,
    const void *entry,
    unsigned int *size)
{

	return _ck_ring_enqueue_mp_size(ring, buffer, &entry,
	    sizeof(entry), size);
}

CK_CC_INLINE static bool
ck_ring_dequeue_mpsc(struct ck_ring *ring,
    const struct ck_ring_buffer *buffer,
    void *data)
{

	return _ck_ring_dequeue_sc(ring, buffer, (void **)data,
	    sizeof(void *));
}

/*
 * CK_RING_PROTOTYPE is used to define a type-safe interface for inlining
 * values of a particular type in the ring the buffer.
 */
#define CK_RING_PROTOTYPE(name, type)				\
CK_CC_INLINE static struct type *				\
ck_ring_enqueue_reserve_spsc_##name(struct ck_ring *a,		\
    struct type *b)						\
{								\
								\
	return _ck_ring_enqueue_reserve_sp(a, b, 		\
	    sizeof(struct type), NULL);				\
}								\
								\
CK_CC_INLINE static struct type *				\
ck_ring_enqueue_reserve_spsc_size_##name(struct ck_ring *a,	\
    struct type *b,						\
    unsigned int *c)						\
{								\
								\
	return _ck_ring_enqueue_reserve_sp(a, b, 		\
	    sizeof(struct type), c);				\
}								\
								\
CK_CC_INLINE static bool					\
ck_ring_enqueue_spsc_size_##name(struct ck_ring *a,		\
    struct type *b,						\
    struct type *c,						\
    unsigned int *d)						\
{								\
								\
	return _ck_ring_enqueue_sp_size(a, b, c,		\
	    sizeof(struct type), d);				\
}								\
								\
CK_CC_INLINE static bool					\
ck_ring_enqueue_spsc_##name(struct ck_ring *a,			\
    struct type *b,						\
    struct type *c)						\
{								\
								\
	return _ck_ring_enqueue_sp(a, b, c,			\
	    sizeof(struct type), NULL);				\
}								\
								\
CK_CC_INLINE static bool					\
ck_ring_dequeue_spsc_##name(struct ck_ring *a,			\
    struct type *b,						\
    struct type *c)						\
{								\
								\
	return _ck_ring_dequeue_sc(a, b, c,			\
	    sizeof(struct type));				\
}								\
								\
CK_CC_INLINE static struct type *				\
ck_ring_enqueue_reserve_spmc_##name(struct ck_ring *a,		\
    struct type *b)						\
{								\
								\
	return _ck_ring_enqueue_reserve_sp(a, b, 		\
	    sizeof(struct type), NULL);				\
}								\
								\
CK_CC_INLINE static struct type *				\
ck_ring_enqueue_reserve_spmc_size_##name(struct ck_ring *a,	\
    struct type *b,						\
    unsigned int *c)						\
{								\
								\
	return _ck_ring_enqueue_reserve_sp(a, b, 		\
	    sizeof(struct type), c);				\
}								\
								\
CK_CC_INLINE static bool					\
ck_ring_enqueue_spmc_size_##name(struct ck_ring *a,		\
    struct type *b,						\
    struct type *c,						\
    unsigned int *d)						\
{								\
								\
	return _ck_ring_enqueue_sp_size(a, b, c,		\
	    sizeof(struct type), d);				\
}								\
								\
CK_CC_INLINE static bool					\
ck_ring_enqueue_spmc_##name(struct ck_ring *a,			\
    struct type *b,						\
    struct type *c)						\
{								\
								\
	return _ck_ring_enqueue_sp(a, b, c,			\
	    sizeof(struct type), NULL);				\
}								\
								\
CK_CC_INLINE static bool					\
ck_ring_trydequeue_spmc_##name(struct ck_ring *a,		\
    struct type *b,						\
    struct type *c)						\
{								\
								\
	return _ck_ring_trydequeue_mc(a,			\
	    b, c, sizeof(struct type));				\
}								\
								\
CK_CC_INLINE static bool					\
ck_ring_dequeue_spmc_##name(struct ck_ring *a,			\
    struct type *b,						\
    struct type *c)						\
{								\
								\
	return _ck_ring_dequeue_mc(a, b, c,			\
	    sizeof(struct type));				\
}								\
								\
CK_CC_INLINE static struct type *				\
ck_ring_enqueue_reserve_mpsc_##name(struct ck_ring *a,		\
    struct type *b,						\
    unsigned int *c)						\
{								\
								\
	return _ck_ring_enqueue_reserve_mp(a, b, 		\
	    sizeof(struct type), c, NULL);			\
}								\
								\
CK_CC_INLINE static struct type *				\
ck_ring_enqueue_reserve_mpsc_size_##name(struct ck_ring *a,	\
    struct type *b,						\
    unsigned int *c,						\
    unsigned int *d)						\
{								\
								\
	return _ck_ring_enqueue_reserve_mp(a, b, 		\
	    sizeof(struct type), c, d);				\
}								\
								\
CK_CC_INLINE static bool					\
ck_ring_enqueue_mpsc_##name(struct ck_ring *a,			\
    struct type *b,						\
    struct type *c)						\
{								\
								\
	return _ck_ring_enqueue_mp(a, b, c,			\
	    sizeof(struct type), NULL);				\
}								\
								\
CK_CC_INLINE static bool					\
ck_ring_enqueue_mpsc_size_##name(struct ck_ring *a,		\
    struct type *b,						\
    struct type *c,						\
    unsigned int *d)						\
{								\
								\
	return _ck_ring_enqueue_mp_size(a, b, c,		\
	    sizeof(struct type), d);				\
}								\
								\
CK_CC_INLINE static bool					\
ck_ring_dequeue_mpsc_##name(struct ck_ring *a,			\
    struct type *b,						\
    struct type *c)						\
{								\
								\
	return _ck_ring_dequeue_sc(a, b, c,			\
	    sizeof(struct type));				\
}								\
								\
CK_CC_INLINE static struct type *				\
ck_ring_enqueue_reserve_mpmc_##name(struct ck_ring *a,		\
    struct type *b,						\
    unsigned int *c)						\
{								\
								\
	return _ck_ring_enqueue_reserve_mp(a, b, 		\
	    sizeof(struct type), c, NULL);			\
}								\
								\
CK_CC_INLINE static struct type *				\
ck_ring_enqueue_reserve_mpmc_size_##name(struct ck_ring *a,	\
    struct type *b,						\
    unsigned int *c,						\
    unsigned int *d)						\
{								\
								\
	return _ck_ring_enqueue_reserve_mp(a, b, 		\
	    sizeof(struct type), c, d);				\
}								\
								\
CK_CC_INLINE static bool					\
ck_ring_enqueue_mpmc_size_##name(struct ck_ring *a,		\
    struct type *b,						\
    struct type *c,						\
    unsigned int *d)						\
{								\
								\
	return _ck_ring_enqueue_mp_size(a, b, c,		\
	    sizeof(struct type), d);				\
}								\
								\
CK_CC_INLINE static bool					\
ck_ring_enqueue_mpmc_##name(struct ck_ring *a,			\
    struct type *b,						\
    struct type *c)						\
{								\
								\
	return _ck_ring_enqueue_mp(a, b, c,			\
	    sizeof(struct type), NULL);				\
}								\
								\
CK_CC_INLINE static bool					\
ck_ring_trydequeue_mpmc_##name(struct ck_ring *a,		\
    struct type *b,						\
    struct type *c)						\
{								\
								\
	return _ck_ring_trydequeue_mc(a,			\
	    b, c, sizeof(struct type));				\
}								\
								\
CK_CC_INLINE static bool					\
ck_ring_dequeue_mpmc_##name(struct ck_ring *a,			\
    struct type *b,						\
    struct type *c)						\
{								\
								\
	return _ck_ring_dequeue_mc(a, b, c,			\
	    sizeof(struct type));				\
}

/*
 * A single producer with one concurrent consumer.
 */
#define CK_RING_ENQUEUE_SPSC(name, a, b, c)			\
	ck_ring_enqueue_spsc_##name(a, b, c)
#define CK_RING_ENQUEUE_SPSC_SIZE(name, a, b, c, d)		\
	ck_ring_enqueue_spsc_size_##name(a, b, c, d)
#define CK_RING_ENQUEUE_RESERVE_SPSC(name, a, b, c)		\
	ck_ring_enqueue_reserve_spsc_##name(a, b, c)
#define CK_RING_ENQUEUE_RESERVE_SPSC_SIZE(name, a, b, c, d)	\
	ck_ring_enqueue_reserve_spsc_size_##name(a, b, c, d)
#define CK_RING_DEQUEUE_SPSC(name, a, b, c)			\
	ck_ring_dequeue_spsc_##name(a, b, c)

/*
 * A single producer with any number of concurrent consumers.
 */
#define CK_RING_ENQUEUE_SPMC(name, a, b, c)			\
	ck_ring_enqueue_spmc_##name(a, b, c)
#define CK_RING_ENQUEUE_SPMC_SIZE(name, a, b, c, d)		\
	ck_ring_enqueue_spmc_size_##name(a, b, c, d)
#define CK_RING_ENQUEUE_RESERVE_SPMC(name, a, b, c)		\
	ck_ring_enqueue_reserve_spmc_##name(a, b, c)
#define CK_RING_ENQUEUE_RESERVE_SPMC_SIZE(name, a, b, c, d)	\
	ck_ring_enqueue_reserve_spmc_size_##name(a, b, c, d)
#define CK_RING_TRYDEQUEUE_SPMC(name, a, b, c)			\
	ck_ring_trydequeue_spmc_##name(a, b, c)
#define CK_RING_DEQUEUE_SPMC(name, a, b, c)			\
	ck_ring_dequeue_spmc_##name(a, b, c)

/*
 * Any number of concurrent producers with up to one
 * concurrent consumer.
 */
#define CK_RING_ENQUEUE_MPSC(name, a, b, c)			\
	ck_ring_enqueue_mpsc_##name(a, b, c)
#define CK_RING_ENQUEUE_MPSC_SIZE(name, a, b, c, d)		\
	ck_ring_enqueue_mpsc_size_##name(a, b, c, d)
#define CK_RING_ENQUEUE_RESERVE_MPSC(name, a, b, c)		\
	ck_ring_enqueue_reserve_mpsc_##name(a, b, c)
#define CK_RING_ENQUEUE_RESERVE_MPSC_SIZE(name, a, b, c, d)	\
	ck_ring_enqueue_reserve_mpsc_size_##name(a, b, c, d)
#define CK_RING_DEQUEUE_MPSC(name, a, b, c)			\
	ck_ring_dequeue_mpsc_##name(a, b, c)

/*
 * Any number of concurrent producers and consumers.
 */
#define CK_RING_ENQUEUE_MPMC(name, a, b, c)			\
	ck_ring_enqueue_mpmc_##name(a, b, c)
#define CK_RING_ENQUEUE_MPMC_SIZE(name, a, b, c, d)		\
	ck_ring_enqueue_mpmc_size_##name(a, b, c, d)
#define CK_RING_ENQUEUE_RESERVE_MPMC(name, a, b, c)		\
	ck_ring_enqueue_reserve_mpmc_##name(a, b, c)
#define CK_RING_ENQUEUE_RESERVE_MPMC_SIZE(name, a, b, c, d)	\
	ck_ring_enqueue_reserve_mpmc_size_##name(a, b, c, d)
#define CK_RING_TRYDEQUEUE_MPMC(name, a, b, c)			\
	ck_ring_trydequeue_mpmc_##name(a, b, c)
#define CK_RING_DEQUEUE_MPMC(name, a, b, c)			\
	ck_ring_dequeue_mpmc_##name(a, b, c)

#endif /* CK_RING_H */