X-Git-Url: http://git.liburcu.org/?a=blobdiff_plain;f=lttng-tracker-pid.c;h=02b15c42697b2123595883b1704320cc6275bf70;hb=5a32ce54ebf73b297a0bbccfe88c36994e15dcc4;hp=eeee9d55a5b844106178d5186c37ef61012aa2e3;hpb=f934e302d314d76563484f31caed56ad680eb17b;p=lttng-modules.git diff --git a/lttng-tracker-pid.c b/lttng-tracker-pid.c index eeee9d55..02b15c42 100644 --- a/lttng-tracker-pid.c +++ b/lttng-tracker-pid.c @@ -28,9 +28,10 @@ #include #include -#include "wrapper/tracepoint.h" -#include "wrapper/list.h" -#include "lttng-events.h" +#include +#include +#include +#include /* * Hash table is allocated and freed when there are no possible @@ -59,7 +60,7 @@ bool lttng_pid_tracker_lookup(struct lttng_pid_tracker *lpf, int pid) uint32_t hash = hash_32(pid, 32); head = &lpf->pid_hash[hash & (LTTNG_PID_TABLE_SIZE - 1)]; - lttng_hlist_for_each_entry_rcu_notrace(e, head, hlist) { + lttng_hlist_for_each_entry_rcu(e, head, hlist) { if (pid == e->pid) return 1; /* Found */ }