|
@@ -199,11 +199,6 @@ static int proc_root_link(struct dentry *dentry, struct path *path)
|
|
return result;
|
|
return result;
|
|
}
|
|
}
|
|
|
|
|
|
-struct mm_struct *mm_for_maps(struct task_struct *task)
|
|
|
|
-{
|
|
|
|
- return mm_access(task, PTRACE_MODE_READ);
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
static int proc_pid_cmdline(struct task_struct *task, char * buffer)
|
|
static int proc_pid_cmdline(struct task_struct *task, char * buffer)
|
|
{
|
|
{
|
|
int res = 0;
|
|
int res = 0;
|
|
@@ -243,7 +238,7 @@ out:
|
|
|
|
|
|
static int proc_pid_auxv(struct task_struct *task, char *buffer)
|
|
static int proc_pid_auxv(struct task_struct *task, char *buffer)
|
|
{
|
|
{
|
|
- struct mm_struct *mm = mm_for_maps(task);
|
|
|
|
|
|
+ struct mm_struct *mm = mm_access(task, PTRACE_MODE_READ);
|
|
int res = PTR_ERR(mm);
|
|
int res = PTR_ERR(mm);
|
|
if (mm && !IS_ERR(mm)) {
|
|
if (mm && !IS_ERR(mm)) {
|
|
unsigned int nwords = 0;
|
|
unsigned int nwords = 0;
|