MINOR: memory: Only init the pool spinlock once.
In pool_create(), only initialize the pool spinlock if we just created the
pool, in the event we're reusing it, there's no need to initialize it again.
diff --git a/src/memory.c b/src/memory.c
index 24d709f..adc2938 100644
--- a/src/memory.c
+++ b/src/memory.c
@@ -139,11 +139,11 @@
for (thr = 0; thr < MAX_THREADS; thr++)
pool_cache[thr][idx].size = size;
}
- }
- pool->users++;
#ifndef CONFIG_HAP_LOCKLESS_POOLS
- HA_SPIN_INIT(&pool->lock);
+ HA_SPIN_INIT(&pool->lock);
#endif
+ }
+ pool->users++;
return pool;
}