|
@@ -4201,10 +4201,9 @@ tracing_set_trace_write(struct file *filp, const char __user *ubuf,
|
|
|
}
|
|
|
|
|
|
static ssize_t
|
|
|
-tracing_max_lat_read(struct file *filp, char __user *ubuf,
|
|
|
- size_t cnt, loff_t *ppos)
|
|
|
+tracing_nsecs_read(unsigned long *ptr, char __user *ubuf,
|
|
|
+ size_t cnt, loff_t *ppos)
|
|
|
{
|
|
|
- unsigned long *ptr = filp->private_data;
|
|
|
char buf[64];
|
|
|
int r;
|
|
|
|
|
@@ -4216,10 +4215,9 @@ tracing_max_lat_read(struct file *filp, char __user *ubuf,
|
|
|
}
|
|
|
|
|
|
static ssize_t
|
|
|
-tracing_max_lat_write(struct file *filp, const char __user *ubuf,
|
|
|
- size_t cnt, loff_t *ppos)
|
|
|
+tracing_nsecs_write(unsigned long *ptr, const char __user *ubuf,
|
|
|
+ size_t cnt, loff_t *ppos)
|
|
|
{
|
|
|
- unsigned long *ptr = filp->private_data;
|
|
|
unsigned long val;
|
|
|
int ret;
|
|
|
|
|
@@ -4232,6 +4230,52 @@ tracing_max_lat_write(struct file *filp, const char __user *ubuf,
|
|
|
return cnt;
|
|
|
}
|
|
|
|
|
|
+static ssize_t
|
|
|
+tracing_thresh_read(struct file *filp, char __user *ubuf,
|
|
|
+ size_t cnt, loff_t *ppos)
|
|
|
+{
|
|
|
+ return tracing_nsecs_read(&tracing_thresh, ubuf, cnt, ppos);
|
|
|
+}
|
|
|
+
|
|
|
+static ssize_t
|
|
|
+tracing_thresh_write(struct file *filp, const char __user *ubuf,
|
|
|
+ size_t cnt, loff_t *ppos)
|
|
|
+{
|
|
|
+ struct trace_array *tr = filp->private_data;
|
|
|
+ int ret;
|
|
|
+
|
|
|
+ mutex_lock(&trace_types_lock);
|
|
|
+ ret = tracing_nsecs_write(&tracing_thresh, ubuf, cnt, ppos);
|
|
|
+ if (ret < 0)
|
|
|
+ goto out;
|
|
|
+
|
|
|
+ if (tr->current_trace->update_thresh) {
|
|
|
+ ret = tr->current_trace->update_thresh(tr);
|
|
|
+ if (ret < 0)
|
|
|
+ goto out;
|
|
|
+ }
|
|
|
+
|
|
|
+ ret = cnt;
|
|
|
+out:
|
|
|
+ mutex_unlock(&trace_types_lock);
|
|
|
+
|
|
|
+ return ret;
|
|
|
+}
|
|
|
+
|
|
|
+static ssize_t
|
|
|
+tracing_max_lat_read(struct file *filp, char __user *ubuf,
|
|
|
+ size_t cnt, loff_t *ppos)
|
|
|
+{
|
|
|
+ return tracing_nsecs_read(filp->private_data, ubuf, cnt, ppos);
|
|
|
+}
|
|
|
+
|
|
|
+static ssize_t
|
|
|
+tracing_max_lat_write(struct file *filp, const char __user *ubuf,
|
|
|
+ size_t cnt, loff_t *ppos)
|
|
|
+{
|
|
|
+ return tracing_nsecs_write(filp->private_data, ubuf, cnt, ppos);
|
|
|
+}
|
|
|
+
|
|
|
static int tracing_open_pipe(struct inode *inode, struct file *filp)
|
|
|
{
|
|
|
struct trace_array *tr = inode->i_private;
|
|
@@ -5133,6 +5177,13 @@ static int snapshot_raw_open(struct inode *inode, struct file *filp)
|
|
|
#endif /* CONFIG_TRACER_SNAPSHOT */
|
|
|
|
|
|
|
|
|
+static const struct file_operations tracing_thresh_fops = {
|
|
|
+ .open = tracing_open_generic,
|
|
|
+ .read = tracing_thresh_read,
|
|
|
+ .write = tracing_thresh_write,
|
|
|
+ .llseek = generic_file_llseek,
|
|
|
+};
|
|
|
+
|
|
|
static const struct file_operations tracing_max_lat_fops = {
|
|
|
.open = tracing_open_generic,
|
|
|
.read = tracing_max_lat_read,
|
|
@@ -6494,7 +6545,7 @@ static __init int tracer_init_debugfs(void)
|
|
|
init_tracer_debugfs(&global_trace, d_tracer);
|
|
|
|
|
|
trace_create_file("tracing_thresh", 0644, d_tracer,
|
|
|
- &tracing_thresh, &tracing_max_lat_fops);
|
|
|
+ &global_trace, &tracing_thresh_fops);
|
|
|
|
|
|
trace_create_file("README", 0444, d_tracer,
|
|
|
NULL, &tracing_readme_fops);
|