4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 * or http://www.opensolaris.org/os/licensing.
10 * See the License for the specific language governing permissions
11 * and limitations under the License.
13 * When distributing Covered Code, include this CDDL HEADER in each
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 * If applicable, add the following below this CDDL HEADER, with the
16 * fields enclosed by brackets "[]" replaced with your own identifying
17 * information: Portions Copyright [yyyy] [name of copyright owner]
23 #if defined(HAVE_DECLARE_EVENT_CLASS)
26 #define TRACE_SYSTEM zfs
28 #undef TRACE_SYSTEM_VAR
29 #define TRACE_SYSTEM_VAR zfs_zrlock
31 #if !defined(_TRACE_ZRLOCK_H) || defined(TRACE_HEADER_MULTI_READ)
32 #define _TRACE_ZRLOCK_H
34 #include <linux/tracepoint.h>
35 #include <sys/types.h>
38 * Generic support for two argument tracepoints of the form:
45 DECLARE_EVENT_CLASS(zfs_zrlock_class
,
46 TP_PROTO(zrlock_t
*zrl
, kthread_t
*owner
, uint32_t n
),
47 TP_ARGS(zrl
, owner
, n
),
49 __field(int32_t, refcount
)
51 __field(pid_t
, owner_pid
)
52 __field(const char *, caller
)
57 __entry
->refcount
= zrl
->zr_refcount
;
59 __entry
->owner_pid
= owner
? owner
->pid
: 0;
60 __entry
->caller
= zrl
->zr_caller
? zrl
->zr_caller
: "(null)";
65 TP_printk("zrl { refcount %d owner_pid %d caller %s } n %u",
66 __entry
->refcount
, __entry
->owner_pid
, __entry
->caller
,
69 TP_printk("zrl { refcount %d } n %u",
70 __entry
->refcount
, __entry
->n
)
75 #define DEFINE_ZRLOCK_EVENT(name) \
76 DEFINE_EVENT(zfs_zrlock_class, name, \
77 TP_PROTO(zrlock_t *zrl, kthread_t *owner, uint32_t n), \
78 TP_ARGS(zrl, owner, n))
79 DEFINE_ZRLOCK_EVENT(zfs_zrlock__reentry
);
81 #endif /* _TRACE_ZRLOCK_H */
83 #undef TRACE_INCLUDE_PATH
84 #undef TRACE_INCLUDE_FILE
85 #define TRACE_INCLUDE_PATH sys
86 #define TRACE_INCLUDE_FILE trace_zrlock
87 #include <trace/define_trace.h>
91 DEFINE_DTRACE_PROBE3(zrlock__reentry
);
93 #endif /* HAVE_DECLARE_EVENT_CLASS */