Fix: update back the metadata len sent on failure
[lttng-tools.git] / src / bin / lttng-sessiond / ust-app.c
index 58b8080b56dff398d82e7262257e770682f1afcc..94aa62a5c918e959a6132655b177f91507412c40 100644 (file)
@@ -478,6 +478,11 @@ push_data:
                if (ret == -LTTCOMM_CONSUMERD_CHANNEL_FAIL) {
                        ret = 0;
                }
+
+               /* Update back the actual metadata len sent since it failed here. */
+               pthread_mutex_lock(&registry->lock);
+               registry->metadata_len_sent -= len;
+               pthread_mutex_unlock(&registry->lock);
                ret_val = ret;
                goto error_push;
        }
This page took 0.023069 seconds and 4 git commands to generate.