Fix: Accept bytecode of length 65536 bytes
[lttng-tools.git] / src / bin / lttng-sessiond / lttng-ust-abi.h
index d8b10c257039effd035a9c7edc04fd4fba356d6f..504c0607824b4eb392824d9f192e19b033438329 100644 (file)
@@ -168,10 +168,10 @@ struct lttng_ust_calibrate {
        } u;
 };
 
-#define FILTER_BYTECODE_MAX_LEN                65535
+#define FILTER_BYTECODE_MAX_LEN                65536
 struct lttng_ust_filter_bytecode {
-       uint16_t len;
-       uint16_t reloc_offset;
+       uint32_t len;
+       uint32_t reloc_offset;
        char data[0];
 };
 
This page took 0.026448 seconds and 4 git commands to generate.