* [PATCH mm] fix i386 get_gate_vma oops
@ 2007-04-13 16:19 Hugh Dickins
2007-04-13 17:21 ` Jeremy Fitzhardinge
0 siblings, 1 reply; 2+ messages in thread
From: Hugh Dickins @ 2007-04-13 16:19 UTC (permalink / raw)
To: Andrew Morton; +Cc: Jeremy Fitzhardinge, linux-kernel
Fix oops from i386-make-compat_vdso-runtime-selectable.patch.
Even mingetty at system startup finds it easy to trigger an oops
while reading /proc/PID/maps: though it has a good hold on the mm
itself, that cannot stop exit_mm() from resetting tsk->mm to NULL.
(It is usually show_map()'s call to get_gate_vma() which oopses,
and I expect we could change that to check priv->tail_vma instead;
but no matter, even m_start()'s call just after get_task_mm() is racy.)
Signed-off-by: Hugh Dickins <hugh@veritas.com>
--- 2.6.21-rc6-mm1/arch/i386/kernel/sysenter.c 2007-04-10 11:37:23.000000000 +0100
+++ linux/arch/i386/kernel/sysenter.c 2007-04-13 16:43:45.000000000 +0100
@@ -326,8 +326,10 @@ const char *arch_vma_name(struct vm_area
struct vm_area_struct *get_gate_vma(struct task_struct *tsk)
{
+ struct mm_struct *mm = tsk->mm;
+
/* Check to see if this task was created in compat vdso mode */
- if (tsk->mm->context.vdso == (void *)VDSO_HIGH_BASE)
+ if (mm && mm->context.vdso == (void *)VDSO_HIGH_BASE)
return &gate_vma;
return NULL;
}
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH mm] fix i386 get_gate_vma oops
2007-04-13 16:19 [PATCH mm] fix i386 get_gate_vma oops Hugh Dickins
@ 2007-04-13 17:21 ` Jeremy Fitzhardinge
0 siblings, 0 replies; 2+ messages in thread
From: Jeremy Fitzhardinge @ 2007-04-13 17:21 UTC (permalink / raw)
To: Hugh Dickins; +Cc: Andrew Morton, linux-kernel
Hugh Dickins wrote:
> Fix oops from i386-make-compat_vdso-runtime-selectable.patch.
>
> Even mingetty at system startup finds it easy to trigger an oops
> while reading /proc/PID/maps: though it has a good hold on the mm
> itself, that cannot stop exit_mm() from resetting tsk->mm to NULL.
>
> (It is usually show_map()'s call to get_gate_vma() which oopses,
> and I expect we could change that to check priv->tail_vma instead;
> but no matter, even m_start()'s call just after get_task_mm() is racy.)
>
> Signed-off-by: Hugh Dickins <hugh@veritas.com>
>
Hm, OK.
Acked-by: Jeremy Fitzhardinge <jeremy@xensource.com>
J
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2007-04-13 17:21 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-04-13 16:19 [PATCH mm] fix i386 get_gate_vma oops Hugh Dickins
2007-04-13 17:21 ` Jeremy Fitzhardinge
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox