]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blob - drivers/oprofile/oprofile_files.c
llseek: automatically add .llseek fop
[mirror_ubuntu-artful-kernel.git] / drivers / oprofile / oprofile_files.c
1 /**
2 * @file oprofile_files.c
3 *
4 * @remark Copyright 2002 OProfile authors
5 * @remark Read the file COPYING
6 *
7 * @author John Levon <levon@movementarian.org>
8 */
9
10 #include <linux/fs.h>
11 #include <linux/oprofile.h>
12 #include <linux/jiffies.h>
13
14 #include "event_buffer.h"
15 #include "oprofile_stats.h"
16 #include "oprof.h"
17
18 #define BUFFER_SIZE_DEFAULT 131072
19 #define CPU_BUFFER_SIZE_DEFAULT 8192
20 #define BUFFER_WATERSHED_DEFAULT 32768 /* FIXME: tune */
21 #define TIME_SLICE_DEFAULT 1
22
23 unsigned long oprofile_buffer_size;
24 unsigned long oprofile_cpu_buffer_size;
25 unsigned long oprofile_buffer_watershed;
26 unsigned long oprofile_time_slice;
27
28 #ifdef CONFIG_OPROFILE_EVENT_MULTIPLEX
29
30 static ssize_t timeout_read(struct file *file, char __user *buf,
31 size_t count, loff_t *offset)
32 {
33 return oprofilefs_ulong_to_user(jiffies_to_msecs(oprofile_time_slice),
34 buf, count, offset);
35 }
36
37
38 static ssize_t timeout_write(struct file *file, char const __user *buf,
39 size_t count, loff_t *offset)
40 {
41 unsigned long val;
42 int retval;
43
44 if (*offset)
45 return -EINVAL;
46
47 retval = oprofilefs_ulong_from_user(&val, buf, count);
48 if (retval)
49 return retval;
50
51 retval = oprofile_set_timeout(val);
52
53 if (retval)
54 return retval;
55 return count;
56 }
57
58
59 static const struct file_operations timeout_fops = {
60 .read = timeout_read,
61 .write = timeout_write,
62 .llseek = default_llseek,
63 };
64
65 #endif
66
67
68 static ssize_t depth_read(struct file *file, char __user *buf, size_t count, loff_t *offset)
69 {
70 return oprofilefs_ulong_to_user(oprofile_backtrace_depth, buf, count,
71 offset);
72 }
73
74
75 static ssize_t depth_write(struct file *file, char const __user *buf, size_t count, loff_t *offset)
76 {
77 unsigned long val;
78 int retval;
79
80 if (*offset)
81 return -EINVAL;
82
83 retval = oprofilefs_ulong_from_user(&val, buf, count);
84 if (retval)
85 return retval;
86
87 retval = oprofile_set_backtrace(val);
88
89 if (retval)
90 return retval;
91 return count;
92 }
93
94
95 static const struct file_operations depth_fops = {
96 .read = depth_read,
97 .write = depth_write,
98 .llseek = default_llseek,
99 };
100
101
102 static ssize_t pointer_size_read(struct file *file, char __user *buf, size_t count, loff_t *offset)
103 {
104 return oprofilefs_ulong_to_user(sizeof(void *), buf, count, offset);
105 }
106
107
108 static const struct file_operations pointer_size_fops = {
109 .read = pointer_size_read,
110 .llseek = default_llseek,
111 };
112
113
114 static ssize_t cpu_type_read(struct file *file, char __user *buf, size_t count, loff_t *offset)
115 {
116 return oprofilefs_str_to_user(oprofile_ops.cpu_type, buf, count, offset);
117 }
118
119
120 static const struct file_operations cpu_type_fops = {
121 .read = cpu_type_read,
122 .llseek = default_llseek,
123 };
124
125
126 static ssize_t enable_read(struct file *file, char __user *buf, size_t count, loff_t *offset)
127 {
128 return oprofilefs_ulong_to_user(oprofile_started, buf, count, offset);
129 }
130
131
132 static ssize_t enable_write(struct file *file, char const __user *buf, size_t count, loff_t *offset)
133 {
134 unsigned long val;
135 int retval;
136
137 if (*offset)
138 return -EINVAL;
139
140 retval = oprofilefs_ulong_from_user(&val, buf, count);
141 if (retval)
142 return retval;
143
144 if (val)
145 retval = oprofile_start();
146 else
147 oprofile_stop();
148
149 if (retval)
150 return retval;
151 return count;
152 }
153
154
155 static const struct file_operations enable_fops = {
156 .read = enable_read,
157 .write = enable_write,
158 .llseek = default_llseek,
159 };
160
161
162 static ssize_t dump_write(struct file *file, char const __user *buf, size_t count, loff_t *offset)
163 {
164 wake_up_buffer_waiter();
165 return count;
166 }
167
168
169 static const struct file_operations dump_fops = {
170 .write = dump_write,
171 .llseek = noop_llseek,
172 };
173
174 void oprofile_create_files(struct super_block *sb, struct dentry *root)
175 {
176 /* reinitialize default values */
177 oprofile_buffer_size = BUFFER_SIZE_DEFAULT;
178 oprofile_cpu_buffer_size = CPU_BUFFER_SIZE_DEFAULT;
179 oprofile_buffer_watershed = BUFFER_WATERSHED_DEFAULT;
180 oprofile_time_slice = msecs_to_jiffies(TIME_SLICE_DEFAULT);
181
182 oprofilefs_create_file(sb, root, "enable", &enable_fops);
183 oprofilefs_create_file_perm(sb, root, "dump", &dump_fops, 0666);
184 oprofilefs_create_file(sb, root, "buffer", &event_buffer_fops);
185 oprofilefs_create_ulong(sb, root, "buffer_size", &oprofile_buffer_size);
186 oprofilefs_create_ulong(sb, root, "buffer_watershed", &oprofile_buffer_watershed);
187 oprofilefs_create_ulong(sb, root, "cpu_buffer_size", &oprofile_cpu_buffer_size);
188 oprofilefs_create_file(sb, root, "cpu_type", &cpu_type_fops);
189 oprofilefs_create_file(sb, root, "backtrace_depth", &depth_fops);
190 oprofilefs_create_file(sb, root, "pointer_size", &pointer_size_fops);
191 #ifdef CONFIG_OPROFILE_EVENT_MULTIPLEX
192 oprofilefs_create_file(sb, root, "time_slice", &timeout_fops);
193 #endif
194 oprofile_create_stats_files(sb, root);
195 if (oprofile_ops.create_files)
196 oprofile_ops.create_files(sb, root);
197 }