perf db-export: Export comm details
In preparation for exporting the current comm for a thread, export comm thread id, start time and exec flag. Signed-off-by: Adrian Hunter <adrian.hunter@intel.com> Cc: Jiri Olsa <jolsa@redhat.com> Link: http://lkml.kernel.org/r/20190710085810.1650-9-adrian.hunter@intel.com Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
This commit is contained in:
parent
a5defb2f39
commit
8ebf5cc0f6
@ -95,7 +95,7 @@ int db_export__exec_comm(struct db_export *dbe, struct comm *comm,
|
|||||||
comm->db_id = ++dbe->comm_last_db_id;
|
comm->db_id = ++dbe->comm_last_db_id;
|
||||||
|
|
||||||
if (dbe->export_comm) {
|
if (dbe->export_comm) {
|
||||||
err = dbe->export_comm(dbe, comm);
|
err = dbe->export_comm(dbe, comm, main_thread);
|
||||||
if (err)
|
if (err)
|
||||||
return err;
|
return err;
|
||||||
}
|
}
|
||||||
|
@ -43,7 +43,8 @@ struct db_export {
|
|||||||
int (*export_machine)(struct db_export *dbe, struct machine *machine);
|
int (*export_machine)(struct db_export *dbe, struct machine *machine);
|
||||||
int (*export_thread)(struct db_export *dbe, struct thread *thread,
|
int (*export_thread)(struct db_export *dbe, struct thread *thread,
|
||||||
u64 main_thread_db_id, struct machine *machine);
|
u64 main_thread_db_id, struct machine *machine);
|
||||||
int (*export_comm)(struct db_export *dbe, struct comm *comm);
|
int (*export_comm)(struct db_export *dbe, struct comm *comm,
|
||||||
|
struct thread *thread);
|
||||||
int (*export_comm_thread)(struct db_export *dbe, u64 db_id,
|
int (*export_comm_thread)(struct db_export *dbe, u64 db_id,
|
||||||
struct comm *comm, struct thread *thread);
|
struct comm *comm, struct thread *thread);
|
||||||
int (*export_dso)(struct db_export *dbe, struct dso *dso,
|
int (*export_dso)(struct db_export *dbe, struct dso *dso,
|
||||||
|
@ -1011,15 +1011,19 @@ static int python_export_thread(struct db_export *dbe, struct thread *thread,
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int python_export_comm(struct db_export *dbe, struct comm *comm)
|
static int python_export_comm(struct db_export *dbe, struct comm *comm,
|
||||||
|
struct thread *thread)
|
||||||
{
|
{
|
||||||
struct tables *tables = container_of(dbe, struct tables, dbe);
|
struct tables *tables = container_of(dbe, struct tables, dbe);
|
||||||
PyObject *t;
|
PyObject *t;
|
||||||
|
|
||||||
t = tuple_new(2);
|
t = tuple_new(5);
|
||||||
|
|
||||||
tuple_set_u64(t, 0, comm->db_id);
|
tuple_set_u64(t, 0, comm->db_id);
|
||||||
tuple_set_string(t, 1, comm__str(comm));
|
tuple_set_string(t, 1, comm__str(comm));
|
||||||
|
tuple_set_u64(t, 2, thread->db_id);
|
||||||
|
tuple_set_u64(t, 3, comm->start);
|
||||||
|
tuple_set_s32(t, 4, comm->exec);
|
||||||
|
|
||||||
call_object(tables->comm_handler, t, "comm_table");
|
call_object(tables->comm_handler, t, "comm_table");
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user