Re: [PATCH] Fix uninitialized variable use inmm/memcontrol.c::mem_cgroup_move_parent()

From: KAMEZAWA Hiroyuki
Date: Sun Jan 23 2011 - 19:15:12 EST


On Sat, 22 Jan 2011 20:51:32 +0100 (CET)
Jesper Juhl <jj@xxxxxxxxxxxxx> wrote:

> In mm/memcontrol.c::mem_cgroup_move_parent() there's a path that jumps to
> the 'put_back' label
> ret = __mem_cgroup_try_charge(NULL, gfp_mask, &parent, false, charge);
> if (ret || !parent)
> goto put_back;
> where we'll
> if (charge > PAGE_SIZE)
> compound_unlock_irqrestore(page, flags);
> but, we have not assigned anything to 'flags' at this point, nor have we
> called 'compound_lock_irqsave()' (which is what sets 'flags').
> So, I believe the 'put_back' label should be moved below the call to
> compound_unlock_irqrestore() as per this patch.
>
> Signed-off-by: Jesper Juhl <jj@xxxxxxxxxxxxx>

Thank you.

Acked-by: KAMEZAWA Hiroyuki <kamezawa.hiroyu@xxxxxxxxxxxxxx>

Andrew, I'll move my new patces onto this. So, please pick this one 1st.

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/