File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -428,6 +428,7 @@ struct evsel *evsel__clone(struct evsel *orig)
428
428
evsel -> auto_merge_stats = orig -> auto_merge_stats ;
429
429
evsel -> collect_stat = orig -> collect_stat ;
430
430
evsel -> weak_group = orig -> weak_group ;
431
+ evsel -> use_config_name = orig -> use_config_name ;
431
432
432
433
if (evsel__copy_config_terms (evsel , orig ) < 0 )
433
434
goto out_err ;
Original file line number Diff line number Diff line change @@ -83,8 +83,10 @@ struct evsel {
83
83
bool collect_stat ;
84
84
bool weak_group ;
85
85
bool bpf_counter ;
86
+ bool use_config_name ;
86
87
int bpf_fd ;
87
88
struct bpf_object * bpf_obj ;
89
+ struct list_head config_terms ;
88
90
};
89
91
90
92
/*
@@ -116,10 +118,8 @@ struct evsel {
116
118
bool merged_stat ;
117
119
bool reset_group ;
118
120
bool errored ;
119
- bool use_config_name ;
120
121
struct hashmap * per_pkg_mask ;
121
122
struct evsel * leader ;
122
- struct list_head config_terms ;
123
123
int err ;
124
124
int cpu_iter ;
125
125
struct {
You can’t perform that action at this time.
0 commit comments