Command to make a directory on the consumer or relay
[lttng-tools.git] / src / common / sessiond-comm / sessiond-comm.h
index f6179f31dc5132838516b5c75021d32eeecd6ada..5cd926e6f10ce8e857ecd75dc73de027d89a407b 100644 (file)
@@ -123,6 +123,8 @@ enum lttcomm_relayd_command {
        RELAYD_STREAMS_SENT                 = 16,
        /* Ask the relay to reset the metadata trace file (2.8+) */
        RELAYD_RESET_METADATA               = 17,
+       /* Create a folder on the relayd FS (2.11+) */
+       RELAYD_MKDIR                        = 21,
 };
 
 /*
@@ -482,6 +484,7 @@ struct lttcomm_consumer_msg {
                         * because the application can be in the tracing for instance.
                         */
                        uint32_t ust_app_uid;
+                       int64_t blocking_timeout;
                        char root_shm_path[PATH_MAX];
                        char shm_path[PATH_MAX];
                } LTTNG_PACKED ask_channel;
@@ -533,6 +536,13 @@ struct lttcomm_consumer_msg {
                struct {
                        uint64_t session_id;
                } LTTNG_PACKED regenerate_metadata;
+               struct {
+                       char path[LTTNG_PATH_MAX];
+                       uint64_t relayd_id; /* Relayd id if apply. */
+                       uint64_t session_id;
+                       uint32_t uid;
+                       uint32_t gid;
+               } LTTNG_PACKED mkdir;
        } u;
 } LTTNG_PACKED;
 
This page took 0.025807 seconds and 5 git commands to generate.