lkml.org 
[lkml]   [2010]   [Feb]   [16]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
From
SubjectRe: [patch 3/7 -mm] oom: select task from tasklist for mempolicy ooms
Date
> On Mon, 15 Feb 2010, KOSAKI Motohiro wrote:
>
> > > diff --git a/mm/mempolicy.c b/mm/mempolicy.c
> > > --- a/mm/mempolicy.c
> > > +++ b/mm/mempolicy.c
> > > @@ -1638,6 +1638,45 @@ bool init_nodemask_of_mempolicy(nodemask_t *mask)
> > > }
> > > #endif
> > >
> > > +/*
> > > + * mempolicy_nodemask_intersects
> > > + *
> > > + * If tsk's mempolicy is "default" [NULL], return 'true' to indicate default
> > > + * policy. Otherwise, check for intersection between mask and the policy
> > > + * nodemask for 'bind' or 'interleave' policy, or mask to contain the single
> > > + * node for 'preferred' or 'local' policy.
> > > + */
> > > +bool mempolicy_nodemask_intersects(struct task_struct *tsk,
> > > + const nodemask_t *mask)
> > > +{
> > > + struct mempolicy *mempolicy;
> > > + bool ret = true;
> > > +
> > > + mempolicy = tsk->mempolicy;
> > > + mpol_get(mempolicy);
> >
> > Why is this refcount increment necessary? mempolicy is grabbed by tsk,
> > IOW it never be freed in this function.
>
> We need to get a refcount on the mempolicy to ensure it doesn't get freed
> from under us, tsk is not necessarily current.

Hm.
if you explanation is correct, I think your patch have following race.


CPU0 CPU1
----------------------------------------------
mempolicy_nodemask_intersects()
mempolicy = tsk->mempolicy;
do_exit()
mpol_put(tsk_mempolicy)
mpol_get(mempolicy);




> > > + if (!mask || !mempolicy)
> > > + goto out;
> > > +
> > > + switch (mempolicy->mode) {
> > > + case MPOL_PREFERRED:
> > > + if (mempolicy->flags & MPOL_F_LOCAL)
> > > + ret = node_isset(numa_node_id(), *mask);
> >
> > Um? Is this good heuristic?
> > The task can migrate various cpus, then "node_isset(numa_node_id(), *mask) == 0"
> > doesn't mean the task doesn't consume *mask's memory.
> >
>
> For MPOL_F_LOCAL, we need to check whether the task's cpu is on a node
> that is allowed by the zonelist passed to the page allocator. In the
> second revision of this patchset, this was changed to
>
> node_isset(cpu_to_node(task_cpu(tsk)), *mask)
>
> to check. It would be possible for no memory to have been allocated on
> that node and it just happens that the tsk is running on it momentarily,
> but it's the best indication we have given the mempolicy of whether
> killing a task may lead to future memory freeing.

This calculation is still broken. In general, running cpu and allocation node
is not bound.
We can't know such task use which node memory because MPOL_PREFERRED doesn't
bind allocation node. it only provide allocation hint.

case MPOL_PREFERRED:
ret = true;
break;

is better. (probably we can make some bonus to oom_badness, but it's irrelevant thing).


>
> > > @@ -660,24 +683,18 @@ void out_of_memory(struct zonelist *zonelist, gfp_t gfp_mask,
> > > */
> > > constraint = constrained_alloc(zonelist, gfp_mask, nodemask);
> > > read_lock(&tasklist_lock);
> > > -
> > > - switch (constraint) {
> > > - case CONSTRAINT_MEMORY_POLICY:
> > > - oom_kill_process(current, gfp_mask, order, 0, NULL,
> > > - "No available memory (MPOL_BIND)");
> > > - break;
> > > -
> > > - case CONSTRAINT_NONE:
> > > - if (sysctl_panic_on_oom) {
> > > + if (unlikely(sysctl_panic_on_oom)) {
> > > + /*
> > > + * panic_on_oom only affects CONSTRAINT_NONE, the kernel
> > > + * should not panic for cpuset or mempolicy induced memory
> > > + * failures.
> > > + */
> > > + if (constraint == CONSTRAINT_NONE) {
> > > dump_header(NULL, gfp_mask, order, NULL);
> > > - panic("out of memory. panic_on_oom is selected\n");
> > > + panic("Out of memory: panic_on_oom is enabled\n");
> >
> > enabled? Its feature is enabled at boot time. triggered? or fired?
>
> The panic_on_oom sysctl is "enabled" if it is set to non-zero; that's the
> word used throughout Documentation/sysctl/vm.txt to describe when a sysctl
> is being used or not.

Probably, you changed message meanings. I think the original one doesn't
intend to describe enable or disable. but it isn't big matter. I can accept it.





\
 
 \ /
  Last update: 2010-02-16 06:17    [W:0.157 / U:0.136 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site