--- linux-2.6.22.2-vs2.3.0.17.4/kernel/vserver/context.c 2007-08-15 21:57:56 +0200 +++ linux-2.6.22.2-vs2.3.0.17.5/kernel/vserver/context.c 2007-08-16 03:33:52 +0200 @@ -715,9 +715,6 @@ int vc_task_xid(uint32_t id) if (id) { struct task_struct *tsk; - if (!vx_check(0, VS_ADMIN | VS_WATCH)) - return -EPERM; - read_lock(&tasklist_lock); tsk = find_task_by_real_pid(id); xid = (tsk) ? tsk->xid : -ESRCH; --- linux-2.6.22.2-vs2.3.0.17.4/kernel/vserver/network.c 2007-08-15 23:20:58 +0200 +++ linux-2.6.22.2-vs2.3.0.17.5/kernel/vserver/network.c 2007-08-16 03:34:12 +0200 @@ -516,9 +516,6 @@ int vc_task_nid(uint32_t id) if (id) { struct task_struct *tsk; - if (!nx_check(0, VS_ADMIN | VS_WATCH)) - return -EPERM; - read_lock(&tasklist_lock); tsk = find_task_by_real_pid(id); nid = (tsk) ? tsk->nid : -ESRCH;