ACPI: thinkpad-acpi: add development version tag
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / oprofile / oprofile_files.c
blob5d36ffc30dd5cc82e5e8806aea88c4863a2cf219
1 /**
2 * @file oprofile_files.c
4 * @remark Copyright 2002 OProfile authors
5 * @remark Read the file COPYING
7 * @author John Levon <levon@movementarian.org>
8 */
10 #include <linux/fs.h>
11 #include <linux/oprofile.h>
13 #include "event_buffer.h"
14 #include "oprofile_stats.h"
15 #include "oprof.h"
17 #define BUFFER_SIZE_DEFAULT 131072
18 #define CPU_BUFFER_SIZE_DEFAULT 8192
19 #define BUFFER_WATERSHED_DEFAULT 32768 /* FIXME: tune */
21 unsigned long oprofile_buffer_size;
22 unsigned long oprofile_cpu_buffer_size;
23 unsigned long oprofile_buffer_watershed;
25 static ssize_t depth_read(struct file *file, char __user *buf, size_t count, loff_t *offset)
27 return oprofilefs_ulong_to_user(oprofile_backtrace_depth, buf, count,
28 offset);
32 static ssize_t depth_write(struct file *file, char const __user *buf, size_t count, loff_t *offset)
34 unsigned long val;
35 int retval;
37 if (*offset)
38 return -EINVAL;
40 retval = oprofilefs_ulong_from_user(&val, buf, count);
41 if (retval)
42 return retval;
44 retval = oprofile_set_backtrace(val);
46 if (retval)
47 return retval;
48 return count;
52 static const struct file_operations depth_fops = {
53 .read = depth_read,
54 .write = depth_write
58 static ssize_t pointer_size_read(struct file *file, char __user *buf, size_t count, loff_t *offset)
60 return oprofilefs_ulong_to_user(sizeof(void *), buf, count, offset);
64 static const struct file_operations pointer_size_fops = {
65 .read = pointer_size_read,
69 static ssize_t cpu_type_read(struct file *file, char __user *buf, size_t count, loff_t *offset)
71 return oprofilefs_str_to_user(oprofile_ops.cpu_type, buf, count, offset);
75 static const struct file_operations cpu_type_fops = {
76 .read = cpu_type_read,
80 static ssize_t enable_read(struct file *file, char __user *buf, size_t count, loff_t *offset)
82 return oprofilefs_ulong_to_user(oprofile_started, buf, count, offset);
86 static ssize_t enable_write(struct file *file, char const __user *buf, size_t count, loff_t *offset)
88 unsigned long val;
89 int retval;
91 if (*offset)
92 return -EINVAL;
94 retval = oprofilefs_ulong_from_user(&val, buf, count);
95 if (retval)
96 return retval;
98 if (val)
99 retval = oprofile_start();
100 else
101 oprofile_stop();
103 if (retval)
104 return retval;
105 return count;
109 static const struct file_operations enable_fops = {
110 .read = enable_read,
111 .write = enable_write,
115 static ssize_t dump_write(struct file *file, char const __user *buf, size_t count, loff_t *offset)
117 wake_up_buffer_waiter();
118 return count;
122 static const struct file_operations dump_fops = {
123 .write = dump_write,
126 void oprofile_create_files(struct super_block *sb, struct dentry *root)
128 /* reinitialize default values */
129 oprofile_buffer_size = BUFFER_SIZE_DEFAULT;
130 oprofile_cpu_buffer_size = CPU_BUFFER_SIZE_DEFAULT;
131 oprofile_buffer_watershed = BUFFER_WATERSHED_DEFAULT;
133 oprofilefs_create_file(sb, root, "enable", &enable_fops);
134 oprofilefs_create_file_perm(sb, root, "dump", &dump_fops, 0666);
135 oprofilefs_create_file(sb, root, "buffer", &event_buffer_fops);
136 oprofilefs_create_ulong(sb, root, "buffer_size", &oprofile_buffer_size);
137 oprofilefs_create_ulong(sb, root, "buffer_watershed", &oprofile_buffer_watershed);
138 oprofilefs_create_ulong(sb, root, "cpu_buffer_size", &oprofile_cpu_buffer_size);
139 oprofilefs_create_file(sb, root, "cpu_type", &cpu_type_fops);
140 oprofilefs_create_file(sb, root, "backtrace_depth", &depth_fops);
141 oprofilefs_create_file(sb, root, "pointer_size", &pointer_size_fops);
142 oprofile_create_stats_files(sb, root);
143 if (oprofile_ops.create_files)
144 oprofile_ops.create_files(sb, root);