aboutsummaryrefslogtreecommitdiff
path: root/include/trace/lockdep_event_types.h
blob: adccfcd2ec8fcb737abc24ce6686b75216c508f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44

#ifndef TRACE_FORMAT
# error Do not include this file directly.
# error Unless you know what you are doing.
#endif

#undef TRACE_SYSTEM
#define TRACE_SYSTEM lock

#ifdef CONFIG_LOCKDEP

TRACE_FORMAT(lock_acquire,
	TP_PROTO(struct lockdep_map *lock, unsigned int subclass,
		int trylock, int read, int check,
		struct lockdep_map *next_lock, unsigned long ip),
	TP_ARGS(lock, subclass, trylock, read, check, next_lock, ip),
	TP_FMT("%s%s%s", trylock ? "try " : "",
		read ? "read " : "", lock->name)
	);

TRACE_FORMAT(lock_release,
	TP_PROTO(struct lockdep_map *lock, int nested, unsigned long ip),
	TP_ARGS(lock, nested, ip),
	TP_FMT("%s", lock->name)
	);

#ifdef CONFIG_LOCK_STAT

TRACE_FORMAT(lock_contended,
	TP_PROTO(struct lockdep_map *lock, unsigned long ip),
	TP_ARGS(lock, ip),
	TP_FMT("%s", lock->name)
	);

TRACE_FORMAT(lock_acquired,
	TP_PROTO(struct lockdep_map *lock, unsigned long ip),
	TP_ARGS(lock, ip),
	TP_FMT("%s", lock->name)
	);

#endif
#endif

#undef TRACE_SYSTEM