|
@@ -1062,6 +1062,9 @@ static int subsystem_open(struct inode *inode, struct file *filp)
|
|
|
struct trace_array *tr;
|
|
|
int ret;
|
|
|
|
|
|
+ if (tracing_is_disabled())
|
|
|
+ return -ENODEV;
|
|
|
+
|
|
|
/* Make sure the system still exists */
|
|
|
mutex_lock(&trace_types_lock);
|
|
|
mutex_lock(&event_mutex);
|
|
@@ -1108,6 +1111,9 @@ static int system_tr_open(struct inode *inode, struct file *filp)
|
|
|
struct trace_array *tr = inode->i_private;
|
|
|
int ret;
|
|
|
|
|
|
+ if (tracing_is_disabled())
|
|
|
+ return -ENODEV;
|
|
|
+
|
|
|
if (trace_array_get(tr) < 0)
|
|
|
return -ENODEV;
|
|
|
|
|
@@ -1124,11 +1130,12 @@ static int system_tr_open(struct inode *inode, struct file *filp)
|
|
|
if (ret < 0) {
|
|
|
trace_array_put(tr);
|
|
|
kfree(dir);
|
|
|
+ return ret;
|
|
|
}
|
|
|
|
|
|
filp->private_data = dir;
|
|
|
|
|
|
- return ret;
|
|
|
+ return 0;
|
|
|
}
|
|
|
|
|
|
static int subsystem_release(struct inode *inode, struct file *file)
|