From: Jonathan Rajotte Date: Thu, 14 May 2020 16:44:38 +0000 (-0400) Subject: UST abi: add `struct lttng_ust_capture_bytecode` X-Git-Tag: v2.13.0-rc1~242 X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=commitdiff_plain;h=1a3d8cf37eaa418f7c4a7629cd9fe058db3d1054 UST abi: add `struct lttng_ust_capture_bytecode` Signed-off-by: Jonathan Rajotte Signed-off-by: Jérémie Galarneau Change-Id: I512bb3c5e0232f70b860d33c72d61176303146bc Depends-on: lttng-ust: I5a800fc92e588c2a6a0e26282b0ad5f31c044479 --- diff --git a/src/bin/lttng-sessiond/ust-abi-internal.h b/src/bin/lttng-sessiond/ust-abi-internal.h index 3892a7f5d..0f12be083 100644 --- a/src/bin/lttng-sessiond/ust-abi-internal.h +++ b/src/bin/lttng-sessiond/ust-abi-internal.h @@ -263,6 +263,16 @@ struct lttng_ust_filter_bytecode { char data[0]; } LTTNG_PACKED; +#define CAPTURE_BYTECODE_MAX_LEN 65536 +#define LTTNG_UST_CAPTURE_PADDING 32 +struct lttng_ust_capture_bytecode { + uint32_t len; + uint32_t reloc_offset; + uint64_t seqnum; + char padding[LTTNG_UST_CAPTURE_PADDING]; + char data[0]; +} LTTNG_PACKED; + #define LTTNG_UST_EXCLUSION_PADDING 32 struct lttng_ust_event_exclusion { uint32_t count;