|
@@ -2654,11 +2654,11 @@ pfm_get_task(pfm_context_t *ctx, pid_t pid, struct task_struct **task)
|
|
/* XXX: need to add more checks here */
|
|
/* XXX: need to add more checks here */
|
|
if (pid < 2) return -EPERM;
|
|
if (pid < 2) return -EPERM;
|
|
|
|
|
|
- if (pid != current->pid) {
|
|
|
|
|
|
+ if (pid != task_pid_vnr(current)) {
|
|
|
|
|
|
read_lock(&tasklist_lock);
|
|
read_lock(&tasklist_lock);
|
|
|
|
|
|
- p = find_task_by_pid(pid);
|
|
|
|
|
|
+ p = find_task_by_vpid(pid);
|
|
|
|
|
|
/* make sure task cannot go away while we operate on it */
|
|
/* make sure task cannot go away while we operate on it */
|
|
if (p) get_task_struct(p);
|
|
if (p) get_task_struct(p);
|