Out of memory killer - time conditions before killing a process
From: Mauricio Lin
Date:  Thu Dec 02 2004 - 10:57:21 EST
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.
-
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/