return parent_ctx;
 }
 
-static u32 perf_event_pid(struct perf_event *event, struct task_struct *p)
+static u32 perf_event_pid_type(struct perf_event *event, struct task_struct *p,
+                               enum pid_type type)
 {
+       u32 nr;
        /*
         * only top level events have the pid namespace they were created in
         */
        if (event->parent)
                event = event->parent;
 
-       return task_tgid_nr_ns(p, event->ns);
+       nr = __task_pid_nr_ns(p, type, event->ns);
+       /* avoid -1 if it is idle thread or runs in another ns */
+       if (!nr && !pid_alive(p))
+               nr = -1;
+       return nr;
 }
 
-static u32 perf_event_tid(struct perf_event *event, struct task_struct *p)
+static u32 perf_event_pid(struct perf_event *event, struct task_struct *p)
 {
-       /*
-        * only top level events have the pid namespace they were created in
-        */
-       if (event->parent)
-               event = event->parent;
+       return perf_event_pid_type(event, p, __PIDTYPE_TGID);
+}
 
-       return task_pid_nr_ns(p, event->ns);
+static u32 perf_event_tid(struct perf_event *event, struct task_struct *p)
+{
+       return perf_event_pid_type(event, p, PIDTYPE_PID);
 }
 
 /*