1 /* SPDX-License-Identifier: GPL-2.0 */ 2 #undef TRACE_SYSTEM 3 #define TRACE_SYSTEM fuse 4 #undef TRACE_INCLUDE_PATH 5 #define TRACE_INCLUDE_PATH trace/hooks 6 #if !defined(_TRACE_HOOK_FUSE_H) || defined(TRACE_HEADER_MULTI_READ) 7 #define _TRACE_HOOK_FUSE_H 8 #include <trace/hooks/vendor_hooks.h> 9 /* 10 * Following tracepoints are not exported in tracefs and provide a 11 * mechanism for vendor modules to hook and extend functionality 12 */ 13 14 struct wait_queue_head; 15 DECLARE_HOOK(android_vh_fuse_request_send, 16 TP_PROTO(struct wait_queue_head *wq_head), 17 TP_ARGS(wq_head)); 18 DECLARE_HOOK(android_vh_fuse_request_end, 19 TP_PROTO(struct task_struct *self), 20 TP_ARGS(self)); 21 22 #endif /* _TRACE_HOOK_FUSE_H */ 23 /* This part must be outside protection */ 24 #include <trace/define_trace.h> 25