Commit 6d8982d9 authored by Matthew Wilcox's avatar Matthew Wilcox Committed by Matthew Wilcox

proc/base.c: Use task_is_*

Signed-off-by: default avatarMatthew Wilcox <willy@linux.intel.com>
parent 1587e2b1
......@@ -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)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment