From 9a1d0634d1a6a7e205ad5e2da05fcfeb0f32ccee Mon Sep 17 00:00:00 2001 From: Mathieu Desnoyers Date: Wed, 12 May 2021 15:48:27 -0400 Subject: [PATCH] Fix: add missing fields in struct lttng_ust_abi_channel_config struct lttng_ust_abi_channel_config is meant to have the same binary layout as struct lttng_channel in lttng-ust 2.12. Some fields were removed (and should not be). Signed-off-by: Mathieu Desnoyers Change-Id: I8c520b53e2c94244dcdb188fc3214e7cec72e876 --- src/common/events.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/common/events.h b/src/common/events.h index fdf95aed..338573a9 100644 --- a/src/common/events.h +++ b/src/common/events.h @@ -408,10 +408,13 @@ struct lttng_ust_abi_channel_config { void *unused3; void *unused4; int unused5; + unsigned int _deprecated1; + unsigned int _deprecated2; struct cds_list_head unused6; void *unused7; int unused8; void *unused9; + unsigned int _deprecated3:1; /* Channel ID */ unsigned int id; -- 2.34.1