proc/base.c: Use task_is_*
authorMatthew Wilcox <matthew@wil.cx>
Thu, 6 Dec 2007 16:04:01 +0000 (11:04 -0500)
committerMatthew Wilcox <willy@linux.intel.com>
Thu, 6 Dec 2007 22:20:35 +0000 (17:20 -0500)
Signed-off-by: Matthew Wilcox <willy@linux.intel.com>
fs/proc/base.c

index 02a63ac..e88ee1a 100644 (file)
@@ -199,7 +199,7 @@ static int proc_root_link(struct inode *inode, struct dentry **dentry, struct vf
        (task == current || \
        (task->parent == current && \
        (task->ptrace & PT_PTRACED) && \
-        (task->state == TASK_STOPPED || task->state == TASK_TRACED) && \
+        (task_is_stopped_or_traced(task)) && \
         security_ptrace(current,task) == 0))
 
 static int proc_pid_cmdline(struct task_struct *task, char * buffer)