diff options
author | Matthew Wilcox <matthew@wil.cx> | 2007-12-06 11:04:01 -0500 |
---|---|---|
committer | Matthew Wilcox <willy@linux.intel.com> | 2007-12-06 17:20:35 -0500 |
commit | 6d8982d9b8f4b771754335f1398e406cc72003c3 (patch) | |
tree | 02209faf6ae4c1a8e6aa5f069aaa0968a4c6dd6a | |
parent | 1587e2b1880632d959db6ac9e79cb1d99a73c656 (diff) | |
download | op-kernel-dev-6d8982d9b8f4b771754335f1398e406cc72003c3.zip op-kernel-dev-6d8982d9b8f4b771754335f1398e406cc72003c3.tar.gz |
proc/base.c: Use task_is_*
Signed-off-by: Matthew Wilcox <willy@linux.intel.com>
-rw-r--r-- | fs/proc/base.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/proc/base.c b/fs/proc/base.c index 02a63ac..e88ee1a 100644 --- a/fs/proc/base.c +++ b/fs/proc/base.c @@ -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) |