Re: [PATCH] 3/4: writeout watermarks
From: Andrew Morton <hidden>
Date: 2004-08-06 05:49:20
Nick Piggin [off-list ref] wrote:
No, it is not that code I am worried about, you're actually doing
this too (disregarding the admin's wishes):
dirty_ratio = vm_dirty_ratio;
if (dirty_ratio > unmapped_ratio / 2)
dirty_ratio = unmapped_ratio / 2;
if (dirty_ratio < 5)
dirty_ratio = 5;hm, OK, that's some "try to avoid writeback off the LRU" stuff. But you said "This ensures we should always attempt to start background writeout before synchronous writeout.". Does not the current code do that?
So if the admin wants a dirty_ratio of 40 and dirty_background_ratio of 10 then that's good, but I'm sure if they knew you're moving dirty_ratio to 10 here, they'd want something like 2 for the dirty_background_ratio. I contend that the ratio between these two values is more important than their absolue values -- especially considering one gets twiddled here.
Maybe true, maybe false. These things are demonstrable via testing, no? -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@kvack.org. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: <a href=mailto:"aart@kvack.org"> aart@kvack.org </a>