tracing/stat: do some cleanups
- remove duplicate code in stat_seq_init() - update comments to reflect the change from stat list to stat rbtree [ Impact: clean up ] Signed-off-by: Li Zefan <lizf@cn.fujitsu.com> Signed-off-by: Frederic Weisbecker <fweisbec@gmail.com>
This commit is contained in:
Родитель
e162280690
Коммит
dbd3fbdfee
|
@ -93,10 +93,15 @@ static void destroy_session(struct stat_session *session)
|
||||||
|
|
||||||
typedef int (*cmp_stat_t)(void *, void *);
|
typedef int (*cmp_stat_t)(void *, void *);
|
||||||
|
|
||||||
static void
|
static int insert_stat(struct rb_root *root, void *stat, cmp_stat_t cmp)
|
||||||
insert_stat(struct rb_root *root, struct stat_node *data, cmp_stat_t cmp)
|
|
||||||
{
|
{
|
||||||
struct rb_node **new = &(root->rb_node), *parent = NULL;
|
struct rb_node **new = &(root->rb_node), *parent = NULL;
|
||||||
|
struct stat_node *data;
|
||||||
|
|
||||||
|
data = kzalloc(sizeof(*data), GFP_KERNEL);
|
||||||
|
if (!data)
|
||||||
|
return -ENOMEM;
|
||||||
|
data->stat = stat;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Figure out where to put new node
|
* Figure out where to put new node
|
||||||
|
@ -118,12 +123,13 @@ insert_stat(struct rb_root *root, struct stat_node *data, cmp_stat_t cmp)
|
||||||
|
|
||||||
rb_link_node(&data->node, parent, new);
|
rb_link_node(&data->node, parent, new);
|
||||||
rb_insert_color(&data->node, root);
|
rb_insert_color(&data->node, root);
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* For tracers that don't provide a stat_cmp callback.
|
* For tracers that don't provide a stat_cmp callback.
|
||||||
* This one will force an immediate insertion on tail of
|
* This one will force an insertion as right-most node
|
||||||
* the list.
|
* in the rbtree.
|
||||||
*/
|
*/
|
||||||
static int dummy_cmp(void *p1, void *p2)
|
static int dummy_cmp(void *p1, void *p2)
|
||||||
{
|
{
|
||||||
|
@ -131,15 +137,14 @@ static int dummy_cmp(void *p1, void *p2)
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Initialize the stat list at each trace_stat file opening.
|
* Initialize the stat rbtree at each trace_stat file opening.
|
||||||
* All of these copies and sorting are required on all opening
|
* All of these copies and sorting are required on all opening
|
||||||
* since the stats could have changed between two file sessions.
|
* since the stats could have changed between two file sessions.
|
||||||
*/
|
*/
|
||||||
static int stat_seq_init(struct stat_session *session)
|
static int stat_seq_init(struct stat_session *session)
|
||||||
{
|
{
|
||||||
struct tracer_stat *ts = session->ts;
|
struct tracer_stat *ts = session->ts;
|
||||||
struct stat_node *new_entry;
|
struct rb_root *root = &session->stat_root;
|
||||||
struct rb_root *root;
|
|
||||||
void *stat;
|
void *stat;
|
||||||
int ret = 0;
|
int ret = 0;
|
||||||
int i;
|
int i;
|
||||||
|
@ -154,23 +159,12 @@ static int stat_seq_init(struct stat_session *session)
|
||||||
if (!stat)
|
if (!stat)
|
||||||
goto exit;
|
goto exit;
|
||||||
|
|
||||||
/*
|
ret = insert_stat(root, stat, ts->stat_cmp);
|
||||||
* The first entry. Actually this is the second, but the first
|
if (ret)
|
||||||
* one (the stat_list head) is pointless.
|
|
||||||
*/
|
|
||||||
new_entry = kzalloc(sizeof(*new_entry), GFP_KERNEL);
|
|
||||||
if (!new_entry) {
|
|
||||||
ret = -ENOMEM;
|
|
||||||
goto exit;
|
goto exit;
|
||||||
}
|
|
||||||
root = &session->stat_root;
|
|
||||||
insert_stat(root, new_entry, dummy_cmp);
|
|
||||||
|
|
||||||
new_entry->stat = stat;
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Iterate over the tracer stat entries and store them in a sorted
|
* Iterate over the tracer stat entries and store them in an rbtree.
|
||||||
* list.
|
|
||||||
*/
|
*/
|
||||||
for (i = 1; ; i++) {
|
for (i = 1; ; i++) {
|
||||||
stat = ts->stat_next(stat, i);
|
stat = ts->stat_next(stat, i);
|
||||||
|
@ -179,22 +173,16 @@ static int stat_seq_init(struct stat_session *session)
|
||||||
if (!stat)
|
if (!stat)
|
||||||
break;
|
break;
|
||||||
|
|
||||||
new_entry = kzalloc(sizeof(*new_entry), GFP_KERNEL);
|
ret = insert_stat(root, stat, ts->stat_cmp);
|
||||||
if (!new_entry) {
|
if (ret)
|
||||||
ret = -ENOMEM;
|
goto exit_free_rbtree;
|
||||||
goto exit_free_list;
|
|
||||||
}
|
|
||||||
|
|
||||||
new_entry->stat = stat;
|
|
||||||
|
|
||||||
insert_stat(root, new_entry, ts->stat_cmp);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
exit:
|
exit:
|
||||||
mutex_unlock(&session->stat_mutex);
|
mutex_unlock(&session->stat_mutex);
|
||||||
return ret;
|
return ret;
|
||||||
|
|
||||||
exit_free_list:
|
exit_free_rbtree:
|
||||||
reset_stat_session(session);
|
reset_stat_session(session);
|
||||||
mutex_unlock(&session->stat_mutex);
|
mutex_unlock(&session->stat_mutex);
|
||||||
return ret;
|
return ret;
|
||||||
|
@ -207,7 +195,7 @@ static void *stat_seq_start(struct seq_file *s, loff_t *pos)
|
||||||
struct rb_node *node;
|
struct rb_node *node;
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
/* Prevent from tracer switch or stat_list modification */
|
/* Prevent from tracer switch or rbtree modification */
|
||||||
mutex_lock(&session->stat_mutex);
|
mutex_lock(&session->stat_mutex);
|
||||||
|
|
||||||
/* If we are in the beginning of the file, print the headers */
|
/* If we are in the beginning of the file, print the headers */
|
||||||
|
@ -280,7 +268,7 @@ static int tracing_stat_open(struct inode *inode, struct file *file)
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Avoid consuming memory with our now useless list.
|
* Avoid consuming memory with our now useless rbtree.
|
||||||
*/
|
*/
|
||||||
static int tracing_stat_release(struct inode *i, struct file *f)
|
static int tracing_stat_release(struct inode *i, struct file *f)
|
||||||
{
|
{
|
||||||
|
|
Загрузка…
Ссылка в новой задаче