lkml.org 
[lkml]   [2008]   [Jul]   [16]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
Date
From
Subject[PATCH 1/2] coredump: binfmt_elf_fdpic: don't use sub-thread's ->mm
Change binfmt_elf_fdpic.c:fill_prstatus() to use current->mm instead of p->mm.
They are equal, but with the next patch p->mm == NULL.

Signed-off-by: Oleg Nesterov <oleg@tv-sign.ru>

binfmt_elf_fdpic.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)

--- 26-rc2/fs/binfmt_elf_fdpic.c~6_DONT_USE_MM 2008-07-13 21:18:31.000000000 +0400
+++ 26-rc2/fs/binfmt_elf_fdpic.c 2008-07-15 21:48:48.000000000 +0400
@@ -1374,8 +1374,8 @@ static void fill_prstatus(struct elf_prs
cputime_to_timeval(p->signal->cutime, &prstatus->pr_cutime);
cputime_to_timeval(p->signal->cstime, &prstatus->pr_cstime);

- prstatus->pr_exec_fdpic_loadmap = p->mm->context.exec_fdpic_loadmap;
- prstatus->pr_interp_fdpic_loadmap = p->mm->context.interp_fdpic_loadmap;
+ prstatus->pr_exec_fdpic_loadmap = current->mm->context.exec_fdpic_loadmap;
+ prstatus->pr_interp_fdpic_loadmap = current->mm->context.interp_fdpic_loadmap;
}

static int fill_psinfo(struct elf_prpsinfo *psinfo, struct task_struct *p,


\
 
 \ /
  Last update: 2008-07-16 15:53    [W:0.018 / U:0.408 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site