On Thu, Mar 04, 2010 at 11:40:15AM +0100, Andrea Righi wrote: [..] > diff --git a/mm/page-writeback.c b/mm/page-writeback.c > index 5a0f8f3..c5d14ea 100644 > --- a/mm/page-writeback.c > +++ b/mm/page-writeback.c > @@ -137,13 +137,16 @@ static struct prop_descriptor vm_dirties; > */ > static int calc_period_shift(void) > { > + struct dirty_param dirty_param; > unsigned long dirty_total; > > - if (vm_dirty_bytes) > - dirty_total = vm_dirty_bytes / PAGE_SIZE; > + get_dirty_param(&dirty_param); > + > + if (dirty_param.dirty_bytes) > + dirty_total = dirty_param.dirty_bytes / PAGE_SIZE; > else > - dirty_total = (vm_dirty_ratio * determine_dirtyable_memory()) / > - 100; > + dirty_total = (dirty_param.dirty_ratio * > + determine_dirtyable_memory()) / 100; > return 2 + ilog2(dirty_total - 1); > } > Hmm.., I have been staring at this for some time and I think something is wrong. I don't fully understand the way floating proportions are working but this function seems to be calculating the period over which we need to measuer the proportions. (vm_completion proportion and vm_dirties proportions). And we this period (shift), when admin updates dirty_ratio or dirty_bytes etc. In that case we recalculate the global dirty limit and take log2 and use that as period over which we monitor and calculate proportions. If yes, then it should be global and not per cgroup (because all our accouting of bdi completion is global and not per cgroup). PeterZ, can tell us more about it. I am just raising the flag here to be sure. Thanks Vivek -- 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>