Update following loglevel support UST API change
[lttng-tools.git] / lttng-sessiond / ust-app.c
index 7276cbb63755113512bfd97e69da8b945c66f0b7..69164126beafbe15e276a7f694bc5dc2045cd7b9 100644 (file)
@@ -1136,7 +1136,9 @@ int create_ust_app_event(struct ust_app_session *ua_sess,
        /* Create it on the tracer side */
        ret = create_ust_event(app, ua_sess, ua_chan, ua_event);
        if (ret < 0) {
+               rcu_read_lock();
                delete_ust_app_event(app->key.sock, ua_event);
+               rcu_read_unlock();
                goto error;
        }
 
@@ -1370,6 +1372,8 @@ int ust_app_list_events(struct lttng_event **events)
        rcu_read_lock();
 
        cds_lfht_for_each_entry(ust_app_ht, &iter, app, node) {
+               struct lttng_ust_tracepoint_iter iter;
+
                handle = ustctl_tracepoint_list(app->key.sock);
                if (handle < 0) {
                        ERR("UST app list events getting handle failed for app pid %d",
@@ -1378,7 +1382,9 @@ int ust_app_list_events(struct lttng_event **events)
                }
 
                while ((ret = ustctl_tracepoint_list_get(app->key.sock, handle,
-                                               tmp[count].name)) != -ENOENT) {
+                                               &iter)) != -ENOENT) {
+                       memcpy(tmp[count].name, iter.name, LTTNG_UST_SYM_NAME_LEN);
+                       /* TODO : get loglevel too */
                        if (count > nbmem) {
                                DBG2("Reallocating event list from %zu to %zu bytes", nbmem,
                                                nbmem + UST_APP_EVENT_LIST_SIZE);
This page took 0.023011 seconds and 4 git commands to generate.