On Thu, Nov 06, 2014 at 01:49:53PM +0100, Michal Hocko wrote: > On Wed 05-11-14 12:55:27, Tejun Heo wrote: > > On Wed, Nov 05, 2014 at 06:46:09PM +0100, Michal Hocko wrote: > > > Because out_of_memory can be called from mutliple paths. And > > > the only interesting one should be the page allocation path. > > > pagefault_out_of_memory is not interesting because it cannot happen for > > > the frozen task. > > > > Hmmm.... wouldn't that be broken by definition tho? So, if the oom > > killer is invoked from somewhere else than page allocation path, it > > would proceed ignoring the disabled setting and would race against PM > > freeze path all the same. > > Not really because try_to_freeze_tasks doesn't finish until _all_ tasks > are frozen and a task in the page fault path cannot be frozen, can it? We used to have freezing points deep in file system code which may be reacheable from page fault. Please take a step back and look at the paragraph above. Doesn't it sound extremely contrived and brittle even if it's not outright broken? What if somebody adds another oom killing site somewhere else? How can this possibly be a solution that we intentionally implement? > I mean there shouldn't be any problem to not invoke OOM killer under > from the page fault path as well but that might lead to looping in the > page fault path without any progress until freezer enables OOM killer on > the failure path because the said task cannot be frozen. > > Is this preferable? Why would PM freezing make OOM killing fail? That doesn't make much sense. Sure, it can block it for a finite duration for sync purposes but making OOM killing fail seems the wrong way around. We're doing one thing for non-PM freezing and the other way around for PM freezing, which indicates one of the two directions is wrong. Shouldn't it be that OOM killing happening while PM freezing is in progress cancels PM freezing rather than the other way around? Find a point in PM suspend/hibernation operation where everything must be stable, disable OOM killing there and check whether OOM killing happened inbetween and if so back out. It seems rather obvious to me that OOM killing has to have precedence over PM freezing. Sure, once the system reaches a point where the whole system must be in a stable state for snapshotting or whatever, disabling OOM killing is fine but at that point the system is in a very limited execution mode and sure won't be processing page faults from userland for example and we can actually disable OOM killing knowing that anything afterwards is ready to handle memory allocation failures. -- tejun -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@xxxxxxxxx. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: <a href=mailto:"dont@xxxxxxxxx"> email@xxxxxxxxx </a>