diff mbox series

[ovs-dev,RFC,18/26] dpif-netdev: Use seq-pool for mark allocation

Message ID 5a98617b820e273c00efa167fddd55195a1fdd49.1607177117.git.grive@u256.net
State RFC
Headers show
Series [ovs-dev,RFC,01/26] netdev: Add flow API de-init function | expand

Commit Message

Gaetan Rivet Dec. 5, 2020, 2:22 p.m. UTC
Change the flow mark pool to seq-pool.
Use the netdev-offload multithread API to allow multiple thread
allocating marks concurrently.
Initialize only once the pool in a multithread context by using
the ovsthread_once type.

Signed-off-by: Gaetan Rivet <grive@u256.net>
---
 lib/dpif-netdev.c | 17 ++++++++++++-----
 1 file changed, 12 insertions(+), 5 deletions(-)
diff mbox series

Patch

diff --git a/lib/dpif-netdev.c b/lib/dpif-netdev.c
index ea9d66580..daf8fb249 100644
--- a/lib/dpif-netdev.c
+++ b/lib/dpif-netdev.c
@@ -74,6 +74,7 @@ 
 #include "pvector.h"
 #include "random.h"
 #include "seq.h"
+#include "seq-pool.h"
 #include "smap.h"
 #include "sset.h"
 #include "timeval.h"
@@ -2413,7 +2414,7 @@  struct megaflow_to_mark_data {
 struct flow_mark {
     struct cmap megaflow_to_mark;
     struct cmap mark_to_flow;
-    struct id_pool *pool;
+    struct seq_pool *pool;
 };
 
 static struct flow_mark flow_mark = {
@@ -2424,14 +2425,18 @@  static struct flow_mark flow_mark = {
 static uint32_t
 flow_mark_alloc(void)
 {
+    static struct ovsthread_once pool_init = OVSTHREAD_ONCE_INITIALIZER;
+    unsigned int tid = netdev_offload_thread_id();
     uint32_t mark;
 
-    if (!flow_mark.pool) {
+    if (ovsthread_once_start(&pool_init)) {
         /* Haven't initiated yet, do it here */
-        flow_mark.pool = id_pool_create(1, MAX_FLOW_MARK);
+        flow_mark.pool = seq_pool_create(netdev_offload_thread_nb(),
+                                         1, MAX_FLOW_MARK);
+        ovsthread_once_done(&pool_init);
     }
 
-    if (id_pool_alloc_id(flow_mark.pool, &mark)) {
+    if (seq_pool_new_id(flow_mark.pool, tid, &mark)) {
         return mark;
     }
 
@@ -2441,7 +2446,9 @@  flow_mark_alloc(void)
 static void
 flow_mark_free(uint32_t mark)
 {
-    id_pool_free_id(flow_mark.pool, mark);
+    unsigned int tid = netdev_offload_thread_id();
+
+    seq_pool_free_id(flow_mark.pool, tid, mark);
 }
 
 /* associate megaflow with a mark, which is a 1:1 mapping */