Cleanup: remove "disabled" flag for new release cycle
authorMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Wed, 12 Nov 2014 23:12:35 +0000 (18:12 -0500)
committerMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Wed, 12 Nov 2014 23:15:08 +0000 (18:15 -0500)
Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
include/lttng/ust-abi.h
liblttng-ust-ctl/ustctl.c
liblttng-ust/lttng-events.c

index 797a06b6e5e33d1e94552bdb9dffdf4fd0ac9df2..8c2469e42a2a7194449e796f57095718d0db0232 100644 (file)
@@ -98,7 +98,7 @@ struct lttng_ust_stream {
         */
 } LTTNG_PACKED;
 
-#define LTTNG_UST_EVENT_PADDING1       15
+#define LTTNG_UST_EVENT_PADDING1       16
 #define LTTNG_UST_EVENT_PADDING2       (LTTNG_UST_SYM_NAME_LEN + 32)
 struct lttng_ust_event {
        enum lttng_ust_instrumentation instrumentation;
@@ -106,7 +106,6 @@ struct lttng_ust_event {
 
        enum lttng_ust_loglevel_type loglevel_type;
        int loglevel;   /* value, -1: all */
-       char disabled;
        char padding[LTTNG_UST_EVENT_PADDING1];
 
        /* Per instrumentation type configuration */
index 195f29c03cd211eac3a3fc354e56cd88a574dc4a..49ae3e6cf94dfc12f6ae32c176841d8a8e71cc79 100644 (file)
@@ -200,7 +200,6 @@ int ustctl_create_event(int sock, struct lttng_ust_event *ev,
        lum.u.event.instrumentation = ev->instrumentation;
        lum.u.event.loglevel_type = ev->loglevel_type;
        lum.u.event.loglevel = ev->loglevel;
-       lum.u.event.disabled = ev->disabled;
        ret = ustcomm_send_app_cmd(sock, &lum, &lur);
        if (ret) {
                free(event_data);
index 8bdb743d93da21c0f8f1af62dcab2018956fa876..939dcd8627f340793d838140a20a24bc847c77dc 100644 (file)
@@ -746,16 +746,7 @@ struct lttng_enabler *lttng_enabler_create(enum lttng_enabler_type type,
                sizeof(enabler->event_param));
        enabler->chan = chan;
        /* ctx left NULL */
-       /*
-        * The "disable" event create comm field has been added to fix a
-        * race between event creation (of a started trace) and enabling
-        * filtering. New session daemon always set the "disable" field
-        * to 1, and are aware that they need to explicitly enable the
-        * event. Older session daemon (within same ABI) leave it at 0,
-        * and therefore we need to enable it here, keeping the original
-        * racy behavior.
-        */
-       enabler->enabled = !event_param->disabled;
+       enabler->enabled = 0;
        cds_list_add(&enabler->node, &enabler->chan->session->enablers_head);
        lttng_session_lazy_sync_enablers(enabler->chan->session);
        return enabler;
This page took 0.028007 seconds and 4 git commands to generate.