Add `interpreter_funcs` to `lttng_bytecode_runtime`
[lttng-modules.git] / include / lttng / events.h
index 517d689b049f05d679fa4a205da31d2b20cb1e10..bb3f9363f3d346d45e41ef054269bb8512df4101 100644 (file)
@@ -249,20 +249,22 @@ struct lttng_bytecode_node {
 };
 
 /*
- * Filter return value masks.
+ * Bytecode interpreter return value masks.
  */
-enum lttng_filter_ret {
-       LTTNG_FILTER_DISCARD = 0,
-       LTTNG_FILTER_RECORD_FLAG = (1ULL << 0),
+enum lttng_bytecode_interpreter_ret {
+       LTTNG_INTERPRETER_DISCARD = 0,
+       LTTNG_INTERPRETER_RECORD_FLAG = (1ULL << 0),
        /* Other bits are kept for future use. */
 };
 
 struct lttng_bytecode_runtime {
        /* Associated bytecode */
        struct lttng_bytecode_node *bc;
-       uint64_t (*filter)(void *filter_data,
-                       struct lttng_probe_ctx *lttng_probe_ctx,
-                       const char *filter_stack_data);
+       union {
+               uint64_t (*filter)(void *filter_data,
+                               struct lttng_probe_ctx *lttng_probe_ctx,
+                               const char *filter_stack_data);
+       } interpreter_funcs;
        int link_failed;
        struct list_head node;  /* list of bytecode runtime in event */
        struct lttng_ctx *ctx;
@@ -893,7 +895,6 @@ static inline int lttng_syscall_filter_disable_event_notifier(
 
 #endif
 
-void lttng_filter_sync_state(struct lttng_bytecode_runtime *runtime);
 int lttng_event_enabler_attach_filter_bytecode(struct lttng_event_enabler *event_enabler,
                struct lttng_kernel_filter_bytecode __user *bytecode);
 int lttng_event_notifier_enabler_attach_filter_bytecode(
This page took 0.024668 seconds and 4 git commands to generate.