DPDK  21.08.0
rte_pflock.h
Go to the documentation of this file.
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2021 Microsoft Corp.
3  * All rights reserved.
4  *
5  * Derived from Concurrency Kit
6  * Copyright 2011-2015 Samy Al Bahra.
7  */
8 
9 #ifndef _RTE_PFLOCK_H_
10 #define _RTE_PFLOCK_H_
11 
30 #ifdef __cplusplus
31 extern "C" {
32 #endif
33 
34 #include <rte_common.h>
35 #include <rte_pause.h>
36 
40 struct rte_pflock {
41  struct {
42  uint16_t in;
43  uint16_t out;
44  } rd, wr;
45 };
46 typedef struct rte_pflock rte_pflock_t;
47 
48 /*
49  * Allocation of bits to reader
50  *
51  * 15 4 3 2 1 0
52  * +-------------------+---+-+-+
53  * | rin: reads issued |x|x| | |
54  * +-------------------+---+-+-+
55  * ^ ^
56  * | |
57  * PRES: writer present ----/ |
58  * PHID: writer phase id -----/
59  *
60  * 15 4 3 2 1 0
61  * +------------------+------+
62  * |rout:read complete|unused|
63  * +------------------+------+
64  *
65  * The maximum number of readers is 4095
66  */
67 
68 /* Constants used to map the bits in reader counter */
69 #define RTE_PFLOCK_WBITS 0x3 /* Writer bits in reader. */
70 #define RTE_PFLOCK_PRES 0x2 /* Writer present bit. */
71 #define RTE_PFLOCK_PHID 0x1 /* Phase ID bit. */
72 #define RTE_PFLOCK_LSB 0xFFF0 /* reader bits. */
73 #define RTE_PFLOCK_RINC 0x10 /* Reader increment. */
74 
78 #define RTE_PFLOCK_INITIALIZER { }
79 
89 __rte_experimental
90 static inline void
92 {
93  pf->rd.in = 0;
94  pf->rd.out = 0;
95  pf->wr.in = 0;
96  pf->wr.out = 0;
97 }
98 
108 __rte_experimental
109 static inline void
110 rte_pflock_read_lock(rte_pflock_t *pf)
111 {
112  uint16_t w;
113 
114  /*
115  * If no writer is present, then the operation has completed
116  * successfully.
117  */
118  w = __atomic_fetch_add(&pf->rd.in, RTE_PFLOCK_RINC, __ATOMIC_ACQUIRE)
119  & RTE_PFLOCK_WBITS;
120  if (w == 0)
121  return;
122 
123  /* Wait for current write phase to complete. */
124  while ((__atomic_load_n(&pf->rd.in, __ATOMIC_ACQUIRE)
125  & RTE_PFLOCK_WBITS) == w)
126  rte_pause();
127 }
128 
138 __rte_experimental
139 static inline void
140 rte_pflock_read_unlock(rte_pflock_t *pf)
141 {
142  __atomic_fetch_add(&pf->rd.out, RTE_PFLOCK_RINC, __ATOMIC_RELEASE);
143 }
144 
154 __rte_experimental
155 static inline void
156 rte_pflock_write_lock(rte_pflock_t *pf)
157 {
158  uint16_t ticket, w;
159 
160  /* Acquire ownership of write-phase.
161  * This is same as rte_tickelock_lock().
162  */
163  ticket = __atomic_fetch_add(&pf->wr.in, 1, __ATOMIC_RELAXED);
164  rte_wait_until_equal_16(&pf->wr.out, ticket, __ATOMIC_ACQUIRE);
165 
166  /*
167  * Acquire ticket on read-side in order to allow them
168  * to flush. Indicates to any incoming reader that a
169  * write-phase is pending.
170  *
171  * The load of rd.out in wait loop could be executed
172  * speculatively.
173  */
174  w = RTE_PFLOCK_PRES | (ticket & RTE_PFLOCK_PHID);
175  ticket = __atomic_fetch_add(&pf->rd.in, w, __ATOMIC_RELAXED);
176 
177  /* Wait for any pending readers to flush. */
178  rte_wait_until_equal_16(&pf->rd.out, ticket, __ATOMIC_ACQUIRE);
179 }
180 
190 __rte_experimental
191 static inline void
192 rte_pflock_write_unlock(rte_pflock_t *pf)
193 {
194  /* Migrate from write phase to read phase. */
195  __atomic_fetch_and(&pf->rd.in, RTE_PFLOCK_LSB, __ATOMIC_RELEASE);
196 
197  /* Allow other writers to continue. */
198  __atomic_fetch_add(&pf->wr.out, 1, __ATOMIC_RELEASE);
199 }
200 
201 #ifdef __cplusplus
202 }
203 #endif
204 
205 #endif /* RTE_PFLOCK_H */
static __rte_experimental void rte_pflock_write_lock(rte_pflock_t *pf)
Definition: rte_pflock.h:156
static __rte_experimental void rte_pflock_init(struct rte_pflock *pf)
Definition: rte_pflock.h:91
static __rte_experimental void rte_pflock_read_unlock(rte_pflock_t *pf)
Definition: rte_pflock.h:140
static __rte_experimental void rte_pflock_read_lock(rte_pflock_t *pf)
Definition: rte_pflock.h:110
static void rte_pause(void)
static __rte_experimental void rte_pflock_write_unlock(rte_pflock_t *pf)
Definition: rte_pflock.h:192
static __rte_always_inline void rte_wait_until_equal_16(volatile uint16_t *addr, uint16_t expected, int memorder)
Definition: rte_pause.h:86