summaryrefslogtreecommitdiffstats
path: root/sys/compat/svr4
diff options
context:
space:
mode:
authorjhb <jhb@FreeBSD.org>2001-01-23 21:07:16 +0000
committerjhb <jhb@FreeBSD.org>2001-01-23 21:07:16 +0000
commit6ebef802b2dd48f691c8cbe4426a1d3184748405 (patch)
tree45ff2ad127f9e1fd878ccb705ebc2c332f1f3649 /sys/compat/svr4
parentc318d324943d5dc1bdf65fdac1348136715c8638 (diff)
downloadFreeBSD-src-6ebef802b2dd48f691c8cbe4426a1d3184748405.zip
FreeBSD-src-6ebef802b2dd48f691c8cbe4426a1d3184748405.tar.gz
- Use proper atomic operations to make the run time initialization
controlled by svr_str_initialized be MP safe.
Diffstat (limited to 'sys/compat/svr4')
-rw-r--r--sys/compat/svr4/svr4_socket.c30
1 files changed, 20 insertions, 10 deletions
diff --git a/sys/compat/svr4/svr4_socket.c b/sys/compat/svr4/svr4_socket.c
index 9757d29..66c8c24 100644
--- a/sys/compat/svr4/svr4_socket.c
+++ b/sys/compat/svr4/svr4_socket.c
@@ -84,17 +84,19 @@ svr4_find_socket(p, fp, dev, ino)
struct svr4_sockcache_entry *e;
void *cookie = ((struct socket *) fp->f_data)->so_emuldata;
- if (!svr4_str_initialized) {
- DPRINTF(("svr4_find_socket: uninitialized [%p,%d,%d]\n",
- p, dev, ino));
- TAILQ_INIT(&svr4_head);
- svr4_str_initialized = 1;
+ if (svr4_str_initialized != 2) {
+ if (atomic_cmpset_acq_int(&svr4_str_initialized, 0, 1)) {
+ DPRINTF(("svr4_find_socket: uninitialized [%p,%d,%d]\n",
+ p, dev, ino));
+ TAILQ_INIT(&svr4_head);
+ atomic_store_rel(&svr4_str_initialized, 2);
+ }
return NULL;
}
DPRINTF(("svr4_find_socket: [%p,%d,%d]: ", p, dev, ino));
- for (e = svr4_head.tqh_first; e != NULL; e = e->entries.tqe_next)
+ TAILQ_FOREACH(e, &svr4_head, entries)
if (e->p == p && e->dev == dev && e->ino == ino) {
#ifdef DIAGNOSTIC
if (e->cookie != NULL && e->cookie != cookie)
@@ -123,10 +125,18 @@ svr4_add_socket(p, path, st)
struct svr4_sockcache_entry *e;
int len, error;
- if (!svr4_str_initialized) {
- TAILQ_INIT(&svr4_head);
- svr4_str_initialized = 1;
- }
+ /*
+ * Wait for the TAILQ to be initialized. Only the very first CPU
+ * will succeed on the atomic_cmpset(). The other CPU's will spin
+ * until the first one finishes the initialization. Once the
+ * initialization is complete, the condition will always fail
+ * avoiding expensive atomic operations in the common case.
+ */
+ while (svr4_str_initialized != 2)
+ if (atomic_cmpset_acq_int(&svr4_str_initialized, 0, 1)) {
+ TAILQ_INIT(&svr4_head);
+ atomic_store_rel_int(&svr4_str_initialized, 2);
+ }
e = malloc(sizeof(*e), M_TEMP, M_WAITOK);
e->cookie = NULL;
OpenPOWER on IntegriCloud