1 /* SPDX-License-Identifier: GPL-2.0 */
3 * Copyright (C) 2019-2022 Red Hat, Inc. Daniel Bristot de Oliveira <bristot@kernel.org>
5 * Helper functions to facilitate the instrumentation of auto-generated
6 * RV monitors create by dot2k.
8 * The dot2k tool is available at tools/verification/dot2/
11 #include <linux/ftrace.h>
14 * rv_attach_trace_probe - check and attach a handler function to a tracepoint
16 #define rv_attach_trace_probe(monitor, tp, rv_handler) \
18 check_trace_callback_type_##tp(rv_handler); \
19 WARN_ONCE(register_trace_##tp(rv_handler, NULL), \
20 "fail attaching " #monitor " " #tp "handler"); \
24 * rv_detach_trace_probe - detach a handler function to a tracepoint
26 #define rv_detach_trace_probe(monitor, tp, rv_handler) \
28 unregister_trace_##tp(rv_handler, NULL); \