On Thu, Aug 15, 2013 at 10:45:09AM -0700, Dave Hansen wrote: > > I _believe_ this is because the block allocation is occurring during the > warmup, even in those numbers I posted previously. will-it-scale forks > things off early and the tests spend most of their time in those while > loops. Each "page fault handled" (the y-axis) is a trip through the > while loop, *not* a call to testcase(). Ah, OK. Sorry, I misinterpreted what was going on. So basically, what we have going on in the test is (a) we're bumping i_version and/or mtime, and (b) the munmap() implies an msync(), so writeback is happening in the background concurrently with the write page faults, and we may be (actually, almost certainly) seeing some interference between the writeback and the page_mkwrite operations. That implies that if you redid the test using a ramdisk, which will significantly speed up the writeback and overhead caused by the journal transactions for the metadata updates, the results might very well be different. Cheers, - Ted -- To unsubscribe from this list: send the line "unsubscribe linux-ext4" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html