Remove unneeded RCU lock
[lttng-tools.git] / src / bin / lttng-sessiond / agent.c
index e68b680c2b866cdea2e11a9d537449ad6ff40567..ca2d4c872931632f4e5d46cb9c6b17b6b3d0d8ed 100644 (file)
@@ -716,10 +716,7 @@ void agent_add_app(struct agent_app *app)
        assert(app);
 
        DBG3("Agent adding app sock: %d and pid: %d to ht", app->sock->fd, app->pid);
-
-       rcu_read_lock();
        lttng_ht_add_unique_ulong(agent_apps_ht_by_sock, &app->node);
-       rcu_read_unlock();
 }
 
 /*
@@ -792,9 +789,7 @@ void agent_add(struct agent *agt, struct lttng_ht *ht)
 
        DBG3("Agent adding from domain %d", agt->domain);
 
-       rcu_read_lock();
        lttng_ht_add_unique_u64(ht, &agt->node);
-       rcu_read_unlock();
 }
 
 /*
This page took 0.02289 seconds and 4 git commands to generate.