Fix: add missing padding for UST filter
[lttng-tools.git] / src / common / sessiond-comm / sessiond-comm.h
index 991cf7017eeb4c85e43c0f294e9e538387765158..6f75a11132bddb52462d74dc87a6e2d3cb41cbd8 100644 (file)
@@ -214,10 +214,12 @@ struct lttcomm_session_msg {
  * bytecode. It is made of tuples: (uint16_t, var. len. string). It
  * starts at reloc_table_offset.
  */
+#define LTTNG_FILTER_PADDING   32
 struct lttng_filter_bytecode {
        uint32_t len;   /* len of data */
        uint32_t reloc_table_offset;
        uint64_t seqnum;
+       char padding[LTTNG_FILTER_PADDING];
        char data[0];
 };
 
This page took 0.023176 seconds and 4 git commands to generate.