X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=src%2Fcommon%2Fsessiond-comm%2Fsessiond-comm.h;h=62205f4c91d0b001ce63bd772707da65135a84f5;hp=32ce38430af115fbf4303249eaa2684c52654ae3;hb=d93c4f1ffcffa73102e3299276f2f83951a68c36;hpb=5ddb0a08c5c3ca917b025032b864d78e53c7c68a diff --git a/src/common/sessiond-comm/sessiond-comm.h b/src/common/sessiond-comm/sessiond-comm.h index 32ce38430..62205f4c9 100644 --- a/src/common/sessiond-comm/sessiond-comm.h +++ b/src/common/sessiond-comm/sessiond-comm.h @@ -208,7 +208,7 @@ struct lttcomm_session_msg { } u; }; -#define LTTNG_FILTER_MAX_LEN 65336 +#define LTTNG_FILTER_MAX_LEN 65536 /* * Filter bytecode data. The reloc table is located at the end of the @@ -216,8 +216,8 @@ struct lttcomm_session_msg { * starts at reloc_table_offset. */ struct lttng_filter_bytecode { - uint16_t len; /* len of data */ - uint16_t reloc_table_offset; + uint32_t len; /* len of data */ + uint32_t reloc_table_offset; char data[0]; };