public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* Out of memory killer - time conditions before killing a process
@ 2004-12-02 15:52 Mauricio Lin
  0 siblings, 0 replies; only message in thread
From: Mauricio Lin @ 2004-12-02 15:52 UTC (permalink / raw)
  To: linux-kernel

Does anyone know why in the out_of_memory(int gfp_mask) function has
the following conditions:

	 * If it's been a long time since last failure,
	 * we're not oom.
	 */
	if (since > 5*HZ)
		goto reset;

	/*
	 * If we haven't tried for at least one second,
	 * we're not really oom.
	 */
	since = now - first;
	if (since < HZ)
		goto out_unlock;

	/*
	 * If we have gotten only a few failures,
	 * we're not really oom. 
	 */
	if (++count < 10)
		goto out_unlock;

These conditions prevent the oom_kill() function to be invoked. Could
anyone explain about it?
Why 5 seconds, count variable less than 10 ...?

BR,

Mauricio Lin.

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2004-12-02 15:53 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-12-02 15:52 Out of memory killer - time conditions before killing a process Mauricio Lin

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox