X-Git-Url: http://git.liburcu.org/?a=blobdiff_plain;f=src%2Fcommon.c;fp=src%2Fcommon.c;h=15f9de0864fb8675859b4ad807fd50a826eb097a;hb=f26276d31993a1e35bbe3b1bacddb4a15d701d5c;hp=222595c60c4a2b51ab7d4162d1bfa8c068211da4;hpb=3f0a529809259e965b4a1db8f818cadfc3041831;p=lttngtop.git diff --git a/src/common.c b/src/common.c index 222595c..15f9de0 100644 --- a/src/common.c +++ b/src/common.c @@ -234,6 +234,12 @@ struct processtop* update_proc(struct processtop* proc, int pid, int tid, free(proc->comm); proc->comm = strdup(comm); } + if (hostname && !proc->hostname) { + proc->hostname = strdup(hostname); + if (lookup_hostname_list(hostname)) { + add_filter_tid_list(tid, proc); + } + } } return proc; } @@ -261,9 +267,11 @@ struct processtop* get_proc(struct lttngtop *ctx, int tid, char *comm, unsigned long timestamp, char *hostname) { struct processtop *tmp; + tmp = find_process_tid(ctx, tid, comm); - if (tmp && strcmp(tmp->comm, comm) == 0) + if (tmp && strcmp(tmp->comm, comm) == 0) { return tmp; + } return add_proc(ctx, tid, comm, timestamp, hostname); } @@ -565,7 +573,7 @@ enum bt_cb_ret handle_statedump_process_state(struct bt_ctf_event *call_data, struct processtop *proc; unsigned long timestamp; int64_t pid, tid, ppid, vtid, vpid, vppid; - char *procname; + char *procname, *hostname = NULL; timestamp = bt_ctf_get_timestamp(call_data); if (timestamp == -1ULL) @@ -618,12 +626,17 @@ enum bt_cb_ret handle_statedump_process_state(struct bt_ctf_event *call_data, fprintf(stderr, "Missing process name context info\n"); goto error; } + /* + hostname = bt_ctf_get_char_array(bt_ctf_get_field(call_data, + scope, "_hostname")); + if (bt_ctf_field_get_error()) { + } + */ proc = find_process_tid(<tngtop, tid, procname); - /* FIXME : hostname NULL */ if (proc == NULL) - proc = add_proc(<tngtop, tid, procname, timestamp, NULL); - update_proc(proc, pid, tid, ppid, vpid, vtid, vppid, procname, NULL); + proc = add_proc(<tngtop, tid, procname, timestamp, hostname); + update_proc(proc, pid, tid, ppid, vpid, vtid, vppid, procname, hostname); if (proc) { free(proc->comm);