From: Mathieu Desnoyers Date: Mon, 3 May 2021 16:22:15 +0000 (-0400) Subject: Move id tracker hash node to private header X-Git-Tag: v2.13.0-rc2~41 X-Git-Url: https://git.lttng.org/?p=lttng-modules.git;a=commitdiff_plain;h=6e662c2871e93ac708065ac028047e527c16b100 Move id tracker hash node to private header Signed-off-by: Mathieu Desnoyers Change-Id: I0b0cdb345a24f72a17a84a48a5f28acca72441bb --- diff --git a/include/lttng/events-internal.h b/include/lttng/events-internal.h index f9d02f3e..17719887 100644 --- a/include/lttng/events-internal.h +++ b/include/lttng/events-internal.h @@ -410,6 +410,11 @@ struct lttng_kernel_session_private { char creation_time[LTTNG_KERNEL_ABI_SESSION_CREATION_TIME_ISO8601_LEN]; }; +struct lttng_id_hash_node { + struct hlist_node hlist; + int id; +}; + extern struct lttng_kernel_ctx *lttng_static_ctx; static inline diff --git a/include/lttng/events.h b/include/lttng/events.h index b36ce08c..c6c46b4a 100644 --- a/include/lttng/events.h +++ b/include/lttng/events.h @@ -472,11 +472,6 @@ struct lttng_id_tracker { struct lttng_id_tracker_rcu *p; /* RCU dereferenced. */ }; -struct lttng_id_hash_node { - struct hlist_node hlist; - int id; -}; - struct lttng_kernel_session_private; struct lttng_kernel_session {