aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/mpmc_ptr_ring.h
diff options
context:
space:
mode:
authorJonathan Neuschäfer <j.neuschaefer@gmx.net>2018-05-31 17:36:30 +0200
committerJason A. Donenfeld <Jason@zx2c4.com>2018-06-04 20:29:48 +0200
commitb3fbf6e60b2d157d2a298abe81394649309a5a03 (patch)
tree3460fa799f98bb4fd880495ad2230de6c559fbad /src/mpmc_ptr_ring.h
parentmpmc_ptr_ring: Place producer_head and producer_tail in the same cacheline (diff)
downloadwireguard-monolithic-historical-b3fbf6e60b2d157d2a298abe81394649309a5a03.tar.xz
wireguard-monolithic-historical-b3fbf6e60b2d157d2a298abe81394649309a5a03.zip
messages: Ensure that there are more queue slots than CPUs
I'm not completely sure about this. It also doesn't fix all the errors: sometimes the test suite reports that it fails to send packets.
Diffstat (limited to 'src/mpmc_ptr_ring.h')
-rw-r--r--src/mpmc_ptr_ring.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mpmc_ptr_ring.h b/src/mpmc_ptr_ring.h
index 8c9c28c..267d10d 100644
--- a/src/mpmc_ptr_ring.h
+++ b/src/mpmc_ptr_ring.h
@@ -134,6 +134,9 @@ static inline void *mpmc_ptr_ring_consume(struct mpmc_ptr_ring *r)
return element;
}
+/*
+ * Warning: size must be greater than the number of concurrent consumers
+ */
static inline int mpmc_ptr_ring_init(struct mpmc_ptr_ring *r, int size, gfp_t gfp)
{
if (WARN_ONCE(!is_power_of_2(size), "size must be a power of two"))