On 06/04, Oleg Nesterov wrote: > > (I'd suggest you to add a note into the changelog, to explain > that the new flag makes sense even without coredump problems). And. May I ask you to add another note into the changelog? > > @@ -410,6 +409,8 @@ static int __oom_kill_process(struct task_struct *p, struct mem_cgroup *mem, > > */ > > p->rt.time_slice = HZ; > > set_tsk_thread_flag(p, TIF_MEMDIE); > > + set_bit(MMF_OOM_KILLED, &p->mm->flags); I think the changelog should explain that, if we race with fork(), this flag can't leak into the child's new mm. mm_init() filters the bits outside of MMF_INIT_MASK. If we race with exec, it can't leak because mm_alloc() does memset(0). Oleg. -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@xxxxxxxxxx For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: <a href=mailto:"dont@xxxxxxxxx"> email@xxxxxxxxx </a>