blob: 37cc332527131dd2ed60d505114d1a2cdb07a7c4 (
plain) (
blame)
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
|
#include <linux/types.h>
#include <litmus/feather_trace.h>
/* the feather trace management functions assume
* exclusive access to the event table
*/
#ifndef CONFIG_DEBUG_RODATA
#define BYTE_JUMP 0xeb
#define BYTE_JUMP_LEN 0x02
/* for each event, there is an entry in the event table */
struct trace_event {
long id;
long count;
long start_addr;
long end_addr;
};
extern struct trace_event __start___event_table[];
extern struct trace_event __stop___event_table[];
/* Workaround: if no events are defined, then the event_table section does not
* exist and the above references cause linker errors. This could probably be
* fixed by adjusting the linker script, but it is easier to maintain for us if
* we simply create a dummy symbol in the event table section.
*/
int __event_table_dummy[0] __attribute__ ((section("__event_table")));
int ft_enable_event(unsigned long id)
{
struct trace_event* te = __start___event_table;
int count = 0;
char* delta;
unsigned char* instr;
while (te < __stop___event_table) {
if (te->id == id && ++te->count == 1) {
instr = (unsigned char*) te->start_addr;
/* make sure we don't clobber something wrong */
if (*instr == BYTE_JUMP) {
delta = (((unsigned char*) te->start_addr) + 1);
*delta = 0;
}
}
if (te->id == id)
count++;
te++;
}
printk(KERN_DEBUG "ft_enable_event: enabled %d events\n", count);
return count;
}
int ft_disable_event(unsigned long id)
{
struct trace_event* te = __start___event_table;
int count = 0;
char* delta;
unsigned char* instr;
while (te < __stop___event_table) {
if (te->id == id && --te->count == 0) {
instr = (unsigned char*) te->start_addr;
if (*instr == BYTE_JUMP) {
delta = (((unsigned char*) te->start_addr) + 1);
*delta = te->end_addr - te->start_addr -
BYTE_JUMP_LEN;
}
}
if (te->id == id)
count++;
te++;
}
printk(KERN_DEBUG "ft_disable_event: disabled %d events\n", count);
return count;
}
int ft_disable_all_events(void)
{
struct trace_event* te = __start___event_table;
int count = 0;
char* delta;
unsigned char* instr;
while (te < __stop___event_table) {
if (te->count) {
instr = (unsigned char*) te->start_addr;
if (*instr == BYTE_JUMP) {
delta = (((unsigned char*) te->start_addr)
+ 1);
*delta = te->end_addr - te->start_addr -
BYTE_JUMP_LEN;
te->count = 0;
count++;
}
}
te++;
}
return count;
}
int ft_is_event_enabled(unsigned long id)
{
struct trace_event* te = __start___event_table;
while (te < __stop___event_table) {
if (te->id == id)
return te->count;
te++;
}
return 0;
}
#endif
|